Subtotal |
{{ totalAmount | formatDecimal:2 }}
|
Discount {{ discountType == 'percentage' ? '('+discountAmount+'%)' : '' }}
|
{{ discountType == 'percentage' ? (_percentage(totalAmount, discountAmount) | formatDecimal:2) : (discountAmount | formatDecimal:2) }}
|
Tax Amount(%)
|
{{ taxAmount | formatDecimal:2 }}
|
Shipping Charge {{ shippingType == 'percentage' ? '('+shippingAmount+'%)' : '' }}
|
{{ shippingType == 'percentage' ? (_percentage(totalAmount, shippingAmount) | formatDecimal:2) : (shippingAmount | formatDecimal:2) }}
|
Other Charge |
{{ othersCharge | formatDecimal:2 }}
|
Payable Amount ({{ totalItem }} items)
|
{{ totalPayable | formatDecimal:2 }}
|
|
Notes: {{ invoiceNote }}
|