| Invoice No. | <%= bill.invoiceNo %> | Invoice Date | <%= moment(bill.invoiceDate).format('DD/MM/YYYY') %> | Invoice Value | โน<%= (bill.netPayable||0).toFixed(2) %> |
| PO No. | <%= bill.poNo||'โ' %> | PO Date | <%= bill.poDate ? moment(bill.poDate).format('DD/MM/YYYY') : 'โ' %> | Dispatch Date | <%= bill.transport?.dispatchDate ? moment(bill.transport.dispatchDate).format('DD/MM/YYYY') : 'โ' %> |
| Supply Type | <%= bill.supplyType||'B2B' %> | Place of Supply | <%= bill.transport?.placeOfSupply||'Maharashtra' %> | HSN / Item | <%= bill.lineItems[0]?.hsnCode||'โ' %> |
| # | Particulars | HSN | Qty | Unit | Taxable Amt | GST% | GST Amt | Total |
|---|---|---|---|---|---|---|---|---|
| <%= item.srNo %> | <%= item.particulars %> | <%= item.hsnCode||'โ' %> | <%= item.qty %> | <%= item.unit||'NOS' %> | <%= (item.amount||0).toFixed(2) %> | <%= item.gstRate %>% | <%= (item.gstAmt||0).toFixed(2) %> | <%= (item.total||0).toFixed(2) %> |
| TOTAL | โน<%= (bill.taxableAmount||0).toFixed(2) %> | โน<%= (bill.totalGst||0).toFixed(2) %> | โน<%= (bill.netPayable||0).toFixed(2) %> | |||||