PayChargeSurveyMapper.xml 22 KB

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