This commit is contained in:
linfso 2025-01-06 14:17:03 +08:00
parent ad21250ef8
commit 45d79de64c
2 changed files with 6 additions and 4 deletions

View File

@ -107,6 +107,8 @@ public class EmisWarehouseInBatchServiceImpl extends EmisBaseService implements
}
// 判断是否已经开单,开单后不允许再次入仓
EmisWarehouseIn emisWarehouseIn=emisWarehouseInMapper.selectEmisWarehouseInByInNo(emisWarehouseInBatch.getInNo());
if(emisWarehouseIn==null){

View File

@ -174,9 +174,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="prepareInRemark != null and prepareInRemark != ''">#{prepareInRemark},</if>
<if test="prepareInSupplier != null and prepareInSupplier != ''">#{prepareInSupplier},</if>
<if test="packType != null and packType != ''">#{packType},</if>
<if test="totalParcelQty != null">#{totalParcelQty},</if>
<if test="totalParcelQty != null">#{parcelQty},</if>
<if test="totalVolume != null">#{totalVolume},</if>
<if test="totalWeight != null">#{totalWeight},</if>
<if test="totalWeight != null">#{billWeight},</if>
<if test="parcelQty != null">#{parcelQty},</if>
<if test="billWeight != null">#{billWeight},</if>
<if test="realValue != null and realValue != ''">#{realValue},</if>
@ -219,9 +219,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="prepareInRemark != null and prepareInRemark != ''">prepare_in_remark = #{prepareInRemark},</if>
<if test="prepareInSupplier != null and prepareInSupplier != ''">prepare_in_supplier = #{prepareInSupplier},</if>
<if test="packType != null and packType != ''">pack_type = #{packType},</if>
<if test="totalParcelQty != null">total_parcel_qty = #{totalParcelQty},</if>
<if test="totalParcelQty != null">total_parcel_qty = #{parcelQty},</if>
<if test="totalVolume != null">total_volume = #{totalVolume},</if>
<if test="totalWeight != null">total_weight = #{totalWeight},</if>
<if test="totalWeight != null">total_weight = #{billWeight},</if>
<if test="parcelQty != null">parcel_qty = #{parcelQty},</if>
<if test="billWeight != null">bill_weight = #{billWeight},</if>
<if test="realValue != null and realValue != ''">real_value = #{realValue},</if>