Commit 99c6a8e45f0e0df5791c134b043a2b21eccc3409

Authored by jiangchengyong
1 parent 70174c2a

收货地址Id 校验修改

myapp-web/src/main/resources/mybatis/PickingInfoMapper.xml
... ... @@ -83,13 +83,13 @@
83 83 `telphone`=#{telphone},
84 84 </if>
85 85 <if test="addressId != null and addressId != ''">
86   - and `address_id` = #{addressId}
  86 + `address_id` = #{addressId},
87 87 </if>
88 88 <if test="addressText != null and addressText != ''">
89   - and `address_text` = #{addressText}
  89 + `address_text` = #{addressText},
90 90 </if>
91 91 <if test="addressDetail != null and addressDetail != ''">
92   - and `address_detail` = #{addressDetail}
  92 + `address_detail` = #{addressDetail},
93 93 </if>
94 94 <if test="def != null and def != ''">
95 95 `def`=#{def},
... ...