123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.jkcredit.invoice.mapper.Binvoce.BillInvoiceMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.invoice.BillInvoice">
- <id column="id" property="id"/>
- <result column="companyNum" property="companyNum"/>
- <result column="customerName" property="customerName"/>
- <result column="companyName" property="companyName"/>
- <result column="waybillNum" property="waybillNum"/>
- <result column="invoiceNum" property="invoiceNum"/>
- <result column="invoiceCode" property="invoiceCode"/>
- <result column="invoiceMakeTime" property="invoiceMakeTime"/>
- <result column="invoiceUrl" property="invoiceUrl"/>
- <result column="invoiceHtmlUrl" property="invoiceHtmlUrl"/>
- <result column="enStation" property="enStation"/>
- <result column="exStation" property="exStation"/>
- <result column="exTime" property="exTime"/>
- <result column="fee" property="fee"/>
- <result column="totalTaxAmount" property="totalTaxAmount"/>
- <result column="plateNum" property="plateNum"/>
- <result column="vehicleType" property="vehicleType"/>
- <result column="sellerName" property="sellerName"/>
- <result column="sellerTaxpayerCode" property="sellerTaxpayerCode"/>
- <result column="waybillStatus" property="waybillStatus"/>
- <result column="waybillStartTime" property="waybillStartTime"/>
- <result column="waybillEndTime" property="waybillEndTime"/>
- <result column="totalAmount" property="totalAmount"/>
- <result column="taxRate" property="taxRate"/>
- <result column="invoiceType" property="invoiceType"/>
- <result column="amount" property="amount"/>
- <result column="transactionId" property="transactionId"/>
- <result column="tradeMatchTime" property="tradeMatchTime"/>
- <result column="buyerName" property="buyerName"/>
- <result column="buyerTaxpayerCode" property="buyerTaxpayerCode"/>
- <result column="billStatus" property="billStatus"/>
- <result column="calculateTime" property="calculateTime"/>
- </resultMap>
- <sql id="baseSql">
- id,
- companyNum,
- customerName,
- companyName,
- waybillNum,
- invoiceNum,
- invoiceCode,
- invoiceMakeTime,
- invoiceUrl,
- invoiceHtmlUrl,
- enStation,
- exStation,
- exTime,
- fee,
- totalTaxAmount,
- plateNum,
- vehicleType,
- sellerName,
- sellerTaxpayerCode,
- waybillStatus,
- waybillStartTime,
- waybillEndTime,
- totalAmount,
- taxRate,
- invoiceType,
- amount,
- transactionId,
- tradeMatchTime,
- buyerName,
- buyerTaxpayerCode
- </sql>
- <select id="selectAllByPage" resultMap="BaseResultMap">
- select
- <include refid="baseSql" />,(select billwayStatus from t_waybill_no f where f.billNum = waybillNum) billStatus ,(SELECT g.calculateTime from t_CalculateInfor g where g.tradeId = transactionId) calculateTime
- from t_billInvoice
- <where>
- <if test="billInvoice.companyName != null and billInvoice.companyName != ''">
- and companyName LIKE CONCAT('%',#{billInvoice.companyName},'%')
- </if>
- <if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
- and instr(#{billInvoice.waybillNum},waybillNum)>0
- </if>
- <if test="billInvoice.buyerTaxpayerCode != null and billInvoice.buyerTaxpayerCode != ''">
- and buyerTaxpayerCode = #{billInvoice.buyerTaxpayerCode}
- </if>
- <if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
- and plateNum = #{billInvoice.plateNum}
- </if>
- <if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
- and instr(#{billInvoice.invoiceCode},invoiceCode)>0
- </if>
- <if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
- and instr(#{billInvoice.invoiceNum},invoiceNum)>0
- </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>
- </where>
- </select>
- <select id="selectAllByPageByBillInvoice" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice">
- select
- <include refid="baseSql" />
- from t_billInvoice
- <where>
- <if test="waybillNum != null and waybillNum != ''">
- and waybillNum = #{waybillNum}
- </if>
- <if test="invoiceCode != null and invoiceCode != ''">
- and invoiceCode = #{invoiceCode}
- </if>
- <if test="invoiceNum != null and invoiceNum != ''">
- and invoiceNum = #{invoiceNum}
- </if>
- </where>
- </select>
- <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice" >
- insert into t_billInvoice (
- companyNum,
- customerName,
- companyName,
- waybillNum,
- invoiceNum,
- invoiceCode,
- invoiceMakeTime,
- invoiceUrl,
- invoiceHtmlUrl,
- enStation,
- exStation,
- exTime,
- fee,
- totalTaxAmount,
- plateNum,
- vehicleType,
- sellerName,
- sellerTaxpayerCode,
- waybillStatus,
- waybillStartTime,
- waybillEndTime,
- totalAmount,
- taxRate,
- invoiceType,
- amount,
- transactionId,
- tradeMatchTime,
- buyerName,
- buyerTaxpayerCode
- )
- values ( #{companyNum,jdbcType=VARCHAR},#{customerName,jdbcType=VARCHAR},#{companyName,jdbcType=VARCHAR},#{waybillNum,jdbcType=VARCHAR}, #{invoiceNum,jdbcType=VARCHAR},
- #{invoiceCode,jdbcType=VARCHAR}, #{invoiceMakeTime,jdbcType=VARCHAR}, #{invoiceUrl,jdbcType=VARCHAR},
- #{invoiceHtmlUrl,jdbcType=VARCHAR}, #{enStation,jdbcType=VARCHAR}, #{exStation,jdbcType=VARCHAR},
- #{exTime,jdbcType=VARCHAR}, #{fee,jdbcType=INTEGER}, #{totalTaxAmount,jdbcType=INTEGER},
- #{plateNum,jdbcType=VARCHAR},#{vehicleType,jdbcType=VARCHAR},#{sellerName,jdbcType=VARCHAR},
- #{sellerTaxpayerCode,jdbcType=VARCHAR},#{waybillStatus,jdbcType=INTEGER}, #{waybillStartTime,jdbcType=VARCHAR}, #{waybillEndTime,jdbcType=VARCHAR}
- , #{totalAmount,jdbcType=INTEGER}, #{taxRate,jdbcType=DOUBLE},#{invoiceType,jdbcType=VARCHAR},#{amount,jdbcType=INTEGER},
- #{transactionId,jdbcType=VARCHAR},#{tradeMatchTime,jdbcType=VARCHAR},#{buyerName,jdbcType=VARCHAR},#{buyerTaxpayerCode,jdbcType=VARCHAR}
- )
- </insert>
- <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice" >
- update t_billInvoice
- set
- companyNum = #{companyNum,jdbcType=VARCHAR},
- customerName = #{customerName,jdbcType=VARCHAR},
- companyName = #{companyName,jdbcType=VARCHAR},
- waybillNum = #{waybillNum,jdbcType=VARCHAR},
- invoiceNum = #{invoiceNum,jdbcType=VARCHAR},
- invoiceCode = #{invoiceCode,jdbcType=VARCHAR},
- invoiceMakeTime = #{invoiceMakeTime,jdbcType=VARCHAR},
- invoiceUrl = #{invoiceUrl,jdbcType=VARCHAR},
- invoiceHtmlUrl = #{invoiceHtmlUrl,jdbcType=VARCHAR},
- enStation = #{enStation,jdbcType=VARCHAR},
- exStation = #{exStation,jdbcType=VARCHAR},
- exTime = #{exTime,jdbcType=VARCHAR},
- fee = #{fee,jdbcType=INTEGER},
- totalTaxAmount = #{totalTaxAmount,jdbcType=INTEGER},
- plateNum = #{plateNum,jdbcType=VARCHAR},
- vehicleType = #{vehicleType,jdbcType=INTEGER},
- sellerName = #{sellerName,jdbcType=VARCHAR},
- sellerTaxpayerCode = #{sellerTaxpayerCode,jdbcType=VARCHAR},
- waybillStatus = #{waybillStatus,jdbcType=INTEGER},
- waybillStartTime = #{waybillStartTime,jdbcType=VARCHAR},
- waybillEndTime = #{waybillEndTime,jdbcType=VARCHAR},
- totalAmount = #{totalAmount,jdbcType=INTEGER},
- taxRate = #{taxRate,jdbcType=DOUBLE},
- invoiceType = #{invoiceType,jdbcType=VARCHAR},
- amount = #{amount,jdbcType=INTEGER},
- transactionId = #{transactionId,jdbcType=VARCHAR},
- tradeMatchTime = #{tradeMatchTime,jdbcType=VARCHAR},
- buyerName = #{buyerName,jdbcType=VARCHAR},
- buyerTaxpayerCode = #{buyerTaxpayerCode,jdbcType=VARCHAR}
- where id = #{id,jdbcType=INTEGER}
- </update>
- <update id="updateByInvoiceNum" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice" >
- update t_billInvoice
- set companyNum = #{companyNum,jdbcType=VARCHAR},
- customerName = #{customerName,jdbcType=VARCHAR},
- companyName = #{companyName,jdbcType=VARCHAR},
- waybillNum = #{waybillNum,jdbcType=VARCHAR},
- invoiceNum = #{invoiceNum,jdbcType=VARCHAR},
- invoiceCode = #{invoiceCode,jdbcType=VARCHAR},
- invoiceMakeTime = #{invoiceMakeTime,jdbcType=VARCHAR},
- invoiceUrl = #{invoiceUrl,jdbcType=VARCHAR},
- invoiceHtmlUrl = #{invoiceHtmlUrl,jdbcType=VARCHAR},
- enStation = #{enStation,jdbcType=VARCHAR},
- exStation = #{exStation,jdbcType=VARCHAR},
- exTime = #{exTime,jdbcType=VARCHAR},
- fee = #{fee,jdbcType=INTEGER},
- totalTaxAmount = #{totalTaxAmount,jdbcType=INTEGER},
- plateNum = #{plateNum,jdbcType=VARCHAR},
- vehicleType = #{vehicleType,jdbcType=INTEGER},
- sellerName = #{sellerName,jdbcType=VARCHAR},
- sellerTaxpayerCode = #{sellerTaxpayerCode,jdbcType=VARCHAR},
- waybillStatus = #{waybillStatus,jdbcType=INTEGER},
- waybillStartTime = #{waybillStartTime,jdbcType=VARCHAR},
- waybillEndTime = #{waybillEndTime,jdbcType=VARCHAR},
- totalAmount = #{totalAmount,jdbcType=INTEGER},
- taxRate = #{taxRate,jdbcType=DOUBLE},
- invoiceType = #{invoiceType,jdbcType=VARCHAR},
- amount = #{amount,jdbcType=INTEGER},
- transactionId = #{transactionId,jdbcType=VARCHAR},
- tradeMatchTime = #{tradeMatchTime,jdbcType=VARCHAR},
- buyerName = #{buyerName,jdbcType=VARCHAR},
- buyerTaxpayerCode = #{buyerTaxpayerCode,jdbcType=VARCHAR}
- where invoiceNum = #{invoiceNum,jdbcType=VARCHAR}
- </update>
- <select id="selectByBillNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
- select
- <include refid="baseSql" />
- from t_billInvoice
- where waybillNum = #{waybillNum,jdbcType=VARCHAR}
- </select>
- <select id="selectByInvoiceNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
- select
- <include refid="baseSql" />
- from t_billInvoice
- where invoiceNum = #{invoiceNum,jdbcType=VARCHAR}
- </select>
- <delete id="deleteByBillNum" parameterType="java.lang.String">
- DELETE from t_billInvoice WHERE waybillNum = #{waybillNum,jdbcType=VARCHAR}
- </delete>
- <resultMap id="staticResultMap" type="java.util.Map">
- <result column="fee" property="fee"/>
- <result column="totalTaxAmount" property="totalTaxAmount"/>
- <result column="feeCount" property="feeCount"/>
- </resultMap>
- <select id="findInvoiceStatics" resultMap="staticResultMap">
- select
- sum(totalAmount) fee,
- sum(totalTaxAmount) totalTaxAmount,
- count(DISTINCT(transactionId)) feeCount
- from t_billInvoice
- <where>
- <if test="billInvoice.companyName != null and billInvoice.companyName != ''">
- and companyName LIKE CONCAT('%',#{billInvoice.companyName},'%')
- </if>
- <if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
- and waybillNum = #{billInvoice.waybillNum}
- </if>
- <if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
- and plateNum = #{billInvoice.plateNum}
- </if>
- <if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
- and invoiceCode = #{billInvoice.invoiceCode}
- </if>
- <if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
- and invoiceNum = #{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>
- </where>
- </select>
- <select id="selectNoCarNoVoiceQuery" resultMap="BaseResultMap" parameterType="java.lang.String" >
- select
- <include refid="baseSql" />
- from t_billInvoice
- where customerName = #{customerName,jdbcType=VARCHAR}
- </select>
- </mapper>
|