diff --git a/emis-biz/src/main/resources/mapper/EmisSiteMapper.xml b/emis-biz/src/main/resources/mapper/EmisSiteMapper.xml index c51f3423a..acd1e12cd 100644 --- a/emis-biz/src/main/resources/mapper/EmisSiteMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisSiteMapper.xml @@ -265,7 +265,16 @@ and id = #{id} and FIND_IN_SET(`site_code`,#{siteCode}) - and site_name like concat('%', #{siteName}, '%') + + + + and site_name = #{siteName} + + + and site_name like concat('%', #{siteName}, '%') + + + and site_name_en like concat('%', #{siteNameEn}, '%') and default_currency like concat('%', #{defaultCurrency}, '%') and cut_off_time like concat('%', #{cutOffTime}, '%') diff --git a/emis-biz/src/main/resources/mapper/EmisWaybillMapper.xml b/emis-biz/src/main/resources/mapper/EmisWaybillMapper.xml index 8c4f45f78..9cc067921 100644 --- a/emis-biz/src/main/resources/mapper/EmisWaybillMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisWaybillMapper.xml @@ -2928,7 +2928,17 @@ and FIND_IN_SET(payment_type,#{paymentType}) and calc_fee_type=#{calcFeeType} and cust_no like concat('%', #{custNo}, '%') - and cust_name like concat('%', #{custName}, '%') + + + + and mu.company =#{custName} + + + and cust_name =#{custName} + + + and trans_line_type=#{transLineType} and FIND_IN_SET(product_type,#{productType}) and time_type like concat('%', #{timeType}, '%')