\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 {{ formatMoney(vendorPayment?.shippingFee || 0) }}\n
\n
\n
\n
\n
\n Discount\n
\n
\n
\n {{ discount }}\n
\n
\n
\n
\n
\n Tax\n
\n
\n
\n {{ formatMoney(vendorPayment?.valueAddedTax || 0) }}\n
\n
\n
\n
Total
\n
\n {{ formatMoney(vendorPayment?.total || 0) }}\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