BillInvoiceMapper.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  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. <result column="interType" property="interType"/>
  39. </resultMap>
  40. <sql id="baseSql">
  41. id,
  42. companyNum,
  43. customerName,
  44. companyName,
  45. waybillNum,
  46. invoiceNum,
  47. invoiceCode,
  48. invoiceMakeTime,
  49. invoiceUrl,
  50. invoiceHtmlUrl,
  51. enStation,
  52. exStation,
  53. exTime,
  54. fee,
  55. totalTaxAmount,
  56. plateNum,
  57. vehicleType,
  58. sellerName,
  59. sellerTaxpayerCode,
  60. waybillStatus,
  61. waybillStartTime,
  62. waybillEndTime,
  63. totalAmount,
  64. taxRate,
  65. invoiceType,
  66. amount,
  67. transactionId,
  68. tradeMatchTime,
  69. buyerName,
  70. buyerTaxpayerCode,
  71. interType
  72. </sql>
  73. <select id="selectAllByPage" resultMap="BaseResultMap">
  74. select
  75. <include refid="baseSql" />,waybillStatus billStatus,calculateTime
  76. from t_billInvoice
  77. <where>
  78. <if test="billInvoice.customerName != null and billInvoice.customerName != ''">
  79. and customerName = BINARY #{billInvoice.customerName}
  80. </if>
  81. <if test="billInvoice.companyName != null and billInvoice.companyName != ''">
  82. and buyerName = BINARY #{billInvoice.companyName}
  83. </if>
  84. <if test="billInvoice.waybillNums != null">
  85. and waybillNum IN
  86. <foreach collection="billInvoice.waybillNums" item="billNum" index="index" separator="," open="(" close=")">
  87. #{billNum}
  88. </foreach>
  89. </if>
  90. <if test="billInvoice.buyerTaxpayerCode != null and billInvoice.buyerTaxpayerCode != ''">
  91. and buyerTaxpayerCode = BINARY #{billInvoice.buyerTaxpayerCode}
  92. </if>
  93. <if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
  94. and plateNum = BINARY #{billInvoice.plateNum}
  95. </if>
  96. <if test="billInvoice.codeAndNumVos != null">
  97. and (invoiceCode,invoiceNum) IN
  98. <foreach collection="billInvoice.codeAndNumVos" item="codeAndNumVo" index="index" separator="," open="(" close=")">
  99. (#{codeAndNumVo.code},#{codeAndNumVo.num})
  100. </foreach>
  101. </if>
  102. <if test="billInvoice.codeAndNumVos == null">
  103. <if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
  104. and invoiceCode = #{billInvoice.invoiceCode}
  105. </if>
  106. <if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
  107. and invoiceNum = #{billInvoice.invoiceNum}
  108. </if>
  109. </if>
  110. <!-- <if test="billInvoice.invoiceCodes != null">
  111. and invoiceCode IN
  112. <foreach collection="billInvoice.invoiceCodes" item="invoiceCode" index="index" separator="," open="(" close=")">
  113. #{invoiceCode}
  114. </foreach>
  115. </if>
  116. <if test="billInvoice.invoiceNums != null">
  117. and invoiceNum in
  118. <foreach collection="billInvoice.invoiceNums" item="invoiceNum" index="index" separator="," open="(" close=")">
  119. #{invoiceNum}
  120. </foreach>
  121. </if>-->
  122. <if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
  123. and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
  124. </if>
  125. <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''"> and
  126. calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
  127. </if>
  128. </where>
  129. </select>
  130. <select id="selectAllByPageByBillInvoice" resultMap="BaseResultMap" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice">
  131. select
  132. <include refid="baseSql" />
  133. from t_billInvoice
  134. <where>
  135. <if test="waybillNum != null and waybillNum != ''">
  136. and waybillNum = BINARY #{waybillNum}
  137. </if>
  138. <if test="invoiceCode != null and invoiceCode != ''">
  139. and invoiceCode = BINARY #{invoiceCode}
  140. </if>
  141. <if test="invoiceNum != null and invoiceNum != ''">
  142. and invoiceNum = BINARY #{invoiceNum}
  143. </if>
  144. </where>
  145. </select>
  146. <insert id="insert" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice" >
  147. insert into t_billInvoice (
  148. companyNum,
  149. customerName,
  150. companyName,
  151. waybillNum,
  152. invoiceNum,
  153. invoiceCode,
  154. invoiceMakeTime,
  155. invoiceUrl,
  156. invoiceHtmlUrl,
  157. enStation,
  158. exStation,
  159. exTime,
  160. fee,
  161. totalTaxAmount,
  162. plateNum,
  163. vehicleType,
  164. sellerName,
  165. sellerTaxpayerCode,
  166. waybillStatus,
  167. waybillStartTime,
  168. waybillEndTime,
  169. totalAmount,
  170. taxRate,
  171. invoiceType,
  172. amount,
  173. transactionId,
  174. tradeMatchTime,
  175. buyerName,
  176. buyerTaxpayerCode,calculateTime
  177. )
  178. values ( #{companyNum,jdbcType=VARCHAR},#{customerName,jdbcType=VARCHAR},#{companyName,jdbcType=VARCHAR},#{waybillNum,jdbcType=VARCHAR}, #{invoiceNum,jdbcType=VARCHAR},
  179. #{invoiceCode,jdbcType=VARCHAR}, #{invoiceMakeTime,jdbcType=VARCHAR}, #{invoiceUrl,jdbcType=VARCHAR},
  180. #{invoiceHtmlUrl,jdbcType=VARCHAR}, #{enStation,jdbcType=VARCHAR}, #{exStation,jdbcType=VARCHAR},
  181. #{exTime,jdbcType=VARCHAR}, #{fee,jdbcType=INTEGER}, #{totalTaxAmount,jdbcType=INTEGER},
  182. #{plateNum,jdbcType=VARCHAR},#{vehicleType,jdbcType=VARCHAR},#{sellerName,jdbcType=VARCHAR},
  183. #{sellerTaxpayerCode,jdbcType=VARCHAR},#{waybillStatus,jdbcType=INTEGER}, #{waybillStartTime,jdbcType=VARCHAR}, #{waybillEndTime,jdbcType=VARCHAR}
  184. , #{totalAmount,jdbcType=INTEGER}, #{taxRate,jdbcType=DOUBLE},#{invoiceType,jdbcType=VARCHAR},#{amount,jdbcType=INTEGER},
  185. #{transactionId,jdbcType=VARCHAR},#{tradeMatchTime,jdbcType=VARCHAR},#{buyerName,jdbcType=VARCHAR},#{buyerTaxpayerCode,jdbcType=VARCHAR},#{calculateTime,jdbcType=VARCHAR}
  186. )
  187. </insert>
  188. <update id="updateByPrimaryKey" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice" >
  189. update t_billInvoice
  190. set
  191. companyNum = #{companyNum,jdbcType=VARCHAR},
  192. customerName = #{customerName,jdbcType=VARCHAR},
  193. companyName = #{companyName,jdbcType=VARCHAR},
  194. waybillNum = #{waybillNum,jdbcType=VARCHAR},
  195. invoiceNum = #{invoiceNum,jdbcType=VARCHAR},
  196. invoiceCode = #{invoiceCode,jdbcType=VARCHAR},
  197. invoiceMakeTime = #{invoiceMakeTime,jdbcType=VARCHAR},
  198. invoiceUrl = #{invoiceUrl,jdbcType=VARCHAR},
  199. invoiceHtmlUrl = #{invoiceHtmlUrl,jdbcType=VARCHAR},
  200. enStation = #{enStation,jdbcType=VARCHAR},
  201. exStation = #{exStation,jdbcType=VARCHAR},
  202. exTime = #{exTime,jdbcType=VARCHAR},
  203. fee = #{fee,jdbcType=INTEGER},
  204. totalTaxAmount = #{totalTaxAmount,jdbcType=INTEGER},
  205. plateNum = #{plateNum,jdbcType=VARCHAR},
  206. vehicleType = #{vehicleType,jdbcType=INTEGER},
  207. sellerName = #{sellerName,jdbcType=VARCHAR},
  208. sellerTaxpayerCode = #{sellerTaxpayerCode,jdbcType=VARCHAR},
  209. waybillStatus = #{waybillStatus,jdbcType=INTEGER},
  210. waybillStartTime = #{waybillStartTime,jdbcType=VARCHAR},
  211. waybillEndTime = #{waybillEndTime,jdbcType=VARCHAR},
  212. totalAmount = #{totalAmount,jdbcType=INTEGER},
  213. taxRate = #{taxRate,jdbcType=DOUBLE},
  214. invoiceType = #{invoiceType,jdbcType=VARCHAR},
  215. amount = #{amount,jdbcType=INTEGER},
  216. transactionId = #{transactionId,jdbcType=VARCHAR},
  217. tradeMatchTime = #{tradeMatchTime,jdbcType=VARCHAR},
  218. buyerName = #{buyerName,jdbcType=VARCHAR},
  219. buyerTaxpayerCode = #{buyerTaxpayerCode,jdbcType=VARCHAR},
  220. calculateTime = #{calculateTime,jdbcType=VARCHAR}
  221. where id = #{id,jdbcType=INTEGER}
  222. </update>
  223. <update id="updateByInvoiceNum" parameterType="com.jkcredit.invoice.model.entity.invoice.BillInvoice" >
  224. update t_billInvoice
  225. set companyNum = #{companyNum,jdbcType=VARCHAR},
  226. customerName = #{customerName,jdbcType=VARCHAR},
  227. companyName = #{companyName,jdbcType=VARCHAR},
  228. waybillNum = #{waybillNum,jdbcType=VARCHAR},
  229. invoiceNum = #{invoiceNum,jdbcType=VARCHAR},
  230. invoiceCode = #{invoiceCode,jdbcType=VARCHAR},
  231. invoiceMakeTime = #{invoiceMakeTime,jdbcType=VARCHAR},
  232. invoiceUrl = #{invoiceUrl,jdbcType=VARCHAR},
  233. invoiceHtmlUrl = #{invoiceHtmlUrl,jdbcType=VARCHAR},
  234. enStation = #{enStation,jdbcType=VARCHAR},
  235. exStation = #{exStation,jdbcType=VARCHAR},
  236. exTime = #{exTime,jdbcType=VARCHAR},
  237. fee = #{fee,jdbcType=INTEGER},
  238. totalTaxAmount = #{totalTaxAmount,jdbcType=INTEGER},
  239. plateNum = #{plateNum,jdbcType=VARCHAR},
  240. vehicleType = #{vehicleType,jdbcType=INTEGER},
  241. sellerName = #{sellerName,jdbcType=VARCHAR},
  242. sellerTaxpayerCode = #{sellerTaxpayerCode,jdbcType=VARCHAR},
  243. waybillStatus = #{waybillStatus,jdbcType=INTEGER},
  244. waybillStartTime = #{waybillStartTime,jdbcType=VARCHAR},
  245. waybillEndTime = #{waybillEndTime,jdbcType=VARCHAR},
  246. totalAmount = #{totalAmount,jdbcType=INTEGER},
  247. taxRate = #{taxRate,jdbcType=DOUBLE},
  248. invoiceType = #{invoiceType,jdbcType=VARCHAR},
  249. amount = #{amount,jdbcType=INTEGER},
  250. transactionId = #{transactionId,jdbcType=VARCHAR},
  251. tradeMatchTime = #{tradeMatchTime,jdbcType=VARCHAR},
  252. buyerName = #{buyerName,jdbcType=VARCHAR},
  253. buyerTaxpayerCode = #{buyerTaxpayerCode,jdbcType=VARCHAR},
  254. calculateTime = #{calculateTime,jdbcType=VARCHAR}
  255. where invoiceNum = BINARY #{invoiceNum,jdbcType=VARCHAR}
  256. </update>
  257. <select id="selectByBillNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
  258. select
  259. <include refid="baseSql" />,calculateTime
  260. from t_billInvoice
  261. where waybillNum = BINARY #{waybillNum,jdbcType=VARCHAR}
  262. </select>
  263. <select id="selectByInvoiceNum" resultMap="BaseResultMap" parameterType="java.lang.String" >
  264. select
  265. <include refid="baseSql" />,calculateTime
  266. from t_billInvoice
  267. where invoiceNum = BINARY #{invoiceNum,jdbcType=VARCHAR}
  268. </select>
  269. <delete id="deleteByBillNum" parameterType="java.lang.String">
  270. DELETE from t_billInvoice WHERE waybillNum = BINARY #{waybillNum,jdbcType=VARCHAR}
  271. </delete>
  272. <resultMap id="staticResultMap" type="java.util.Map">
  273. <result column="fee" property="fee"/>
  274. <result column="totalTaxAmount" property="totalTaxAmount"/>
  275. <result column="feeCount" property="feeCount"/>
  276. </resultMap>
  277. <select id="findInvoiceStatics" resultMap="staticResultMap">
  278. select
  279. (CASE WHEN sum(totalAmount) = '' THEN 0
  280. WHEN sum(totalAmount) is null THEN 0
  281. WHEN sum(totalAmount) is not null THEN sum(totalAmount)
  282. ELSE sum(totalAmount) END)as fee,
  283. (CASE WHEN sum(totalTaxAmount) = '' THEN 0
  284. WHEN sum(totalTaxAmount) is null THEN 0
  285. WHEN sum(totalTaxAmount) is not null THEN sum(totalTaxAmount)
  286. ELSE sum(totalTaxAmount) END)as totalTaxAmount,
  287. count(DISTINCT(transactionId)) feeCount
  288. from t_billInvoice
  289. <where>
  290. <if test="billInvoice.companyName != null and billInvoice.companyName != ''">
  291. and buyerName = BINARY #{billInvoice.companyName}
  292. </if>
  293. <if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
  294. and waybillNum = BINARY #{billInvoice.waybillNum}
  295. </if>
  296. <if test="billInvoice.plateNum != null and billInvoice.plateNum != ''">
  297. and plateNum = BINARY #{billInvoice.plateNum}
  298. </if>
  299. <if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
  300. and invoiceCode = BINARY #{billInvoice.invoiceCode}
  301. </if>
  302. <if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
  303. and invoiceNum = BINARY #{billInvoice.invoiceNum}
  304. </if>
  305. <if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
  306. and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}
  307. </if>
  308. <if test="billInvoice.calculateTimeStart != null and billInvoice.calculateTimeStart != ''"> and
  309. calculateTime BETWEEN #{billInvoice.calculateTimeStart} and #{billInvoice.calculateTimeEnd}
  310. </if>
  311. </where>
  312. </select>
  313. <select id="selectNoCarNoVoiceQuery" resultMap="BaseResultMap" parameterType="java.lang.String" >
  314. select
  315. <include refid="baseSql" />
  316. from t_billInvoice
  317. where customerName = BINARY #{customerName,jdbcType=VARCHAR}
  318. </select>
  319. <update id="upDateCompany" parameterType="com.jkcredit.invoice.model.vo.CompanyVo">
  320. UPDATE t_billInvoice set companyName = #{newCompanyName} where companyName = #{oldCompanyName}
  321. </update>
  322. </mapper>