Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

288 строки
15 KiB

  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.iformall.mapper.WxBillPropertyMapper">
  4. <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxBillProperty">
  5. <id column="id" jdbcType="INTEGER" property="id" />
  6. <result column="tenant_id" jdbcType="VARCHAR" property="tenantId" />
  7. <result column="property_contract_id" jdbcType="INTEGER" property="propertyContractId" />
  8. <result column="receive_pay" jdbcType="BIGINT" property="receivePay"/>
  9. <result column="pay" jdbcType="BIGINT" property="pay"/>
  10. <result column="receive_date" jdbcType="TIMESTAMP" property="receiveDate" />
  11. <result column="pay_date" jdbcType="TIMESTAMP" property="payDate" />
  12. <result column="createtime" jdbcType="TIMESTAMP" property="createtime" />
  13. <result column="expired_day" jdbcType="INTEGER" property="expiredDay" />
  14. <result column="owe" jdbcType="BIGINT" property="owe"/>
  15. <result column="status" jdbcType="INTEGER" property="status" />
  16. <result column="is_del" jdbcType="INTEGER" property="isDel" />
  17. <result column="need_pay" jdbcType="BIGINT" property="needPay"/>
  18. <result column="merchant_id" jdbcType="INTEGER" property="merchantId" />
  19. <result column="user_id" jdbcType="INTEGER" property="userId" />
  20. <result column="shop_id" jdbcType="INTEGER" property="shopId" />
  21. <result column="updatetime" jdbcType="TIMESTAMP" property="updatetime" />
  22. <result column="rent_shop_type" jdbcType="INTEGER" property="rentShopType"/>
  23. <result column="revenue" jdbcType="BIGINT" property="revenue"/>
  24. <result column="late_pay_ratio" jdbcType="INTEGER" property="latePayRatio"/>
  25. <result column="late_pay_time" jdbcType="TIMESTAMP" property="latePayTime"/>
  26. <result column="late_pay_price" jdbcType="BIGINT" property="latePayPrice"/>
  27. <result column="period" jdbcType="INTEGER" property="period"/>
  28. <result column="is_preview" property="isPreview"/>
  29. <result column="shop_info" jdbcType="VARCHAR" property="shopInfo"/>
  30. <result column="pay_way" jdbcType="INTEGER" property="payWay"/>
  31. <result column="late_pay_status" jdbcType="INTEGER" property="latePayStatus"/>
  32. <result column="comments" jdbcType="VARCHAR" property="comments"/>
  33. <result column="starttime" property="starttime"/>
  34. <result column="endtime" property="endtime"/>
  35. <result column="merchant_name" property="merchantName"/>
  36. <result column="deposit" property="deposit"/>
  37. <result column="deposit_status" property="depositStatus"/>
  38. <result column="all_period" property="allPeriod"/>
  39. <result column="late_pay_day" property="latePayDay"/>
  40. <result column="late_pay_ratio" property="latePayRatio"/>
  41. <result column="freeze" property="freeze"/>
  42. <result column="service_charge_pay" property="serviceChargePay"/>
  43. </resultMap>
  44. <sql id="allColumns">
  45. `id`,`tenant_id`,`property_contract_id`,`receive_pay`,`pay`,`receive_date`,`pay_date`,
  46. `createtime`,`expired_day`,`tenant_id`,`owe`,`status`,`is_del`,`need_pay`,
  47. `merchant_id`,`user_id`,`shop_id`,`updatetime`,`rent_shop_type`,
  48. `revenue`,`late_pay_ratio`,`late_pay_time`,`late_pay_price`,`period`,`is_preview`,`shop_info`,
  49. `pay_way`,`late_pay_status`,`comments`,starttime,endtime,freeze,service_charge_pay
  50. </sql>
  51. <sql id="dynamicWhereConditions">
  52. where 1=1
  53. <if test=" null != id "> and `id` = #{id} </if>
  54. <if test=" null != propertyContractId "> and `property_contract_id` = #{propertyContractId} </if>
  55. <if test=" null != receivePay "> and `receive_pay` = #{receivePay} </if>
  56. <if test=" null != pay "> and `pay` = #{pay} </if>
  57. <if test=" null != receiveDate "> and `receive_date` = #{receiveDate} </if>
  58. <if test=" null != payDate "> and `pay_date` = #{payDate} </if>
  59. <if test=" null != createtime "> and `createtime` = #{createtime} </if>
  60. <if test=" null != expiredDay "> and `expired_day` = #{expiredDay} </if>
  61. <if test=" null != tenantId "> and `tenant_id` = #{tenantId} </if>
  62. <if test=" null != owe "> and `owe` = #{owe} </if>
  63. <if test=" null != status "> and `status` = #{status} </if>
  64. <if test=" null != isDel "> and `is_del` = #{isDel} </if>
  65. <if test=" null != needPay "> and `need_pay` = #{needPay} </if>
  66. <if test=" null != merchantId "> and `merchant_id` = #{merchantId} </if>
  67. <if test=" null != userId "> and `user_id` = #{userId} </if>
  68. <if test=" null != shopId "> and `shop_id` = #{shopId} </if>
  69. <if test=" null != updatetime ">and `updatetime` = #{updatetime}</if>
  70. <if test=" null != rentShopType ">and `rent_shop_type` = #{rentShopType}</if>
  71. <if test=" null != isPreview ">and is_preview = #{isPreview}</if>
  72. <if test=" null != payWay ">and `pay_way` = #{payWay}</if>
  73. <if test=" null != latePayStatus ">and `late_pay_status` = #{latePayStatus}</if>
  74. <if test=" null != ids ">
  75. and id in
  76. <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
  77. #{idItem}
  78. </foreach>
  79. </if>
  80. <if test=" null != sortColumns"> order by ${sortColumns} </if>
  81. </sql>
  82. <select id="findList" parameterType="com.iformall.domain.po.WxBillProperty" resultMap="BaseResultMap">
  83. select <include refid="allColumns" /> from wx_bill_property
  84. <include refid="dynamicWhereConditions" />
  85. </select>
  86. <select id="queryBillPropertyList" parameterType="com.iformall.domain.po.WxBillProperty" resultMap="BaseResultMap">
  87. select br.`id`,br.`receive_pay`,br.`pay`,br.`receive_date`,br.`pay_date`,br.`createtime`,br.`expired_day`,
  88. case when br.status=1 then br.owe else 0 end owe,br.`status`,br.`need_pay`,m.`name`
  89. merchant_name,s.shop_number,br.`updatetime`,br.`merchant_id`,br.`rent_shop_type`,br.`period`,
  90. br.`revenue`,r.`late_pay_ratio`,br.`late_pay_time`,br.`property_contract_id`,d.receive_pay deposit,
  91. br.late_pay_price,d.`status`
  92. deposit_status,br.`shop_info`,br.pay_way,br.late_pay_status,
  93. br.`comments`,br.starttime,br.endtime,
  94. r.late_pay_day,r.late_pay_ratio,br.freeze,br.service_charge_pay
  95. from wx_bill_property br left join wx_merchant m on br.merchant_id=m.id
  96. left join wx_shop s on br.shop_id=s.id
  97. left join wx_property_contract r on br.property_contract_id=r.id
  98. left join wx_bill_property_deposit d on br.property_contract_id=d.property_contract_id
  99. <where>
  100. br.is_preview = 0
  101. <if test=" null != freeze ">and br.`freeze` = #{freeze}</if>
  102. <if test=" null != id ">and br.`id` = #{id}</if>
  103. <if test=" null != merchantId ">and br.`merchant_id` = #{merchantId}</if>
  104. <if test=" null != merchantName and ''!=merchantName ">and m.`name` like concat('%',#{merchantName},'%')</if>
  105. <if test=" null != status ">and br.`status` = #{status}</if>
  106. <if test=" null != isDel ">and br.`is_del` = #{isDel}</if>
  107. <if test=" null != starttime and null!=endtime ">and br.`receive_date` between #{starttime} and #{endtime}</if>
  108. <if test=" null != rentShopType ">and br.`rent_shop_type` = #{rentShopType}</if>
  109. <if test=" null != propertyContractId ">and br.`property_contract_id` = #{propertyContractId}</if>
  110. <if test=" null != payWay ">and br.`pay_way` = #{payWay}</if>
  111. <if test=" null != latePayStatus ">and br.`late_pay_status` = #{latePayStatus}</if>
  112. <if test=" null != latePayStatus ">and br.`late_pay_status` = #{latePayStatus}</if>
  113. <if test=" null != depositStatus ">and d.`status` = #{depositStatus}</if>
  114. </where>
  115. <if test=" null != sortColumns">order by ${sortColumns}</if>
  116. </select>
  117. <select id="queryPayInfo" resultType="hashmap" parameterType="hashmap">
  118. select IFNULL(sum(receive_pay),0) receivepay,IFNULL(sum(pay),0) pay,tenant_id from wx_bill_property
  119. where tenant_id=#{tenantId}
  120. and receive_date between #{startdate} and #{enddate} and is_preview = 0 and status!=6
  121. group by tenant_id
  122. </select>
  123. <select id="queryPayInfoTotal" resultType="hashmap" parameterType="hashmap">
  124. select IFNULL(sum(receive_pay),0) receivepay,IFNULL(sum(pay),0) pay,tenant_id from wx_bill_property
  125. where tenant_id=#{tenantId}
  126. and receive_date between #{startdate} and #{enddate} and is_preview = 0 and status!=6
  127. </select>
  128. <select id="queryOweInfo" resultType="hashmap" parameterType="hashmap">
  129. select IFNULL(sum(owe),0) owe,tenant_id from wx_bill_property
  130. where status = 1 and tenant_id=#{tenantId}
  131. and receive_date between #{startdate} and #{enddate} and is_preview = 0 and status!=6
  132. </select>
  133. <update id="updateNotPaidStatus" parameterType="hashmap">
  134. update wx_bill_property b set b.status=#{notPaid},b.expired_day=
  135. DATEDIFF(now(), b.receive_date)
  136. where b.tenant_id=#{tenantId}
  137. and b.status!=#{paid} and b.status!=6 and
  138. DATEDIFF(now(), b.receive_date) >0
  139. </update>
  140. <update id="updateWaitPayStatus" parameterType="hashmap">
  141. update wx_bill_property set status=#{waitPay} where id in(
  142. select a.id from (select br.id,rc.receive_period,br.property_contract_id,br.receive_date from wx_bill_property br
  143. left join wx_property_contract rc on br.property_contract_id=rc.id
  144. where br.tenant_id=#{tenantId}
  145. and br.status!=#{paid} and br.status != 6 and now() &lt; br.receive_date
  146. and DATE_ADD(now(),INTERVAL 1 MONTH)>br.receive_date) a)
  147. </update>
  148. <update id="updateInvalidStatus" parameterType="com.iformall.domain.po.WxBillProperty">
  149. update wx_bill_property set status = 6 where property_contract_id = #{propertyContractId}
  150. and status in(4,2)
  151. </update>
  152. <update id="updateInvalidStatusByRent" parameterType="com.iformall.domain.po.WxRentContract">
  153. update wx_bill_property set status = 6 where property_contract_id in
  154. (select id from wx_property_contract where rent_contract_id = #{id})
  155. and status != 3
  156. </update>
  157. <delete id="deletePreviewBill" parameterType="com.iformall.domain.po.WxPropertyContract">
  158. delete from wx_bill_property where property_contract_id = #{id}
  159. </delete>
  160. <update id="updateForReceivePay" parameterType="com.iformall.domain.po.WxBillProperty">
  161. update wx_bill_property set updatetime = now()
  162. <if test=" null != receivePay ">,receive_pay = #{receivePay},owe=#{receivePay}</if>
  163. <if test=" null != comments ">,comments = #{comments}</if>
  164. <if test=" null != receiveDate ">,receive_date = #{receiveDate}</if>
  165. <if test="0 == receivePay or 0l == receivePay">,status = 3,pay_date=now()</if>
  166. where id = #{id}
  167. </update>
  168. <update id="updatePreviewStatus" parameterType="com.iformall.domain.po.WxBillProperty">
  169. update wx_bill_property set is_preview = #{isPreview},merchant_id = #{merchantId},need_pay = receive_pay,
  170. owe=receive_pay + service_charge_pay + ifnull(late_pay_price,0) - pay
  171. where property_contract_id = #{propertyContractId}
  172. </update>
  173. <select id="oweBillCount" parameterType="java.lang.Long" resultType="java.lang.Long">
  174. select count(br.id) from wx_bill_property br,wx_property_contract c
  175. where c.id = br.property_contract_id and br.status = 1 and c.id = #{contractId}
  176. </select>
  177. <insert id="insertBills" parameterType="java.util.List">
  178. INSERT INTO wx_bill_property (id,property_contract_id, receive_pay, pay, receive_date, pay_date, createtime,
  179. expired_day,
  180. tenant_id, owe, status, is_del, need_pay, merchant_id, user_id, shop_id, updatetime, starttime, endtime,
  181. rent_shop_type, revenue, late_pay_ratio, late_pay_time, late_pay_price, period, is_preview, shop_info,
  182. pay_way, late_pay_status, comments,service_charge_pay)
  183. VALUES
  184. <foreach collection="list" item="item" index="index" separator=",">
  185. (
  186. #{item.id},#{item.propertyContractId},#{item.receivePay},#{item.pay},#{item.receiveDate},#{item.payDate},#{item.createtime},
  187. #{item.expiredDay},#{item.tenantId},#{item.owe},#{item.status},#{item.isDel},#{item.needPay},#{item.merchantId},
  188. #{item.userId},#{item.shopId},#{item.updatetime},#{item.starttime},#{item.endtime},#{item.rentShopType},#{item.revenue},
  189. #{item.latePayRatio},#{item.latePayTime},#{item.latePayPrice},#{item.period},#{item.isPreview},#{item.shopInfo},
  190. #{item.payWay},#{item.latePayStatus},#{item.comments},#{item.serviceChargePay}
  191. )
  192. </foreach>
  193. </insert>
  194. <update id="updateBills" parameterType="java.util.List">
  195. <foreach collection="list" item="item" index="index" open="" close="" separator=";">
  196. update wx_bill_property
  197. <set>
  198. <if test=" null != item.receivePay ">updatetime = now(),receive_pay = #{item.receivePay},</if>
  199. <if test=" null != item.comments ">comments = #{item.comments},</if>
  200. <if test=" null != item.receiveDate ">receive_date = #{item.receiveDate},</if>
  201. <if test="0 == item.receivePay or 0l == item.receivePay">status = 3,pay_date=now()</if>
  202. </set>
  203. where id = #{item.id}
  204. </foreach>
  205. </update>
  206. <select id="selectBillOne" parameterType="com.iformall.domain.po.WxBillProperty"
  207. resultType="com.iformall.domain.po.WxBillProperty">
  208. select * from wx_bill_property where merchant_id=#{merchantId}
  209. AND rent_shop_type = #{rentShopType} AND is_preview = #{isPreview}
  210. AND date_format(starttime,'%Y-%m-%d 00:00:00.0') = #{starttime} AND date_format(endtime,'%Y-%m-%d 00:00:00.0') = #{endtime}
  211. </select>
  212. <update id="insertBillAction">
  213. insert into wx_bill_action(id,user_name,`action`,bill_id,details,tenant_id)
  214. select
  215. (select unix_timestamp(now()) + CEILING(RAND()*90000+10000) + CEILING(RAND()*90000+10000) + CEILING(RAND()*90000+10000)) id
  216. ,'系统端' user_name,7 `action`,b.id bill_id,
  217. CONCAT('系统计入',
  218. if(b.late_pay_price is null,
  219. round(
  220. b.owe * c.late_pay_ratio * DATEDIFF(now(), date_add(b.receive_date,interval(c.late_pay_day) day)) /10000
  221. ,2)
  222. ,
  223. round(
  224. b.owe * (c.late_pay_ratio) /10000
  225. ,2)
  226. )
  227. ,'元') details,b.tenant_id
  228. from wx_bill_property b left join wx_property_contract c on(b.`property_contract_id`=c.id)
  229. where c.late_pay_ratio >0
  230. and DATEDIFF(now(), date_add(b.receive_date,interval(c.late_pay_day) day)) >0
  231. and b.status!=3 and b.status!=6
  232. </update>
  233. <update id="autoAddLatePayPrice">
  234. update wx_bill_property b set b.late_pay_price =
  235. if(b.late_pay_price is null,
  236. round(
  237. b.owe * (select late_pay_ratio from wx_property_contract where id = b.`property_contract_id`)
  238. * DATEDIFF(now(), date_add(b.receive_date,interval(select late_pay_day from wx_property_contract where id = b.`property_contract_id`) day)) /100
  239. ,2)
  240. ,
  241. b.late_pay_price +
  242. round(
  243. b.owe * (select late_pay_ratio from wx_property_contract where id = b.`property_contract_id`) /100
  244. ,2)
  245. )
  246. where b.status!=3 and b.status!=6
  247. and (select late_pay_ratio from wx_property_contract where id = b.`property_contract_id`) > 0
  248. and DATEDIFF(now(), date_add(b.receive_date,interval(select late_pay_day from wx_property_contract where id = b.`property_contract_id`) day)) >0;
  249. </update>
  250. <update id="updateServiceCharge" parameterType="com.iformall.domain.po.WxPayAccountBill">
  251. update wx_bill_property set service_charge_pay=round(receive_pay*#{serviceChargeRate}/10000),owe=receive_pay + service_charge_pay + ifnull(late_pay_price,0) - pay where tenant_id=#{tenantId} and service_charge_pay=0 and status in(1,2,4)
  252. </update>
  253. <update id="updateOwe">
  254. update wx_bill_property set owe = receive_pay + service_charge_pay + ifnull(late_pay_price,0) - pay where status in (1,2,4)
  255. </update>
  256. </mapper>