Subtotal |
{{ totalAmount | formatDecimal:2 }} |
Discount {{ discountType == 'percentage' ? '('+discountAmount+'%)' : '' }}
|
{{ discountType == 'percentage' ? (_percentage(totalAmount, discountAmount) | formatDecimal:2) : (discountAmount | formatDecimal:2) }} |
Order Tax |
{{ taxAmount | formatDecimal:2 }} |
Shipping Charge {{ shippingType == 'percentage' ? '('+shippingAmount+'%)' : '' }}
|
{{ shippingType == 'percentage' ? (_percentage(totalAmount, shippingAmount) | formatDecimal:2) : (shippingAmount | formatDecimal:2) }} |
Other Charge |
{{ othersCharge | formatDecimal:2 }} |
Interest Amount |
{{ installmentInterestAmount | formatDecimal:2 }} |
Previous Due |
{{ dueAmount | formatDecimal:2 }} |
Payable Amount ({{ totalItem }} items)
|
{{ totalPayable | formatDecimal:2 }} |
Paid Amount |
{{ paidAmount | formatDecimal:2 }} |
Due Amount |
{{ totalPayable < paidAmount ? totalPayable : totalPayable - paidAmount | formatDecimal:2 }} |
Balance |
{{ totalPayable < paidAmount ? paidAmount - totalPayable : 0 | formatDecimal:2 }} |
|
Notes: {{ invoiceNote }}
|