|
@@ -79,7 +79,7 @@
|
|
|
and BINARY companyName LIKE CONCAT('%',#{billInvoice.companyName},'%')
|
|
|
</if>
|
|
|
<if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
|
|
|
- and instr(#{billInvoice.waybillNum},waybillNum)>0
|
|
|
+ and instr(CONCAT(',',#{billInvoice.waybillNum},','),CONCAT(',',waybillNum,','))>0
|
|
|
</if>
|
|
|
<if test="billInvoice.buyerTaxpayerCode != null and billInvoice.buyerTaxpayerCode != ''">
|
|
|
and BINARY buyerTaxpayerCode = #{billInvoice.buyerTaxpayerCode}
|
|
@@ -88,10 +88,10 @@
|
|
|
and BINARY plateNum = #{billInvoice.plateNum}
|
|
|
</if>
|
|
|
<if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
|
|
|
- and instr(#{billInvoice.invoiceCode},invoiceCode)>0
|
|
|
+ and instr(CONCAT(',',#{billInvoice.invoiceCode},','),CONCAT(',',invoiceCode,','))>0
|
|
|
</if>
|
|
|
<if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
|
|
|
- and instr(#{billInvoice.invoiceNum},invoiceNum)>0
|
|
|
+ and instr(CONCAT(',',#{billInvoice.invoiceNum},','),CONCAT(',',invoiceNum,','))>0
|
|
|
</if>
|
|
|
<if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
|
|
|
and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
|