Merge pull request 'demand: 批次号无法删除bug修复' (#247) from develop into master
Reviewed-on: http://git.xdadan.loc/tanex/emis-service/pulls/247
This commit is contained in:
commit
aa1afcdf36
@ -293,10 +293,18 @@
|
||||
</select>
|
||||
|
||||
<select id="selectEmisTmsCostFeeByBatchIds" parameterType="Long[]" resultMap="EmisTmsCostFeeResult">
|
||||
select c.id, c.cost_no, c.cost_name, c.batch_no, c.fee_type, c.split_type, c.trans_type, c.trans_sign_no, c.supplier_code, c.supplier_name, c.send_place, c.dest_place, c.cost_fee, c.usd_cost_fee, c.bill_month, c.trade_date, c.send_piece_sum, c.piece_number, c.total_weight, c.total_volume, c.bl_confirm_center, c.real_piece_number, c.real_total_weight, c.real_total_volume, c.confirm_center_date, c.confirm_center_note, c.confirm_center_man_code, c.confirm_center_code, c.bl_confirm_site, c.confirm_site_date, c.confirm_site_man_code, c.confirm_site_note, c.confirm_site_code, c.bl_has_calc, c.calc_date, c.remark, c.del_flag, c.create_by, c.create_time, c.update_by, c.update_time, c.create_site, c.update_site
|
||||
select c.id, c.cost_no, c.cost_name, c.batch_no, c.fee_type, c.split_type, c.trans_type, c.trans_sign_no,
|
||||
c.supplier_code, c.supplier_name, c.send_place, c.dest_place, c.cost_fee, c.usd_cost_fee, c.bill_month,
|
||||
c.trade_date, c.send_piece_sum, c.piece_number, c.total_weight, c.total_volume, c.bl_confirm_center,
|
||||
c.real_piece_number, c.real_total_weight, c.real_total_volume, c.confirm_center_date, c.confirm_center_note,
|
||||
c.confirm_center_man_code, c.confirm_center_code, c.bl_confirm_site, c.confirm_site_date,
|
||||
c.confirm_site_man_code, c.confirm_site_note, c.confirm_site_code, c.bl_has_calc, c.calc_date, c.remark,
|
||||
c.del_flag, c.create_by, c.create_time, c.update_by, c.update_time, c.create_site, c.update_site
|
||||
from emis_tms_cost_fee c
|
||||
inner join emis_tms_site_batch b on c.batch_no = b.batch_no
|
||||
where b.id in
|
||||
where
|
||||
c.del_flag='0' and
|
||||
b.id in
|
||||
<foreach collection="array" item="id" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user