Joules Work : 17-01-2025

SQL : Uploaded (21-02-2025)

ALTER TABLE `stock_details`  ADD `order_qty` INT(10) NOT NULL  AFTER `qty`;
UPDATE stock_details set order_qty = qty;
ALTER TABLE `csale_details`  ADD `order_qty` INT(10) NOT NULL  AFTER `qty`;
UPDATE `csale_details`  set order_qty = qty;
ALTER TABLE `csale_details`  ADD `manufacturing_status` INT(10) NOT NULL DEFAULT '0' COMMENT '0 : Pending ; 1 : Completed'  AFTER `order_qty`;
UPDATE `csale_details`  set `manufacturing_status` = '1';


manufacturing_sales_order_details.sql;
manufacturing_sales_order.sql;


ebill.sql
ebill_details.sql

ebill_pay.sql
epay_details.sql



IMPORTANT NOTE : 

APPROVAL STATUS : 2 // Manufactured && Send it To Repair
APPROVAL STATUS : 1 // Manufactured && Approved
APPROVAL STATUS : 0 // (Manufactured But Not Approved) Or (Not Manufactured)
