| Description | Qty | Price | Discount | <% if (taxType === "on_total") { %>Taxable | <% } else { %>Tax | <% } %>Total |
|---|---|---|---|---|---|---|
| <%= item.name %> <%= item.description %> |
<%= item.quantity %> | <%= user.currencySymbol %><%= item.price.toFixed(2) %> | <%= user.currencySymbol %><%= item.discountAmount.toFixed(2) %> | <% if (taxType === "on_total") { %> <%= item.isTaxable ? "✔" : "✖" %> <% } else { %> <%= user.currencySymbol %><%= item.taxAmount.toFixed(2) %> <% } %> | <%= user.currencySymbol %><%= item.lineTotal.toFixed(2) %> |
| Sub Total | <%= user.currencySymbol %><%= summary.subTotal.toFixed(2) %> |
| Discount | - <%= user.currencySymbol %> <%= (summary.invoiceDiscountAmount || summary.estimateDiscountAmount || 0).toFixed(2) %> |
| Tax <%= taxType === "on_total" ? "on Total" : "Per Item" %> | <%= user.currencySymbol %><%= summary.taxTotal.toFixed(2) %> |
| Grand Total | <%= user.currencySymbol %><%= summary.grandTotal.toFixed(2) %> |