This commit is contained in:
linfso 2025-06-30 23:17:55 +08:00
parent 4388209f50
commit db266c5404
2 changed files with 8 additions and 2 deletions

View File

@ -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());

View File

@ -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">