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