| | |
| | | ifnull(f.inventory, 0) as inventoryShow, |
| | | round(ifnull(f.inventory, 0) * a.compute_area, 2) as inventoryAreaShow, -- 库存面积 |
| | | ifnull(dd.quantity, 0) as shippedQuantityShow, -- 发货数量 |
| | | (ifnull(dd.quantity, 0)+ifnull(f.inventory, 0))*a.compute_area as StorageAreaShow,-- 入库面积 |
| | | (ifnull(c.received_quantity, 0))*a.compute_area as StorageAreaShow,-- 入库面积 |
| | | |
| | | if(c.technology_number=1,(c.quantity-ifnull(c.termination_quantity,0))*a.compute_area,0) as grossArea, |
| | | if(c.technology_number=1,ifnull(f.inventory, 0) ,0) as inventory, |
| | | if(c.technology_number=1,round(ifnull(f.inventory, 0) * a.compute_area, 2),0) as inventoryArea, |
| | | if(c.technology_number=1,ifnull(dd.quantity, 0) ,0) as shippedQuantity, |
| | | if(c.technology_number=1,(ifnull(dd.quantity, 0)+ifnull(f.inventory, 0))*a.compute_area,0) as StorageArea, |
| | | if(c.technology_number=1,(ifnull(c.received_quantity, 0))*a.compute_area,0) as StorageArea, |
| | | |
| | | |
| | | ifnull(JSON_UNQUOTE(JSON_EXTRACT(a.other_columns, '$.S01')),'') AS glassNumber, |