\n
\n
\n Items\n
\n
\n Quantity\n
\n
\n Price\n
\n
\n Total\n
\n
\n
\n
\n {{ item.name}}\n
\n
{{item.quantity}}
\n
{{ formatMoney(item.price)}}
\n
\n {{ formatMoney(item.price*item.quantity)}}\n
\n
\n
\n
\n Sub total\n
\n
\n {{ formatMoney(subTotal)}}\n
\n
\n
\n
\n
\n Shipping\n
\n
\n
\n {{ formatMoney(invoiceData?.shippingFee? invoiceData?.shippingFee : 0 )}}\n
\n
\n
\n
\n
\n Discount\n
\n
\n
\n {{ formatMoney(invoiceData?.discountValue?invoiceData.discountValue: 0)}}\n
\n
\n
\n
\n
\n Tax\n
\n
\n
\n {{ formatMoney(invoiceData?.valueAddedTax)}}\n
\n
\n
\n
Total
\n
\n {{ formatMoney(invoiceData?.amount)}}\n
\n
\n
\n \n
\n
\n
Notes:
\n
\n An Invoice is a document issued by a merchant to a\n customer, this document indicates the quantity and cost of\n the product or service they provide\n
\n
\n
\n \n
\n
\n