|
|
|
@ -1058,6 +1058,9 @@ left join ecss_CoDelNotifyHeader noHeader on a.site=noHeader.site and a.delNo=no |
|
|
|
from ecss_CoDelPalletDetail b |
|
|
|
left join ecss_CoDelBoxList c on b.site=c.site and b.bu_no=c.bu_no and b.delNo=c.delNo and b.seq_no=c.item_no |
|
|
|
where b.site=#{site} and b.bu_no=#{buNo} and b.delNo=#{delNo} |
|
|
|
<if test="seqNo != null and seqNo != ''"> |
|
|
|
and b.seq_no=#{seqNo} |
|
|
|
</if> |
|
|
|
</select> |
|
|
|
|
|
|
|
<update id="updateExportFlag"> |
|
|
|
@ -1071,7 +1074,7 @@ left join ecss_CoDelNotifyHeader noHeader on a.site=noHeader.site and a.delNo=no |
|
|
|
</update> |
|
|
|
|
|
|
|
<select id="selectBoxList" resultType="java.util.Map"> |
|
|
|
select * from ecss_CoDelBoxList |
|
|
|
select *,CONVERT(DECIMAL(20, 3),gross_weight) as grossWeight,CONVERT(DECIMAL(20, 3),net_weight) as netWeight from ecss_CoDelBoxList |
|
|
|
where site = #{site} and bu_no = #{buNo} and delNo = #{delNo} |
|
|
|
</select> |
|
|
|
|
|
|
|
|