\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
\n {{ item.quantity }}\n
\n
\n {{ formatMoney(item.price) }}\n
\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 {{\n formatMoney(\n invoiceData?.shippingFee\n ? invoiceData?.shippingFee\n : 0\n )\n }}\n
\n
\n
\n
\n
\n Discount\n
\n
\n
\n {{\n formatMoney(\n invoiceData?.discountValue\n ? invoiceData.discountValue\n : 0\n )\n }}\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