| | |
| | | product_model_id, |
| | | MAX(create_time) as create_time, |
| | | MAX(update_time) as update_time, |
| | | MAX(warn_num) as warn_num, |
| | | SUM(warn_num) as warn_num, |
| | | MAX(version) as version, |
| | | model, |
| | | MAX(remark) as remark, |
| | |
| | | </where> |
| | | group by batch_no, product_model_id, model, unit, product_name, product_id |
| | | </select> |
| | | |
| | | <select id="stockInventoryPage" resultType="com.ruoyi.stock.dto.StockInRecordDto"> |
| | | select sir.*,si.qualitity as current_stock, |
| | | select sir.*, si.qualitity as current_stock, |
| | | pm.model, |
| | | pm.unit, |
| | | p.product_name, |
| | |
| | | left join product p on pm.product_id = p.id |
| | | left join sys_user su on sir.create_user = su.user_id |
| | | <where> |
| | | and si.qualitity >= 0 |
| | | |
| | | and sir.stock_in_num >= 0 |
| | | |
| | | <if test="ew.reportDate != null"> |
| | | and sir.create_time >= #{ew.reportDate} |
| | | and sir.create_time < DATE_ADD(#{ew.reportDate}, INTERVAL 1 DAY) |
| | |
| | | and (si.qualitity - ifnull(si.locked_quantity, 0)) > 0 |
| | | order by si.product_model_id, si.batch_no |
| | | </select> |
| | | <select id="getByModelId" resultType="com.ruoyi.stock.pojo.StockInventory"> |
| | | select si.id, si.batch_no, si.locked_quantity, (si.qualitity - IFNULL(sd.qualitity, 0)) as qualitity |
| | | <select id="getByModelId" resultType="com.ruoyi.stock.dto.StockInventoryDto"> |
| | | select si.id, si.batch_no, si.locked_quantity, (si.qualitity - IFNULL(sd.qualitity, 0)) as qualitity, |
| | | p.product_name, pm.model, pm.unit |
| | | from stock_inventory si |
| | | left join ( |
| | | select spd.stock_inventory_id, sum(spd.quantity) as qualitity |
| | |
| | | ) |
| | | group by spd.stock_inventory_id |
| | | ) as sd on sd.stock_inventory_id = si.id |
| | | left join product_model pm on si.product_model_id = pm.id |
| | | left join product p on pm.product_id = p.id |
| | | where si.product_model_id = #{productModelId} |
| | | and si.qualitity > IFNULL(sd.qualitity, 0) |
| | | </select> |
| | |
| | | unit, |
| | | product_name, |
| | | product_id |
| | | having SUM(qualifiedQuantity) >= 0 |
| | | order by |
| | | batch_no |
| | | </select> |