No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

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