|
@@ -76,16 +76,16 @@
|
|
|
from t_billInvoice
|
|
|
<where>
|
|
|
<if test="billInvoice.companyName != null and billInvoice.companyName != ''">
|
|
|
- and BINARY companyName =#{billInvoice.companyName}
|
|
|
+ and companyName = BINARY #{billInvoice.companyName}
|
|
|
</if>
|
|
|
<if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
|
|
|
and instr(CONCAT(',',#{billInvoice.waybillNum},','),CONCAT(',',waybillNum,','))>0
|
|
|
</if>
|
|
|
<if test="billInvoice.buyerTaxpayerCode != null and billInvoice.buyerTaxpayerCode != ''">
|
|
|
- and BINARY buyerTaxpayerCode = #{billInvoice.buyerTaxpayerCode}
|
|
|
+ and buyerTaxpayerCode = BINARY #{billInvoice.buyerTaxpayerCode}
|
|
|
</if>
|
|
|
<if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
|
|
|
- and BINARY plateNum = #{billInvoice.plateNum}
|
|
|
+ and plateNum = BINARY #{billInvoice.plateNum}
|
|
|
</if>
|
|
|
<if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
|
|
|
and instr(CONCAT(',',#{billInvoice.invoiceCode},','),CONCAT(',',invoiceCode,','))>0
|
|
@@ -96,7 +96,7 @@
|
|
|
<if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
|
|
|
and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
|
|
|
</if>
|
|
|
- <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''">
|
|
|
+ <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''"> and
|
|
|
calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
|
|
|
|
|
|
</if>
|
|
@@ -111,13 +111,13 @@
|
|
|
from t_billInvoice
|
|
|
<where>
|
|
|
<if test="waybillNum != null and waybillNum != ''">
|
|
|
- and BINARY waybillNum = #{waybillNum}
|
|
|
+ and waybillNum = BINARY #{waybillNum}
|
|
|
</if>
|
|
|
<if test="invoiceCode != null and invoiceCode != ''">
|
|
|
- and BINARY invoiceCode = #{invoiceCode}
|
|
|
+ and invoiceCode = BINARY #{invoiceCode}
|
|
|
</if>
|
|
|
<if test="invoiceNum != null and invoiceNum != ''">
|
|
|
- and BINARY invoiceNum = #{invoiceNum}
|
|
|
+ and invoiceNum = BINARY #{invoiceNum}
|
|
|
</if>
|
|
|
</where>
|
|
|
</select>
|
|
@@ -234,23 +234,23 @@
|
|
|
buyerName = #{buyerName,jdbcType=VARCHAR},
|
|
|
buyerTaxpayerCode = #{buyerTaxpayerCode,jdbcType=VARCHAR},
|
|
|
calculateTime = #{calculateTime,jdbcType=VARCHAR}
|
|
|
- where BINARY invoiceNum = #{invoiceNum,jdbcType=VARCHAR}
|
|
|
+ where invoiceNum = BINARY #{invoiceNum,jdbcType=VARCHAR}
|
|
|
</update>
|
|
|
<select id="selectByBillNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
|
|
|
select
|
|
|
<include refid="baseSql" />,calculateTime
|
|
|
from t_billInvoice
|
|
|
- where BINARY waybillNum = #{waybillNum,jdbcType=VARCHAR}
|
|
|
+ where waybillNum = BINARY #{waybillNum,jdbcType=VARCHAR}
|
|
|
</select>
|
|
|
<select id="selectByInvoiceNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
|
|
|
select
|
|
|
<include refid="baseSql" />,calculateTime
|
|
|
from t_billInvoice
|
|
|
- where BINARY invoiceNum = #{invoiceNum,jdbcType=VARCHAR}
|
|
|
+ where invoiceNum = BINARY #{invoiceNum,jdbcType=VARCHAR}
|
|
|
</select>
|
|
|
|
|
|
<delete id="deleteByBillNum" parameterType="java.lang.String">
|
|
|
- DELETE from t_billInvoice WHERE BINARY waybillNum = #{waybillNum,jdbcType=VARCHAR}
|
|
|
+ DELETE from t_billInvoice WHERE waybillNum = BINARY #{waybillNum,jdbcType=VARCHAR}
|
|
|
</delete>
|
|
|
|
|
|
<resultMap id="staticResultMap" type="java.util.Map">
|
|
@@ -266,27 +266,25 @@
|
|
|
from t_billInvoice
|
|
|
<where>
|
|
|
<if test="billInvoice.companyName != null and billInvoice.companyName != ''">
|
|
|
- and BINARY companyName LIKE CONCAT('%',#{billInvoice.companyName},'%')
|
|
|
+ and companyName = BINARY #{billInvoice.companyName}
|
|
|
</if>
|
|
|
<if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
|
|
|
- and BINARY waybillNum = #{billInvoice.waybillNum}
|
|
|
+ and waybillNum = BINARY #{billInvoice.waybillNum}
|
|
|
</if>
|
|
|
<if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
|
|
|
- and BINARY plateNum = #{billInvoice.plateNum}
|
|
|
+ and plateNum = BINARY #{billInvoice.plateNum}
|
|
|
</if>
|
|
|
<if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
|
|
|
- and BINARY invoiceCode = #{billInvoice.invoiceCode}
|
|
|
+ and invoiceCode = BINARY #{billInvoice.invoiceCode}
|
|
|
</if>
|
|
|
<if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
|
|
|
- and BINARY invoiceNum = #{billInvoice.invoiceNum}
|
|
|
+ and invoiceNum = BINARY #{billInvoice.invoiceNum}
|
|
|
</if>
|
|
|
<if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
|
|
|
and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
|
|
|
</if>
|
|
|
- <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''">
|
|
|
- and exists(SELECT 1 from t_CalculateInfor g where g.tradeId = transactionId and
|
|
|
- g.calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
|
|
|
- )
|
|
|
+ <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''"> and
|
|
|
+ calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
|
|
|
|
|
|
</if>
|
|
|
</where>
|
|
@@ -296,6 +294,6 @@
|
|
|
select
|
|
|
<include refid="baseSql" />
|
|
|
from t_billInvoice
|
|
|
- where BINARY customerName = #{customerName,jdbcType=VARCHAR}
|
|
|
+ where customerName = BINARY #{customerName,jdbcType=VARCHAR}
|
|
|
</select>
|
|
|
</mapper>
|