PayChargeSurveyMapper.xml 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  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.bz.smart_city.dao.pay.PayChargeSurveyMapper">
  4. <select id="getAccountCount" resultType="java.lang.Integer">
  5. select count(a.id) from pay_account_survey a
  6. </select>
  7. <select id="getlastNumber" resultType="com.bz.smart_city.entity.pay.PayAccountSurvey">
  8. select
  9. a.account_number as "accountNumber",
  10. a.meter_number as "meterNumber",
  11. a.customer_number as "customerNumber"
  12. from pay_account_survey a
  13. <where>
  14. <if test="year != null">
  15. and a.year =#{year}
  16. </if>
  17. <if test="month != null">
  18. and a.month =#{month}
  19. </if>
  20. <if test="siteId != null">
  21. and a.site_id =#{siteId}
  22. </if>
  23. <if test="customerId != null">
  24. and a.customer_id =#{customerId}
  25. </if>
  26. </where>
  27. </select>
  28. <select id="getAccountNumber" resultType="java.lang.Integer">
  29. select
  30. count(1)
  31. from pay_base_account
  32. <where>
  33. state != '3'
  34. <if test="startDate != null and startDate != ''">
  35. and convert(create_date,DATETIME) &gt;=#{startDate}
  36. </if>
  37. <if test="endDate != null and endDate != ''">
  38. and convert(create_date,DATETIME) &lt;=#{endDate}
  39. </if>
  40. <if test="siteId != null">
  41. and site_id =#{siteId}
  42. </if>
  43. <if test="customerId != null">
  44. and customer_id =#{customerId}
  45. </if>
  46. order by create_date asc
  47. </where>
  48. </select>
  49. <select id="getMeterNumber" resultType="java.lang.Integer">
  50. select count(1)
  51. from sc_device scd
  52. left join sc_install_list scinstall on scd.id = scinstall.device_id and scinstall.customer_id=#{customerId}
  53. left JOIN sc_device_type sdt on sdt.id = scd.device_type
  54. left join sc_device_manufacturer sdm on sdm.id = sdt.manufacturer_id and sdm.`status`=1
  55. left join pay_base_account pba on pba.id = scd.account_id and pba.site_id=#{siteId} and pba.customer_id=#{customerId}
  56. left join pay_base_customerandmeterrela ppr on ppr.metercode = scd.metercode and ppr.site_id=#{siteId} and ppr.customer_id=#{customerId}
  57. left join
  58. (SELECT a.watermeter_id,a.reading FROM pay_amount_waterusedamount_day AS a,
  59. (SELECT b.watermeter_id, MAX(b.read_date) AS read_date FROM pay_amount_waterusedamount_day AS b
  60. where b.reading is not null and b.customer_id=#{customerId} and b.site_id=#{siteId}
  61. GROUP BY b.watermeter_id)
  62. AS c WHERE a.watermeter_id=c.watermeter_id AND a.read_date = c.read_date) rd on rd.watermeter_id = scd.id
  63. <where>
  64. scd.customer_id =#{customerId} and scd.account_id is not null
  65. <if test="startDate != null">
  66. and scinstall.date_create &gt;=#{startDate}
  67. </if>
  68. <if test="endDate != null">
  69. and scinstall.date_create &lt;=#{endDate}
  70. </if>
  71. and(scinstall.is_accepted = 1 or scinstall.is_accepted = 2)
  72. </where>
  73. </select>
  74. <select id="getCustomerNumber" resultType="java.lang.Integer">
  75. select
  76. count(customer.id)
  77. from pay_base_customerandmeterrela customer
  78. <where>
  79. customer.businessstate = '1'
  80. <if test="startDate != null and startDate != ''">
  81. and convert(customer.create_date,DATETIME) &gt;=#{startDate}
  82. </if>
  83. <if test="endDate != null and endDate != ''">
  84. and convert(customer.create_date,DATETIME) &lt;=#{endDate}
  85. </if>
  86. <if test="siteId != null">
  87. and customer.site_id =#{siteId}
  88. </if>
  89. <if test="customerId != null">
  90. and customer.customer_id =#{customerId}
  91. </if>
  92. </where>
  93. </select>
  94. <insert id="insertAccountNumber">
  95. insert into pay_account_survey
  96. (
  97. id,
  98. account_number,
  99. last_account_number,
  100. meter_number,
  101. last_meter_number,
  102. customer_number,
  103. last_customer_number,
  104. site_id,
  105. customer_id,
  106. create_by,
  107. create_date,
  108. update_by,
  109. update_date,
  110. remarks,
  111. del_flag,
  112. year,
  113. month,
  114. period_date
  115. )
  116. values
  117. (
  118. #{id},
  119. #{accountNumber},
  120. #{lastAccountNumber},
  121. #{meterNumber},
  122. #{lastMeterNumber},
  123. #{customerNumber},
  124. #{lastCustomerNumber},
  125. #{siteId},
  126. #{customerId},
  127. #{createBy},
  128. #{createDate},
  129. #{updateBy},
  130. #{updateDate},
  131. #{remarks},
  132. #{delFlag},
  133. #{year},
  134. #{month},
  135. #{periodDate}
  136. )
  137. </insert>
  138. <select id="getAccountList" resultType="com.bz.smart_city.dto.pay.PayChangePeriodDto">
  139. select
  140. a.account_number as 'accountNumber',
  141. a.meter_number as 'meterNumber',
  142. a.customer_Number as 'customerNumber',
  143. a.year as 'year',
  144. a.month as 'month'
  145. from pay_account_survey a
  146. <where>
  147. <if test="startDate != null">
  148. and CONVERT( a.period_date, DATETIME ) >=#{startDate}
  149. </if>
  150. <if test="endDate != null">
  151. and CONVERT( a.period_date, DATETIME ) &lt;=#{endDate}
  152. </if>
  153. <if test="siteId != null">
  154. and a.site_id =#{siteId}
  155. </if>
  156. <if test="customerId != null">
  157. and a.customer_id =#{customerId}
  158. </if>
  159. </where>
  160. ORDER BY a.period_date desc
  161. </select>
  162. <select id="getlastAccount" resultType="com.bz.smart_city.entity.pay.PayAccountSurvey">
  163. select
  164. IFNULL(sum(a.account_number),0) as "accountNumber",
  165. IFNULL(sum(a.meter_number),0) as "meterNumber",
  166. IFNULL(sum(a.customer_number),0) as "customerNumber"
  167. from pay_account_survey a
  168. <where>
  169. <if test="periodDate != null">
  170. and CONVERT( a.period_date, DATETIME ) =#{periodDate}
  171. </if>
  172. <if test="siteId != null">
  173. and a.site_id =#{siteId}
  174. </if>
  175. <if test="customerId != null">
  176. and a.customer_id =#{customerId}
  177. </if>
  178. </where>
  179. </select>
  180. <select id="getCurrentTran" resultType="java.math.BigDecimal">
  181. select
  182. IFNULL(sum(transamount),0)
  183. from pay_pay_transactiondetails a
  184. <where>
  185. <!-- 排除退款跟预存抵扣-->
  186. a.state = 1 and canceledrecord_id is null and iscanceled = 0
  187. and (a.payway = 1 or a.payway = 2 or a.payway=3 or a.payway = 4)
  188. <if test="siteId != null">
  189. and a.site_id =#{siteId}
  190. </if>
  191. <if test="customerId != null">
  192. and a.customer_id =#{customerId}
  193. </if>
  194. <if test="year != null">
  195. and a.year =#{year}
  196. </if>
  197. <if test="month != null">
  198. and a.month =#{month}
  199. </if>
  200. </where>
  201. </select>
  202. <select id="getReceivedCurrent" resultType="java.math.BigDecimal">
  203. select
  204. IFNULL(sum(receivedamount),0)
  205. from pay_pay_received a
  206. <where>
  207. <!-- 排除退款跟预存抵扣-->
  208. canceledrecord_id is null and iscanceled = 0
  209. and (a.payway = 1 or a.payway = 2 or a.payway=3 or a.payway = 4)
  210. <if test="siteId != null">
  211. and a.site_id =#{siteId}
  212. </if>
  213. <if test="customerId != null">
  214. and a.customer_id =#{customerId}
  215. </if>
  216. <if test="year != null">
  217. and a.year =#{year}
  218. </if>
  219. <if test="month != null">
  220. and a.month =#{month}
  221. </if>
  222. </where>
  223. </select>
  224. <select id="getPayAmountList" resultType="com.bz.smart_city.entity.pay.PayTransactionSurvey">
  225. select
  226. case when a.payway = 1 then sum(transamount)
  227. when a.payway = 2 then sum(transamount)
  228. when a.payway = 3 then sum(transamount)
  229. when a.payway = 4 then sum(transamount)
  230. else sum(transamount) end as "incomeNumber",
  231. payway
  232. from pay_pay_transactiondetails a
  233. <where>
  234. a.payway != 5 and a.state = 1 and canceledrecord_id is null and iscanceled = 0
  235. <if test="year != null">
  236. and a.year =#{year}
  237. </if>
  238. <if test="month != null">
  239. and a.month =#{month}
  240. </if>
  241. <if test="siteId != null">
  242. and a.site_id =#{siteId}
  243. </if>
  244. <if test="customerId != null">
  245. and a.customer_id =#{customerId}
  246. </if>
  247. </where>
  248. GROUP BY a.payway
  249. </select>
  250. <insert id="insertTransaction">
  251. insert into pay_transaction_survey
  252. (
  253. id,
  254. income_number,
  255. last_income_number,
  256. cash_income,
  257. last_cash_income,
  258. wechat_income,
  259. last_wechat_income,
  260. alipay_income,
  261. last_alipay_income,
  262. bank_income,
  263. last_bank_income,
  264. year,
  265. month,
  266. period_date,
  267. site_id,
  268. customer_id,
  269. create_by,
  270. create_date,
  271. update_by,
  272. update_date,
  273. remarks,
  274. del_flag
  275. )
  276. values
  277. (
  278. #{id},
  279. #{incomeNumber},
  280. #{lastIncomeNumber},
  281. #{cashIncome},
  282. #{lastCashIncome},
  283. #{wechatIncome},
  284. #{lastWechatIncome},
  285. #{alipayIncome},
  286. #{lastAlipayIncome},
  287. #{bankIncome},
  288. #{lastBankIncome},
  289. #{year},
  290. #{month},
  291. #{periodDate},
  292. #{siteId},
  293. #{customerId},
  294. #{createBy},
  295. #{createDate},
  296. #{updateBy},
  297. #{updateDate},
  298. #{remarks},
  299. #{delFlag}
  300. )
  301. </insert>
  302. <select id="getCurrentTranRocord" resultType="com.bz.smart_city.entity.pay.PayTransactionSurvey">
  303. select
  304. case when a.payway = 1 then sum(transamount)
  305. when a.payway = 2 then sum(transamount)
  306. when a.payway = 3 then sum(transamount)
  307. when a.payway = 4 then sum(transamount)
  308. end as "incomeNumber",
  309. payway as "payway"
  310. from pay_pay_transactiondetails a
  311. <where>
  312. a.payway != 5 and a.state = 1 and canceledrecord_id is null and iscanceled = 0
  313. <if test="year != null">
  314. and a.year =#{year}
  315. </if>
  316. <if test="month != null">
  317. and a.month =#{month}
  318. </if>
  319. <if test="siteId != null">
  320. and a.site_id =#{siteId}
  321. </if>
  322. <if test="customerId != null">
  323. and a.customer_id =#{customerId}
  324. </if>
  325. </where>
  326. GROUP BY a.payway
  327. </select>
  328. <select id="getCurrentReceived" resultType="com.bz.smart_city.entity.pay.PayTransactionSurvey">
  329. select
  330. case when a.payway = 1 then sum(receivedamount)
  331. when a.payway = 2 then sum(receivedamount)
  332. when a.payway = 3 then sum(receivedamount)
  333. when a.payway = 4 then sum(receivedamount)
  334. end as "incomeNumber",
  335. payway as "payway"
  336. from pay_pay_received a
  337. <where>
  338. a.payway != 5 and a.state = 1 and canceledrecord_id is null and iscanceled = 0
  339. <if test="year != null">
  340. and a.year =#{year}
  341. </if>
  342. <if test="month != null">
  343. and a.month =#{month}
  344. </if>
  345. <if test="siteId != null">
  346. and a.site_id =#{siteId}
  347. </if>
  348. <if test="customerId != null">
  349. and a.customer_id =#{customerId}
  350. </if>
  351. </where>
  352. GROUP BY a.payway
  353. </select>
  354. <select id="getLastTranRocord" resultType="com.bz.smart_city.entity.pay.PayTransactionSurvey">
  355. select
  356. income_number as "incomeNumber",
  357. last_income_number as "lastIncomeNumber",
  358. cash_income as "cashIncome",
  359. last_cash_income as "lastCashIncome",
  360. wechat_income as "wechatIncome",
  361. last_wechat_income as "lastWechatIncome",
  362. alipay_income as "alipayIncome",
  363. last_alipay_income as "lastAlipayIncome",
  364. bank_income as "bankIncome",
  365. last_bank_income as "lastBankIncome",
  366. year as "year",
  367. month as "month"
  368. from pay_transaction_survey a
  369. <where>
  370. <if test="year != null">
  371. and a.year =#{year}
  372. </if>
  373. <if test="month != null">
  374. and a.month =#{month}
  375. </if>
  376. <if test="siteId != null">
  377. and a.site_id =#{siteId}
  378. </if>
  379. <if test="customerId != null">
  380. and a.customer_id =#{customerId}
  381. </if>
  382. </where>
  383. </select>
  384. <select id="getSumReceivable" resultType="com.bz.smart_city.entity.pay.PayChargeSurvey">
  385. select
  386. IFNULL(sum(receivablefee),0) as "receivableNumber",
  387. IFNULL(sum(debt),0) as "debtNumber"
  388. from pay_pay_receivable a
  389. <where>
  390. <if test="year != null">
  391. and a.year =#{year}
  392. </if>
  393. <if test="month != null">
  394. and a.month =#{month}
  395. </if>
  396. <if test="siteId != null">
  397. and a.site_id =#{siteId}
  398. </if>
  399. <if test="customerId != null">
  400. and a.customer_id =#{customerId}
  401. </if>
  402. </where>
  403. </select>
  404. <select id="getSumReceived" resultType="java.math.BigDecimal">
  405. select IFNULL(sum(receivedamount),0) from pay_pay_received a
  406. <where>
  407. a.payway != 5
  408. AND a.state = 1
  409. AND canceledrecord_id IS NULL
  410. AND iscanceled = 0
  411. <if test="year != null">
  412. and a.year =#{year}
  413. </if>
  414. <if test="month != null">
  415. and a.month =#{month}
  416. </if>
  417. <if test="siteId != null">
  418. and a.site_id =#{siteId}
  419. </if>
  420. <if test="customerId != null">
  421. and a.customer_id =#{customerId}
  422. </if>
  423. </where>
  424. </select>
  425. <select id="getSumPrestore" resultType="java.math.BigDecimal">
  426. select IFNULL(sum(transamount),0) from pay_pay_transactiondetails a
  427. <where>
  428. (transtype = '1' or transtype = '4') and canceledrecord_id is null and iscanceled = 0
  429. <if test="year != null">
  430. and a.year =#{year}
  431. </if>
  432. <if test="month != null">
  433. and a.month =#{month}
  434. </if>
  435. <if test="siteId != null">
  436. and a.site_id =#{siteId}
  437. </if>
  438. <if test="customerId != null">
  439. and a.customer_id =#{customerId}
  440. </if>
  441. </where>
  442. </select>
  443. <insert id="insertFeeSummary">
  444. insert into pay_charge_survey
  445. (
  446. id,
  447. receivable_number,
  448. received_number,
  449. recharge_number,
  450. debt_number,
  451. year,
  452. month,
  453. period_date,
  454. site_id,
  455. customer_id,
  456. create_by,
  457. create_date,
  458. update_by,
  459. update_date,
  460. remarks,
  461. del_flag
  462. )
  463. values
  464. (
  465. #{id},
  466. #{receivableNumber},
  467. #{receivedNumber},
  468. #{rechargeNumber},
  469. #{debtNumber},
  470. #{year},
  471. #{month},
  472. #{periodDate},
  473. #{siteId},
  474. #{customerId},
  475. #{createBy},
  476. #{createDate},
  477. #{updateBy},
  478. #{updateDate},
  479. #{remarks},
  480. #{delFlag}
  481. )
  482. </insert>
  483. <select id="getFeeGroup" resultType="com.bz.smart_city.entity.pay.PayFeeSuevey">
  484. select
  485. a.receivable_number as "sumReceivable",
  486. a.received_number as "sumReceived",
  487. a.recharge_number as "sumRecharge",
  488. a.debt_number as "sumDebt",
  489. a.year as "year",
  490. a.month as "month",
  491. concat(a.year,'-',LPAD(a.month, 2, 0)) as "periodDate"
  492. from pay_charge_survey a
  493. <where>
  494. <if test="year != null">
  495. and a.year =#{year}
  496. </if>
  497. <if test="month != null">
  498. and a.month =#{month}
  499. </if>
  500. <if test="siteId != null">
  501. and a.site_id =#{siteId}
  502. </if>
  503. <if test="customerId != null">
  504. and a.customer_id =#{customerId}
  505. </if>
  506. </where>
  507. ORDER BY a.period_date desc LIMIT 11
  508. </select>
  509. <select id="getAmountInfo" resultType="java.math.BigDecimal">
  510. select
  511. IFNULL(sum(payamount),0)
  512. from pay_amount_waterusedamount a
  513. <where>
  514. <if test="startDate != null">
  515. and concat(a.year,'-',LPAD(a.month, 2, 0)) &gt;=#{startDate}
  516. </if>
  517. <if test="endDate != null">
  518. and concat(a.year,'-',LPAD(a.month, 2, 0)) &lt;=#{endDate}
  519. </if>
  520. <if test="siteId != null">
  521. and a.site_id =#{siteId}
  522. </if>
  523. <if test="customerId != null">
  524. and a.customer_id =#{customerId}
  525. </if>
  526. </where>
  527. </select>
  528. <select id="getAmountSureyInfo" resultType="java.math.BigDecimal">
  529. select
  530. IFNULL(sum(amount_number),0)
  531. from pay_amount_survey a
  532. <where>
  533. <if test="startDate != null">
  534. and CONVERT( a.period_date, DATETIME ) &gt;=#{startDate}
  535. </if>
  536. <if test="endDate != null">
  537. and CONVERT( a.period_date, DATETIME ) &lt;=#{endDate}
  538. </if>
  539. <if test="siteId != null">
  540. and a.site_id =#{siteId}
  541. </if>
  542. <if test="customerId != null">
  543. and a.customer_id =#{customerId}
  544. </if>
  545. </where>
  546. </select>
  547. <select id="getAmountMonth" resultType="java.math.BigDecimal">
  548. select
  549. IFNULL(sum(payamount),0)
  550. from pay_amount_waterusedamount a
  551. <where>
  552. <if test="siteId != null">
  553. and a.site_id =#{siteId}
  554. </if>
  555. <if test="customerId != null">
  556. and a.customer_id =#{customerId}
  557. </if>
  558. <if test="year != null">
  559. and a.year =#{year}
  560. </if>
  561. <if test="month != null">
  562. and a.month =#{month}
  563. </if>
  564. </where>
  565. </select>
  566. <select id="getAmountMonthSurvey" resultType="java.math.BigDecimal">
  567. select
  568. IFNULL(sum(amount_number),0)
  569. from pay_amount_survey a
  570. <where>
  571. <if test="siteId != null">
  572. and a.site_id =#{siteId}
  573. </if>
  574. <if test="customerId != null">
  575. and a.customer_id =#{customerId}
  576. </if>
  577. <if test="year != null">
  578. and a.year =#{year}
  579. </if>
  580. <if test="month != null">
  581. and a.month =#{month}
  582. </if>
  583. </where>
  584. </select>
  585. <select id="getAmountGroupList" resultType="com.bz.smart_city.dto.pay.PayAmountSurveyListDto">
  586. select
  587. IFNULL(a.amount_number,0) as "sumAmount",
  588. a.year as "year",
  589. a.month as "month",
  590. concat(a.year,'-',LPAD(a.month, 2, 0)) as "periodDate"
  591. from pay_amount_survey a
  592. <where>
  593. <if test="siteId != null">
  594. and a.site_id =#{siteId}
  595. </if>
  596. <if test="customerId != null">
  597. and a.customer_id =#{customerId}
  598. </if>
  599. </where>
  600. ORDER BY a.period_date desc LIMIT 11
  601. </select>
  602. <insert id="insertAmount">
  603. insert into pay_amount_survey
  604. (
  605. id,
  606. amount_number,
  607. last_amount_number,
  608. year,
  609. month,
  610. period_date,
  611. site_id,
  612. customer_id,
  613. create_by,
  614. create_date,
  615. update_by,
  616. update_date,
  617. remarks,
  618. del_flag
  619. )
  620. values
  621. (
  622. #{id},
  623. #{amountNumber},
  624. #{lastAmountNumber},
  625. #{year},
  626. #{month},
  627. #{periodDate},
  628. #{siteId},
  629. #{customerId},
  630. #{createBy},
  631. #{createDate},
  632. #{updateBy},
  633. #{updateDate},
  634. #{remarks},
  635. #{delFlag}
  636. )
  637. </insert>
  638. </mapper>