This commit is contained in:
linfso 2024-05-23 12:05:20 +08:00
parent d271834efe
commit 134fc581ac
2 changed files with 3 additions and 3 deletions

View File

@ -84,7 +84,7 @@ public class EmisSiteServiceImpl extends EmisBaseService implements IEmisSiteSer
emisDestination.setCountry(emisSite.getCountryCode());
emisDestination.setDestName(emisSite.getSiteName());
emisDestination.setDestNameEn(emisSite.getSiteNameEn());
emisDestination.setStatus(0);
emisDestination.setStatus(1);
emisDestination.setSiteCode(emisSite.getSiteCode());
emisDestination.setProvince(emisSite.getProvince());
emisDestination.setCity(emisSite.getCity());

View File

@ -293,9 +293,9 @@
<where>
del_flag='0'
<if test="id != null "> and id = #{id}</if>
<if test="orderSn != null and orderSn != ''"> and order_sn like concat('%', #{orderSn}, '%')</if>
<if test="orderSn != null and orderSn != ''"> and FIND_IN_SET(`order_sn`,#{orderSn}) </if>
<if test="custOrderId != null and custOrderId != ''"> and cust_order_id like concat('%', #{custOrderId}, '%')</if>
<if test="billCode != null and billCode != ''"> and bill_code like concat('%', #{billCode}, '%')</if>
<if test="billCode != null and billCode != ''"> and FIND_IN_SET(`bill_code`,#{billCode}) </if>
<if test="billCodeSub != null and billCodeSub != ''"> and bill_code_sub like concat('%', #{billCodeSub}, '%')</if>
<if test="orderStatus != null and orderStatus != ''"> and order_status like concat('%', #{orderStatus}, '%')</if>
<if test="waybillStatus != null and waybillStatus != ''"> and waybill_status like concat('%', #{waybillStatus}, '%')</if>