|
|
|
@ -33,4 +33,26 @@
|
|
|
|
|
</where>
|
|
|
|
|
order by irs.updateTime desc
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<select id="selectInfoByInvId" resultType="com.glxp.api.res.inv.InvRemindSetResponse">
|
|
|
|
|
select ip.relIdFk relId,
|
|
|
|
|
ip.deptCode,
|
|
|
|
|
ip.invCode,
|
|
|
|
|
ipd.invSpaceCode,
|
|
|
|
|
(select `name` from auth_warehouse where code = ip.invCode) invName,
|
|
|
|
|
(select `name` from auth_space where code = ipd.invSpaceCode and invWarehouseCode = ip.invCode) invSpaceName,
|
|
|
|
|
bp.ggxh,
|
|
|
|
|
bp.cpmctymc productName,
|
|
|
|
|
bu.lowStockNum,
|
|
|
|
|
bu.overStockNum,
|
|
|
|
|
bu.recentDateTime,
|
|
|
|
|
bu.isDateBy
|
|
|
|
|
from inv_product ip
|
|
|
|
|
left join basic_udirel bu on ip.relIdFk = bu.id
|
|
|
|
|
left join basic_products bp on bu.uuid = bp.uuid
|
|
|
|
|
left join inv_product_detail ipd
|
|
|
|
|
on ip.relIdFk = ipd.relId and IFNULL(ip.batchNo, 'empty') = ifnull(ipd.batchNo, 'empty')
|
|
|
|
|
and ip.invCode = ipd.invCode
|
|
|
|
|
where ip.id = #{invId}
|
|
|
|
|
</select>
|
|
|
|
|
</mapper>
|
|
|
|
|