|
@@ -277,12 +277,14 @@
|
|
|
/*判断是否入库*/
|
|
|
<if test="map.billType == 'RK'">
|
|
|
f_volumnD = f_volumnD + #{map.warehousebillsitems.fQty},
|
|
|
- f_grossweightD = f_grossweightD + #{map.warehousebillsitems.fAmount}
|
|
|
+ f_grossweightD = f_grossweightD + #{map.warehousebillsitems.fAmount},
|
|
|
+ f_grossweightblc = f_grossweightblc + #{map.warehousebillsitems.fQty}
|
|
|
</if>
|
|
|
/*判断是否撤销入库*/
|
|
|
<if test="map.billType == 'RKRevoke'">
|
|
|
f_volumnD = f_volumnD - #{map.warehousebillsitems.fQty},
|
|
|
- f_grossweightD = f_grossweightD - #{map.warehousebillsitems.fAmount}
|
|
|
+ f_grossweightD = f_grossweightD - #{map.warehousebillsitems.fAmount},
|
|
|
+ f_grossweightblc = f_grossweightblc - #{map.warehousebillsitems.fQty}
|
|
|
</if>
|
|
|
/*判断是否出库*/
|
|
|
<if test="map.billType == 'CK'">
|