|
@@ -13,6 +13,7 @@
|
|
<result column="buyerName" property="buyerName"/>
|
|
<result column="buyerName" property="buyerName"/>
|
|
<result column="buyerTaxpayerCode" property="buyerTaxpayerCode"/>
|
|
<result column="buyerTaxpayerCode" property="buyerTaxpayerCode"/>
|
|
<result column="invoiceMakeTime" property="invoiceMakeTime"/>
|
|
<result column="invoiceMakeTime" property="invoiceMakeTime"/>
|
|
|
|
+ <result column="companyLongName" property="companyLongName"/>
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="baseSql">
|
|
<sql id="baseSql">
|
|
@@ -25,22 +26,30 @@
|
|
ctype,
|
|
ctype,
|
|
buyerName,
|
|
buyerName,
|
|
buyerTaxpayerCode,
|
|
buyerTaxpayerCode,
|
|
- invoiceMakeTime
|
|
|
|
|
|
+ invoiceMakeTime,
|
|
|
|
+ companyLongName
|
|
</sql>
|
|
</sql>
|
|
<select id="selectAllByPage" resultMap="BaseResultMap">
|
|
<select id="selectAllByPage" resultMap="BaseResultMap">
|
|
select
|
|
select
|
|
<include refid="baseSql" />
|
|
<include refid="baseSql" />
|
|
from t_CalculateInfor
|
|
from t_CalculateInfor
|
|
<where>
|
|
<where>
|
|
|
|
+ 1 = 1
|
|
<if test="calculateInfor.customId != null and calculateInfor.customId != ''">
|
|
<if test="calculateInfor.customId != null and calculateInfor.customId != ''">
|
|
and customId LIKE CONCAT('%',#{calculateInfor.customId},'%')
|
|
and customId LIKE CONCAT('%',#{calculateInfor.customId},'%')
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="calculateInfor.companyLongName != null and calculateInfor.companyLongName != ''">
|
|
|
|
+ and companyLongName LIKE CONCAT('%',#{calculateInfor.companyLongName},'%')
|
|
|
|
+ </if>
|
|
<if test="calculateInfor.buyerName != null and calculateInfor.buyerName != ''">
|
|
<if test="calculateInfor.buyerName != null and calculateInfor.buyerName != ''">
|
|
and buyerName LIKE CONCAT('%',#{calculateInfor.buyerName},'%')
|
|
and buyerName LIKE CONCAT('%',#{calculateInfor.buyerName},'%')
|
|
</if>
|
|
</if>
|
|
<if test="calculateInfor.buyerTaxpayerCode != null and calculateInfor.buyerTaxpayerCode != ''">
|
|
<if test="calculateInfor.buyerTaxpayerCode != null and calculateInfor.buyerTaxpayerCode != ''">
|
|
and buyerTaxpayerCode = #{calculateInfor.buyerTaxpayerCode}
|
|
and buyerTaxpayerCode = #{calculateInfor.buyerTaxpayerCode}
|
|
</if>
|
|
</if>
|
|
|
|
+ <if test="calculateInfor.tradeId != null and calculateInfor.tradeId != ''">
|
|
|
|
+ and tradeId = #{calculateInfor.tradeId}
|
|
|
|
+ </if>
|
|
<if test="calculateInfor.invoiceMakeTime != null and calculateInfor.invoiceMakeTime != ''">
|
|
<if test="calculateInfor.invoiceMakeTime != null and calculateInfor.invoiceMakeTime != ''">
|
|
and invoiceMakeTime BETWEEN #{calculateInfor.invoiceMakeStart} and #{calculateInfor.invoiceMakeEnd}
|
|
and invoiceMakeTime BETWEEN #{calculateInfor.invoiceMakeStart} and #{calculateInfor.invoiceMakeEnd}
|
|
</if>
|
|
</if>
|
|
@@ -95,11 +104,12 @@
|
|
ctype,
|
|
ctype,
|
|
buyerName,
|
|
buyerName,
|
|
buyerTaxpayerCode,
|
|
buyerTaxpayerCode,
|
|
- invoiceMakeTime
|
|
|
|
|
|
+ invoiceMakeTime,
|
|
|
|
+ companyLongName
|
|
)
|
|
)
|
|
values ( #{customId,jdbcType=VARCHAR}, #{companyNum,jdbcType=VARCHAR},
|
|
values ( #{customId,jdbcType=VARCHAR}, #{companyNum,jdbcType=VARCHAR},
|
|
#{tradeId,jdbcType=VARCHAR}, #{fee,jdbcType=DOUBLE},#{calculateTime,jdbcType=VARCHAR},#{ctype,jdbcType=INTEGER}
|
|
#{tradeId,jdbcType=VARCHAR}, #{fee,jdbcType=DOUBLE},#{calculateTime,jdbcType=VARCHAR},#{ctype,jdbcType=INTEGER}
|
|
- ,#{buyerName,jdbcType=VARCHAR},#{buyerTaxpayerCode,jdbcType=VARCHAR},#{invoiceMakeTime,jdbcType=VARCHAR}
|
|
|
|
|
|
+ ,#{buyerName,jdbcType=VARCHAR},#{buyerTaxpayerCode,jdbcType=VARCHAR},#{invoiceMakeTime,jdbcType=VARCHAR},#{companyLongName,jdbcType=VARCHAR}
|
|
)
|
|
)
|
|
</insert>
|
|
</insert>
|
|
</mapper>
|
|
</mapper>
|