| | |
| | | <if test="ew.lockedQuantity != null and ew.lockedQuantity !=''"> |
| | | locked_quantity = locked_quantity + #{ew.lockedQuantity}, |
| | | </if> |
| | | <if test="ew.warehouse != null and ew.warehouse !=''"> |
| | | warehouse = #{ew.warehouse}, |
| | | </if> |
| | | update_time = now() |
| | | </set> |
| | | where product_model_id = #{ew.productModelId} |
| | |
| | | </update> |
| | | <select id="pagestockInventory" resultType="com.ruoyi.stock.dto.StockInventoryDto"> |
| | | select si.id, |
| | | si.warehouse, |
| | | si.qualitity, |
| | | COALESCE(si.locked_quantity, 0) as locked_quantity, |
| | | si.product_model_id, |
| | |
| | | unit, |
| | | product_name, |
| | | product_id, |
| | | MAX(warehouse) as warehouse, |
| | | 'combined' as stockType |
| | | from ( |
| | | select |
| | |
| | | pm.unit, |
| | | p.product_name, |
| | | p.id as product_id, |
| | | si.warehouse, |
| | | ( |
| | | select IFNULL(SUM(sor.stock_out_num), 0) |
| | | from stock_out_record sor |
| | |
| | | pm.unit, |
| | | p.product_name, |
| | | p.id as product_id, |
| | | su.warehouse, |
| | | 0 as qualifiedPendingOut, |
| | | ( |
| | | select IFNULL(SUM(sor.stock_out_num), 0) |
| | |
| | | model, |
| | | unit, |
| | | product_name, |
| | | product_id |
| | | order by combined.create_time desc |
| | | product_id, |
| | | warehouse |
| | | order by create_time desc |
| | | </select> |
| | | |
| | | <select id="listStockInventoryExportData" resultType="com.ruoyi.stock.execl.StockInventoryExportData"> |
| | |
| | | unit, |
| | | product_name, |
| | | product_id, |
| | | MAX(warehouse) as warehouse, |
| | | 'combined' as stockType |
| | | from ( |
| | | select |
| | |
| | | pm.unit, |
| | | p.product_name, |
| | | p.id as product_id, |
| | | si.warehouse, |
| | | ( |
| | | select IFNULL(SUM(sor.stock_out_num), 0) |
| | | from stock_out_record sor |
| | |
| | | pm.unit, |
| | | p.product_name, |
| | | p.id as product_id, |
| | | su.warehouse, |
| | | 0 as qualifiedPendingOut, |
| | | ( |
| | | select IFNULL(SUM(sor.stock_out_num), 0) |
| | |
| | | and combined.product_id in (select id from product_tree) |
| | | </if> |
| | | </where> |
| | | group by batch_no, product_model_id, model, unit, product_name, product_id |
| | | group by batch_no, product_model_id, model, unit, product_name, product_id, warehouse |
| | | </select> |
| | | <select id="stockInventoryPage" resultType="com.ruoyi.stock.dto.StockInRecordDto"> |
| | | select sir.*,si.qualitity as current_stock, |
| | |
| | | unit, |
| | | product_name, |
| | | product_id, |
| | | MAX(warehouse) as warehouse, |
| | | |
| | | MAX(create_time) as create_time, |
| | | MAX(update_time) as update_time, |
| | |
| | | COALESCE(si.warn_num, 0) as warn_num, |
| | | si.version, |
| | | si.remark, |
| | | si.warehouse, |
| | | |
| | | ( |
| | | select IFNULL(SUM(sor.stock_out_num), 0) |
| | |
| | | 0 as warn_num, |
| | | su.version, |
| | | su.remark, |
| | | su.warehouse, |
| | | |
| | | 0 as qualifiedPendingOut, |
| | | |
| | |
| | | model, |
| | | unit, |
| | | product_name, |
| | | product_id |
| | | product_id, |
| | | warehouse |
| | | order by |
| | | batch_no |
| | | </select> |