diff --git a/emis-biz/src/main/resources/mapper/EmisWaybillMapper.xml b/emis-biz/src/main/resources/mapper/EmisWaybillMapper.xml index 9516451db..f697c344e 100644 --- a/emis-biz/src/main/resources/mapper/EmisWaybillMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisWaybillMapper.xml @@ -1636,7 +1636,7 @@ and send_town=#{sendTown} and send_address like concat('%', #{sendAddress}, '%') and send_postcode like concat('%', #{sendPostcode}, '%') - and payment_type=#{paymentType} + and FIND_IN_SET(payment_type,#{paymentType}) and calc_fee_type=#{calcFeeType} and cust_no like concat('%', #{custNo}, '%') and cust_name like concat('%', #{custName}, '%') @@ -1644,7 +1644,7 @@ and product_type=#{productType} and time_type like concat('%', #{timeType}, '%') and meter_type like concat('%', #{meterType}, '%') - and carry_type like concat('%', #{carryType}, '%') + and FIND_IN_SET(carry_type,#{carryType}) and customs_clear=#{customsClear} and customs_eclaration=#{customsEclaration} and estimate_date = #{estimateDate} @@ -1742,7 +1742,7 @@ and sign_man like concat('%', #{signMan}, '%') and sign_man_code=#{signManCode} and sign_site_code=#{signSiteCode} - and payment_status =#{paymentStatus} + and FIND_IN_SET(payment_status,#{paymentStatus}) and payment_date = #{paymentDate} and payment_remark like concat('%', #{paymentRemark}, '%') and order_remark like concat('%', #{orderRemark}, '%')