BillInvoiceMapper.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.jkcredit.invoice.mapper.Binvoce.BillInvoiceMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.jkcredit.invoice.model.entity.invoice.BillInvoice">
  6. <id column="id" property="id"/>
  7. <result column="companyNum" property="companyNum"/>
  8. <result column="customerName" property="customerName"/>
  9. <result column="companyName" property="companyName"/>
  10. <result column="waybillNum" property="waybillNum"/>
  11. <result column="invoiceNum" property="invoiceNum"/>
  12. <result column="invoiceCode" property="invoiceCode"/>
  13. <result column="invoiceMakeTime" property="invoiceMakeTime"/>
  14. <result column="invoiceUrl" property="invoiceUrl"/>
  15. <result column="invoiceHtmlUrl" property="invoiceHtmlUrl"/>
  16. <result column="enStation" property="enStation"/>
  17. <result column="exStation" property="exStation"/>
  18. <result column="exTime" property="exTime"/>
  19. <result column="fee" property="fee"/>
  20. <result column="totalTaxAmount" property="totalTaxAmount"/>
  21. <result column="plateNum" property="plateNum"/>
  22. <result column="vehicleType" property="vehicleType"/>
  23. <result column="sellerName" property="sellerName"/>
  24. <result column="sellerTaxpayerCode" property="sellerTaxpayerCode"/>
  25. <result column="waybillStatus" property="waybillStatus"/>
  26. <result column="waybillStartTime" property="waybillStartTime"/>
  27. <result column="waybillEndTime" property="waybillEndTime"/>
  28. <result column="totalAmount" property="totalAmount"/>
  29. <result column="taxRate" property="taxRate"/>
  30. <result column="invoiceType" property="invoiceType"/>
  31. <result column="amount" property="amount"/>
  32. <result column="transactionId" property="transactionId"/>
  33. <result column="tradeMatchTime" property="tradeMatchTime"/>
  34. <result column="buyerName" property="buyerName"/>
  35. <result column="buyerTaxpayerCode" property="buyerTaxpayerCode"/>
  36. <result column="billStatus" property="billStatus"/>
  37. <result column="calculateTime" property="calculateTime"/>
  38. </resultMap>
  39. <sql id="baseSql">
  40. id,
  41. companyNum,
  42. customerName,
  43. companyName,
  44. waybillNum,
  45. invoiceNum,
  46. invoiceCode,
  47. invoiceMakeTime,
  48. invoiceUrl,
  49. invoiceHtmlUrl,
  50. enStation,
  51. exStation,
  52. exTime,
  53. fee,
  54. totalTaxAmount,
  55. plateNum,
  56. vehicleType,
  57. sellerName,
  58. sellerTaxpayerCode,
  59. waybillStatus,
  60. waybillStartTime,
  61. waybillEndTime,
  62. totalAmount,
  63. taxRate,
  64. invoiceType,
  65. amount,
  66. transactionId,
  67. tradeMatchTime,
  68. buyerName,
  69. buyerTaxpayerCode
  70. </sql>
  71. <select id="selectAllByPage" resultMap="BaseResultMap">
  72. select
  73. <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
  74. from t_billInvoice
  75. <where>
  76. <if test="billInvoice.companyName != null and billInvoice.companyName != ''">
  77. and companyName LIKE CONCAT('%',#{billInvoice.companyName},'%')
  78. </if>
  79. <if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
  80. and instr(#{billInvoice.waybillNum},waybillNum)>0
  81. </if>
  82. <if test="billInvoice.buyerTaxpayerCode != null and billInvoice.buyerTaxpayerCode != ''">
  83. and buyerTaxpayerCode = #{billInvoice.buyerTaxpayerCode}
  84. </if>
  85. <if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
  86. and plateNum = #{billInvoice.plateNum}
  87. </if>
  88. <if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
  89. and instr(#{billInvoice.invoiceCode},invoiceCode)>0
  90. </if>
  91. <if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
  92. and instr(#{billInvoice.invoiceNum},invoiceNum)>0
  93. </if>
  94. <if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
  95. and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
  96. </if>
  97. <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''">
  98. and exists(SELECT 1 from t_CalculateInfor g where g.tradeId = transactionId and
  99. g.calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
  100. )
  101. </if>
  102. </where>
  103. </select>
  104. <select id="selectAllByPageByBillInvoice" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice">
  105. select
  106. <include refid="baseSql" />
  107. from t_billInvoice
  108. <where>
  109. <if test="waybillNum != null and waybillNum != ''">
  110. and waybillNum = #{waybillNum}
  111. </if>
  112. <if test="invoiceCode != null and invoiceCode != ''">
  113. and invoiceCode = #{invoiceCode}
  114. </if>
  115. <if test="invoiceNum != null and invoiceNum != ''">
  116. and invoiceNum = #{invoiceNum}
  117. </if>
  118. </where>
  119. </select>
  120. <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice" >
  121. insert into t_billInvoice (
  122. companyNum,
  123. customerName,
  124. companyName,
  125. waybillNum,
  126. invoiceNum,
  127. invoiceCode,
  128. invoiceMakeTime,
  129. invoiceUrl,
  130. invoiceHtmlUrl,
  131. enStation,
  132. exStation,
  133. exTime,
  134. fee,
  135. totalTaxAmount,
  136. plateNum,
  137. vehicleType,
  138. sellerName,
  139. sellerTaxpayerCode,
  140. waybillStatus,
  141. waybillStartTime,
  142. waybillEndTime,
  143. totalAmount,
  144. taxRate,
  145. invoiceType,
  146. amount,
  147. transactionId,
  148. tradeMatchTime,
  149. buyerName,
  150. buyerTaxpayerCode
  151. )
  152. values ( #{companyNum,jdbcType=VARCHAR},#{customerName,jdbcType=VARCHAR},#{companyName,jdbcType=VARCHAR},#{waybillNum,jdbcType=VARCHAR}, #{invoiceNum,jdbcType=VARCHAR},
  153. #{invoiceCode,jdbcType=VARCHAR}, #{invoiceMakeTime,jdbcType=VARCHAR}, #{invoiceUrl,jdbcType=VARCHAR},
  154. #{invoiceHtmlUrl,jdbcType=VARCHAR}, #{enStation,jdbcType=VARCHAR}, #{exStation,jdbcType=VARCHAR},
  155. #{exTime,jdbcType=VARCHAR}, #{fee,jdbcType=INTEGER}, #{totalTaxAmount,jdbcType=INTEGER},
  156. #{plateNum,jdbcType=VARCHAR},#{vehicleType,jdbcType=VARCHAR},#{sellerName,jdbcType=VARCHAR},
  157. #{sellerTaxpayerCode,jdbcType=VARCHAR},#{waybillStatus,jdbcType=INTEGER}, #{waybillStartTime,jdbcType=VARCHAR}, #{waybillEndTime,jdbcType=VARCHAR}
  158. , #{totalAmount,jdbcType=INTEGER}, #{taxRate,jdbcType=DOUBLE},#{invoiceType,jdbcType=VARCHAR},#{amount,jdbcType=INTEGER},
  159. #{transactionId,jdbcType=VARCHAR},#{tradeMatchTime,jdbcType=VARCHAR},#{buyerName,jdbcType=VARCHAR},#{buyerTaxpayerCode,jdbcType=VARCHAR}
  160. )
  161. </insert>
  162. <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice" >
  163. update t_billInvoice
  164. set
  165. companyNum = #{companyNum,jdbcType=VARCHAR},
  166. customerName = #{customerName,jdbcType=VARCHAR},
  167. companyName = #{companyName,jdbcType=VARCHAR},
  168. waybillNum = #{waybillNum,jdbcType=VARCHAR},
  169. invoiceNum = #{invoiceNum,jdbcType=VARCHAR},
  170. invoiceCode = #{invoiceCode,jdbcType=VARCHAR},
  171. invoiceMakeTime = #{invoiceMakeTime,jdbcType=VARCHAR},
  172. invoiceUrl = #{invoiceUrl,jdbcType=VARCHAR},
  173. invoiceHtmlUrl = #{invoiceHtmlUrl,jdbcType=VARCHAR},
  174. enStation = #{enStation,jdbcType=VARCHAR},
  175. exStation = #{exStation,jdbcType=VARCHAR},
  176. exTime = #{exTime,jdbcType=VARCHAR},
  177. fee = #{fee,jdbcType=INTEGER},
  178. totalTaxAmount = #{totalTaxAmount,jdbcType=INTEGER},
  179. plateNum = #{plateNum,jdbcType=VARCHAR},
  180. vehicleType = #{vehicleType,jdbcType=INTEGER},
  181. sellerName = #{sellerName,jdbcType=VARCHAR},
  182. sellerTaxpayerCode = #{sellerTaxpayerCode,jdbcType=VARCHAR},
  183. waybillStatus = #{waybillStatus,jdbcType=INTEGER},
  184. waybillStartTime = #{waybillStartTime,jdbcType=VARCHAR},
  185. waybillEndTime = #{waybillEndTime,jdbcType=VARCHAR},
  186. totalAmount = #{totalAmount,jdbcType=INTEGER},
  187. taxRate = #{taxRate,jdbcType=DOUBLE},
  188. invoiceType = #{invoiceType,jdbcType=VARCHAR},
  189. amount = #{amount,jdbcType=INTEGER},
  190. transactionId = #{transactionId,jdbcType=VARCHAR},
  191. tradeMatchTime = #{tradeMatchTime,jdbcType=VARCHAR},
  192. buyerName = #{buyerName,jdbcType=VARCHAR},
  193. buyerTaxpayerCode = #{buyerTaxpayerCode,jdbcType=VARCHAR}
  194. where id = #{id,jdbcType=INTEGER}
  195. </update>
  196. <update id="updateByInvoiceNum" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice" >
  197. update t_billInvoice
  198. set companyNum = #{companyNum,jdbcType=VARCHAR},
  199. customerName = #{customerName,jdbcType=VARCHAR},
  200. companyName = #{companyName,jdbcType=VARCHAR},
  201. waybillNum = #{waybillNum,jdbcType=VARCHAR},
  202. invoiceNum = #{invoiceNum,jdbcType=VARCHAR},
  203. invoiceCode = #{invoiceCode,jdbcType=VARCHAR},
  204. invoiceMakeTime = #{invoiceMakeTime,jdbcType=VARCHAR},
  205. invoiceUrl = #{invoiceUrl,jdbcType=VARCHAR},
  206. invoiceHtmlUrl = #{invoiceHtmlUrl,jdbcType=VARCHAR},
  207. enStation = #{enStation,jdbcType=VARCHAR},
  208. exStation = #{exStation,jdbcType=VARCHAR},
  209. exTime = #{exTime,jdbcType=VARCHAR},
  210. fee = #{fee,jdbcType=INTEGER},
  211. totalTaxAmount = #{totalTaxAmount,jdbcType=INTEGER},
  212. plateNum = #{plateNum,jdbcType=VARCHAR},
  213. vehicleType = #{vehicleType,jdbcType=INTEGER},
  214. sellerName = #{sellerName,jdbcType=VARCHAR},
  215. sellerTaxpayerCode = #{sellerTaxpayerCode,jdbcType=VARCHAR},
  216. waybillStatus = #{waybillStatus,jdbcType=INTEGER},
  217. waybillStartTime = #{waybillStartTime,jdbcType=VARCHAR},
  218. waybillEndTime = #{waybillEndTime,jdbcType=VARCHAR},
  219. totalAmount = #{totalAmount,jdbcType=INTEGER},
  220. taxRate = #{taxRate,jdbcType=DOUBLE},
  221. invoiceType = #{invoiceType,jdbcType=VARCHAR},
  222. amount = #{amount,jdbcType=INTEGER},
  223. transactionId = #{transactionId,jdbcType=VARCHAR},
  224. tradeMatchTime = #{tradeMatchTime,jdbcType=VARCHAR},
  225. buyerName = #{buyerName,jdbcType=VARCHAR},
  226. buyerTaxpayerCode = #{buyerTaxpayerCode,jdbcType=VARCHAR}
  227. where invoiceNum = #{invoiceNum,jdbcType=VARCHAR}
  228. </update>
  229. <select id="selectByBillNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
  230. select
  231. <include refid="baseSql" />
  232. from t_billInvoice
  233. where waybillNum = #{waybillNum,jdbcType=VARCHAR}
  234. </select>
  235. <select id="selectByInvoiceNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
  236. select
  237. <include refid="baseSql" />
  238. from t_billInvoice
  239. where invoiceNum = #{invoiceNum,jdbcType=VARCHAR}
  240. </select>
  241. <delete id="deleteByBillNum" parameterType="java.lang.String">
  242. DELETE from t_billInvoice WHERE waybillNum = #{waybillNum,jdbcType=VARCHAR}
  243. </delete>
  244. <resultMap id="staticResultMap" type="java.util.Map">
  245. <result column="fee" property="fee"/>
  246. <result column="totalTaxAmount" property="totalTaxAmount"/>
  247. <result column="feeCount" property="feeCount"/>
  248. </resultMap>
  249. <select id="findInvoiceStatics" resultMap="staticResultMap">
  250. select
  251. sum(totalAmount) fee,
  252. sum(totalTaxAmount) totalTaxAmount,
  253. count(DISTINCT(transactionId)) feeCount
  254. from t_billInvoice
  255. <where>
  256. <if test="billInvoice.companyName != null and billInvoice.companyName != ''">
  257. and companyName LIKE CONCAT('%',#{billInvoice.companyName},'%')
  258. </if>
  259. <if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
  260. and waybillNum = #{billInvoice.waybillNum}
  261. </if>
  262. <if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
  263. and plateNum = #{billInvoice.plateNum}
  264. </if>
  265. <if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
  266. and invoiceCode = #{billInvoice.invoiceCode}
  267. </if>
  268. <if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
  269. and invoiceNum = #{billInvoice.invoiceNum}
  270. </if>
  271. <if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
  272. and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
  273. </if>
  274. <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''">
  275. and exists(SELECT 1 from t_CalculateInfor g where g.tradeId = transactionId and
  276. g.calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
  277. )
  278. </if>
  279. </where>
  280. </select>
  281. <select id="selectNoCarNoVoiceQuery" resultMap="BaseResultMap" parameterType="java.lang.String" >
  282. select
  283. <include refid="baseSql" />
  284. from t_billInvoice
  285. where customerName = #{customerName,jdbcType=VARCHAR}
  286. </select>
  287. </mapper>