Duel code page Edit Link Page Link: https://kitchen-king-ii.blogspot.com/2025/08/d-selected-items-table.html Table id: (filled using js ) id="selectedItemsTable" Send to Order Submit button : onclick="openCoustomerDetailsForm()" Order ID Date-Time Customer Name Table No. Mobile No. Email Address Sheet ID Sl. No. Items Rate - Quantity + Remove Amount Rs. Total Amount Rs.: 0.00 Close Send to Order Add Item ${index + 1} ${item.name} ${item.rate} - ${item.qty} + Remove ${(item.qty * item.rate).toFixed(2)} `; }); updateTotal(); } function changeQty(index, delta) { selectedItems[index].qty = Math.max(1, selectedItems[index].qty +...
Comments
Post a Comment