|
@@ -30,6 +30,7 @@
|
30
|
30
|
<result column="car_no" property="carNo" jdbcType="VARCHAR" />
|
31
|
31
|
<result column="tally_people" property="tallyPeople" jdbcType="VARCHAR" />
|
32
|
32
|
<result column="fk_compony_id" property="fkComponyId" jdbcType="VARCHAR" />
|
|
33
|
+ <result column="remark1" property="remark1" jdbcType="VARCHAR" />
|
33
|
34
|
|
34
|
35
|
<result column="invoice_price" property="invoicePrice" jdbcType="DOUBLE" />
|
35
|
36
|
<result column="contract_no" property="contractNo" jdbcType="VARCHAR" />
|
|
@@ -57,7 +58,8 @@
|
57
|
58
|
<sql id="Base_Column_List" >
|
58
|
59
|
id, ware_id, stack_id, layer, material_id, model, plate_no, customer_id, count, weight,
|
59
|
60
|
remark, add_id, add_time, modify_id, modify_time, cancel_id, cancel_time, cancel_flag,
|
60
|
|
- belong_id, in_id, out_id, receive_address, out_flag, lock_flag,wgt_dcn_mtc_cd,edge_ty,production_place,contract_no
|
|
61
|
+ belong_id, in_id, out_id, receive_address, out_flag, lock_flag,wgt_dcn_mtc_cd,edge_ty,
|
|
62
|
+ production_place,contract_no,remark1
|
61
|
63
|
</sql>
|
62
|
64
|
|
63
|
65
|
|
|
@@ -87,7 +89,7 @@
|
87
|
89
|
belong_id, in_id, out_id,
|
88
|
90
|
receive_address, out_flag, lock_flag
|
89
|
91
|
,wgt_dcn_mtc_cd,edge_ty,production_place,ord_no
|
90
|
|
- ,car_no,tally_people,fk_compony_id,invoice_price,contract_no
|
|
92
|
+ ,car_no,tally_people,fk_compony_id,invoice_price,contract_no,remark1
|
91
|
93
|
)
|
92
|
94
|
values (#{id,jdbcType=VARCHAR}, #{ware.id,jdbcType=VARCHAR}, #{stack.id,jdbcType=VARCHAR},
|
93
|
95
|
#{layer,jdbcType=INTEGER}, #{material.id,jdbcType=VARCHAR}, #{model,jdbcType=VARCHAR},
|
|
@@ -99,6 +101,7 @@
|
99
|
101
|
#{receiveAddress,jdbcType=VARCHAR}, #{outFlag,jdbcType=VARCHAR}, #{lockFlag,jdbcType=VARCHAR}
|
100
|
102
|
,#{wgtDcnMtcCd,jdbcType=VARCHAR},#{edgeTy,jdbcType=VARCHAR},#{productionPlace,jdbcType=VARCHAR},#{ordNo,jdbcType=VARCHAR}
|
101
|
103
|
,#{carNo,jdbcType=VARCHAR},#{tallyPeople,jdbcType=VARCHAR},#{fkComponyId,jdbcType=VARCHAR},#{invoicePrice,jdbcType=DOUBLE},#{contractNo,jdbcType=VARCHAR}
|
|
104
|
+ ,#{remark1,jdbcType=VARCHAR}
|
102
|
105
|
)
|
103
|
106
|
</insert>
|
104
|
107
|
|
|
@@ -326,7 +329,8 @@
|
326
|
329
|
receive_address = #{receiveAddress,jdbcType=VARCHAR},
|
327
|
330
|
out_flag = #{outFlag,jdbcType=VARCHAR},
|
328
|
331
|
lock_flag = #{lockFlag,jdbcType=VARCHAR},
|
329
|
|
- contract_no = #{contractNo,jdbcType=VARCHAR}
|
|
332
|
+ contract_no = #{contractNo,jdbcType=VARCHAR},
|
|
333
|
+ remark1 = #{remark1,jdbcType=VARCHAR}
|
330
|
334
|
where id = #{id,jdbcType=VARCHAR}
|
331
|
335
|
</update>
|
332
|
336
|
|
|
@@ -438,6 +442,7 @@ update t_ware_store t set t.layer = #{param7,jdbcType=INTEGER}
|
438
|
442
|
and c.name like concat('%',#{param4,jdbcType=VARCHAR},'%')
|
439
|
443
|
and c.standard like concat('%',#{param5,jdbcType=VARCHAR},'%')
|
440
|
444
|
and d.name like concat('%',#{param6,jdbcType=VARCHAR},'%')
|
|
445
|
+ and t.remark1 like concat('%',#{param13,jdbcType=VARCHAR},'%')
|
441
|
446
|
and (t.plate_no like concat('%',#{param7,jdbcType=VARCHAR},'%')
|
442
|
447
|
<if test="param9 != null and param9.size() !=0" >
|
443
|
448
|
OR t.plate_no IN <foreach item="item" collection="param9" index="index" open="(" separator="," close=")">
|