diff --git a/app/Views/invoice_pdf_template.php b/app/Views/invoice_pdf_template.php index 9c741e9f..6ea28bbc 100755 --- a/app/Views/invoice_pdf_template.php +++ b/app/Views/invoice_pdf_template.php @@ -315,8 +315,8 @@
| Subtotal | -= '₹' . number_format($value->subtotal, 2, '.', ',') ?> | +Subtotal | += '₹' . number_format($value->subtotal, 2, '.', ',') ?> |
| Discount= $dis_percent; ?> | -= $dis_value ? "₹-" . number_format($dis_value, 2, '.', ',') : "₹" . number_format(0, 2, '.', ',') ?> | +Discount= $dis_percent; ?> | += $dis_value ? "₹-" . number_format($dis_value, 2, '.', ',') : "₹" . number_format(0, 2, '.', ',') ?> |
| = ucwords($value->shipping_label) ?> | -= "₹" . number_format($value->shipping_charge, 2, '.', ',') ?> | += ucwords($value->shipping_label) ?> | += "₹" . number_format($value->shipping_charge, 2, '.', ',') ?> |
| Rounding | -= $sign . number_format($difference, 2, '.', ',') ?> | +Rounding | += $sign . number_format($difference, 2, '.', ',') ?> |
| Total | -= "₹" . number_format($value->total_amount, 2, '.', ',') ?> | +Total | += "₹" . number_format($value->total_amount, 2, '.', ',') ?> |
| Balance | -Balance | +||
| Paid | -= "₹" . number_format($value->total_amount, 2, '.', ',') ?> | +Paid | += "₹" . number_format($value->total_amount, 2, '.', ',') ?> |