md
This commit is contained in:
parent
db266c5404
commit
5e89650007
@ -86,7 +86,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="updateSite != null and updateSite != ''"> and update_site like concat('%', #{updateSite}, '%')</if>
|
||||
</where>
|
||||
<if test="params.blTradeTimeAsc != null and params.blTradeTimeAsc==1 ">
|
||||
order by billCode asc,trade_date asc
|
||||
order by bill_code asc,trade_date asc
|
||||
</if>
|
||||
<if test="params.blTradeTimeAsc==null or (params.blTradeTimeAsc != null and params.blTradeTimeAsc!=1) ">
|
||||
order by create_time desc
|
||||
@ -121,7 +121,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<select id="selectListByBillCode" parameterType="String" resultMap="EmisTmsCostFeeSplitResult">
|
||||
select id, cost_no, batch_no, bill_code, main_bill_code, send_place, dest_place, bill_month, trade_date, trans_sign_no, supplier_code, fee_type, split_type, split_value, cost_fee, total_volume, bill_weight, trans_weight, trans_volume, trans_cost_fee, fee_item_id, calc_expr, calc_remark, bl_manual, bl_virtual, bl_sub, remark, del_flag, create_by, create_time, update_by, update_time, create_site, update_site
|
||||
from emis_tms_cost_fee_split a
|
||||
where a.del_flag='0' and a.main_bill_code = #{billCode}
|
||||
where a.del_flag='0'
|
||||
and a.main_bill_code = #{billCode}
|
||||
order by bill_code asc,trade_date asc
|
||||
</select>
|
||||
|
||||
<select id="selectListByCostNo" parameterType="String" resultMap="EmisTmsCostFeeSplitResult">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user