\n
\n
\n
Items
\n
\n Quantity\n
\n
Price
\n
\n Total\n
\n
\n
\n
\n {{ item?.name }}\n
\n
\n {{ item?.quantity }}\n
\n
\n {{ formatMoney(item?.price * 100) }}\n
\n
\n {{ formatMoney(item?.quantity * item?.price * 100) }}\n
\n
\n
\n
\n
Sub total
\n
\n {{ formatMoney(subtotal) }}\n
\n
\n
\n
\n
Shipping
\n
\n
\n {{ formatMoney(this.invoice?.shippingFee * 100 || 0) }}\n
\n
\n
\n
\n
Discount
\n
\n
\n {{\n invoice?.discountType == \"Fixed\"\n ? formatMoney(invoice?.discountValue * 100)\n : formatMoney(subtotal * (invoice?.discountValue / 100))\n }}\n
\n
\n
\n
\n
Tax
\n
\n
\n {{ formatMoney(this.invoice?.valueAddedTax * 100 || 0) }}\n
\n
\n
\n
\n
Amount
\n
\n
\n {{ formatMoney(total) }}\n
\n
\n
\n
\n
Fee
\n
\n
\n {{ formatMoney(fee * 100) }}\n
\n
\n
\n
Total
\n
\n {{ formatMoney(this.invoice?.total + fee * 100 || 0) }}\n
\n
\n
\n
Uploaded file\n
\n
\n

\n
\n
\n \n {{\n `Invoice.${getExtensionFromUrl(invoice?.upload?.fileurl)}`\n }}\n \n {{\n invoice?.upload?.filesize || \"-\"\n }}\n
\n
\n
\n
\n
\n \n
\n
\n