NK

Sales Order Management

Create sales orders from approved quotation, track PO, payment, production and dispatch readiness.

Total Orders
0
๐Ÿ“ฆ
Confirmed
0
โœ…
In Production
0
โš™๏ธ
Order Value
โ‚น0
โ‚น

Sales Order List

Add / Edit / View / Delete / Print
SO NoCustomer / ProjectQuotation / POPanelOrder DateDeliveryTotalPaymentStatusActions

Order Workflow

Sales โ†’ Production
Pipeline

Sales Order Process

Approved Quote โ†’ Sales Order โ†’ Production โ†’ Dispatch โ†’ Invoice
1. Quotation Approved
2. Customer PO
3. SO Confirmed
4. Production
5. Dispatch
6. Invoice
`);w.document.close()}function exportSOCSV(){let rows=filteredSO(),head=['SO No','Date','Customer','Quotation','PO','Project','Panel','Total','Payment','Status'];let csv=[head.join(','),...rows.map(x=>[x.soNo,x.orderDate,x.customer,x.quoteNo,x.poNo,x.project,x.panel,soGrand(x),x.paymentStatus,x.status].map(v=>'"'+String(v||'').replaceAll('"','""')+'"').join(','))].join('\n');let a=document.createElement('a');a.href=URL.createObjectURL(new Blob([csv],{type:'text/csv'}));a.download='aspl-sales-orders.csv';a.click()}document.addEventListener('DOMContentLoaded',soInit);if(location.hash==='#new')setTimeout(newSO,400)