| Our Bill No. | <%= bill.billNo %> | Bill Date | <%= moment(bill.billDate).format('DD/MM/YYYY') %> |
| Vendor Invoice No. | <%= bill.vendorInvoiceNo||'' %> | Vendor Invoice Date | <%= bill.vendorInvoiceDate?moment(bill.vendorInvoiceDate).format('DD/MM/YYYY'):'' %> |
| Payment Terms | <%= bill.paymentTerms||45 %> Days | E-Way Bill No. | <%= bill.eWayBillNo||'' %> |
| Vehicle No. | <%= bill.transport?.vehicleNo||'' %> | Transport Mode | <%= bill.transport?.mode||'BY ROAD' %> |
| Sr. | Particulars | HSN | Qty | Rate | GST% | GST Amt | Total |
|---|---|---|---|---|---|---|---|
| <%= item.srNo %> | <%= item.particulars %> | <%= item.hsnCode %> | <%= item.qty %> <%= item.unit||'NOS' %> | <%= (item.rate||0).toFixed(2) %> | <%= item.gstRate %>% | <%= (item.gstAmt||0).toFixed(2) %> | <%= (item.total||0).toFixed(2) %> |
| Taxable Amount | <%= (bill.taxableAmount||0).toFixed(2) %> |
| CGST | <%= (bill.cgstAmount||0).toFixed(2) %> |
| SGST | <%= (bill.sgstAmount||0).toFixed(2) %> |
| Round Off | <%= (bill.roundOff||0).toFixed(2) %> |
| Net Payable | <%= (bill.netPayable||0).toFixed(2) %> |