md
This commit is contained in:
parent
4388209f50
commit
db266c5404
@ -257,7 +257,7 @@ public class EmisTmsCostFeeServiceImpl implements IEmisTmsCostFeeService
|
||||
splitItem.setTransSignNo(waybill.getTakePieceEmployeeName()); // 运输号
|
||||
|
||||
splitItem.setSendPlace("客户现场");
|
||||
splitItem.setDestPlace(waybill.getStartSiteName());
|
||||
splitItem.setDestPlace(waybill.getSendSiteName());
|
||||
splitItem.setBillMonth(DateUtils.parseDateToStr(DateUtils.YYYY_MM,waybill.getSendDate()));
|
||||
splitItem.setTradeDate(waybill.getSendDate());
|
||||
|
||||
|
||||
@ -85,7 +85,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
<if test="createSite != null and createSite != ''"> and create_site like concat('%', #{createSite}, '%')</if>
|
||||
<if test="updateSite != null and updateSite != ''"> and update_site like concat('%', #{updateSite}, '%')</if>
|
||||
</where>
|
||||
order by create_time desc
|
||||
<if test="params.blTradeTimeAsc != null and params.blTradeTimeAsc==1 ">
|
||||
order by billCode asc,trade_date asc
|
||||
</if>
|
||||
<if test="params.blTradeTimeAsc==null or (params.blTradeTimeAsc != null and params.blTradeTimeAsc!=1) ">
|
||||
order by create_time desc
|
||||
</if>
|
||||
|
||||
</select>
|
||||
|
||||
<select id="checkUnique" parameterType="EmisTmsCostFeeSplit" resultType="int">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user