選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

226 行
12 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.WxBillRentMapper">
  4. <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxBillRent">
  5. <id column="id" jdbcType="BIGINT" property="id"/>
  6. <result column="rent_contract_id" jdbcType="BIGINT" property="rentContractId"/>
  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="BIGINT" property="merchantId"/>
  19. <result column="user_id" jdbcType="BIGINT" property="userId"/>
  20. <result column="shop_id" jdbcType="BIGINT" 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="INTEGER" 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="rent_type" property="rentType"/>
  39. <result column="all_period" property="allPeriod"/>
  40. <result column="pay_ratio" property="payRatio"/>
  41. </resultMap>
  42. <sql id="allColumns">
  43. `id`,`rent_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 != rentContractId ">and `rent_contract_id` = #{rentContractId}</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.WxBillRent" resultMap="BaseResultMap">
  81. select
  82. <include refid="allColumns"/>
  83. from wx_bill_rent
  84. <include refid="dynamicWhereConditions"/>
  85. </select>
  86. <select id="queryBillRentList" parameterType="com.iformall.domain.po.WxBillRent" 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` merchant_name,
  89. s.shop_number,br.`updatetime`,br.`merchant_id`,br.`rent_shop_type`,r.type as rent_type,
  90. r.pay_ratio,br.`revenue`,br.`late_pay_ratio`,br.`late_pay_time`,br.`period`,br.`rent_contract_id`,
  91. d.receive_pay deposit,case when br.late_pay_status=2 then (case when br.late_pay_time is null then 0
  92. else FLOOR(DATEDIFF(now(),br.late_pay_time)*br.late_pay_ratio/10000*br.owe)end) else br.late_pay_price end
  93. late_pay_price,d.`status`
  94. deposit_status,br.shop_info,br.pay_way,br.late_pay_status,br.`comments`,br.starttime,br.endtime
  95. from wx_bill_rent 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_rent_contract r on br.rent_contract_id=r.id
  98. left join wx_bill_rent_deposit d on br.rent_contract_id=d.rent_contract_id and br.merchant_id=d.merchant_id
  99. <where>
  100. br.is_preview = 0
  101. <if test=" null != id ">and br.`id` = #{id}</if>
  102. <if test=" null != merchantId ">and br.`merchant_id` = #{merchantId}</if>
  103. <if test=" null != merchantName and ''!=merchantName ">and m.`name` like concat('%',#{merchantName},'%')</if>
  104. <if test=" null != status ">and br.`status` = #{status}</if>
  105. <if test=" null != isDel ">and br.`is_del` = #{isDel}</if>
  106. <if test=" null != starttime and null!=endtime ">and br.`receive_date` between #{starttime} and #{endtime}</if>
  107. <if test=" null != rentShopType ">and br.`rent_shop_type` = #{rentShopType}</if>
  108. <if test=" null != rentContractId ">and br.`rent_contract_id` = #{rentContractId}</if>
  109. <if test=" null != payWay ">and br.`pay_way` = #{payWay}</if>
  110. <if test=" null != latePayStatus ">and br.`late_pay_status` = #{latePayStatus}</if>
  111. <if test=" null != depositStatus ">and d.`status` = #{depositStatus}</if>
  112. </where>
  113. <if test=" null != sortColumns">order by ${sortColumns}</if>
  114. </select>
  115. <select id="queryPayInfo" resultType="hashmap" parameterType="hashmap">
  116. select IFNULL(sum(receive_pay),0) receivepay,IFNULL(sum(pay),0) pay,tenant_id from wx_bill_rent
  117. where tenant_id=#{tenantId} and receive_date between #{startdate} and #{enddate} and is_preview = 0
  118. group by tenant_id
  119. </select>
  120. <select id="queryPayInfoTotal" resultType="hashmap" parameterType="hashmap">
  121. select round(sum(receive_pay)/100,2) receivepay,round(sum(pay)/100,2) pay,tenant_id from wx_bill_rent
  122. where tenant_id=#{tenantId} and receive_date between #{startdate} and #{enddate} and is_preview = 0
  123. </select>
  124. <select id="queryOweInfo" resultType="hashmap" parameterType="hashmap">
  125. select IFNULL(round(sum(owe)/100,2),0) owe,tenant_id from wx_bill_rent
  126. where status = 1 and tenant_id=#{tenantId} and receive_date between #{startdate} and #{enddate} and is_preview = 0
  127. </select>
  128. <update id="updateNotPaidStatus" parameterType="hashmap">
  129. update wx_bill_rent set status=#{notPaid},expired_day=DATEDIFF(now(),receive_date)
  130. where tenant_id=#{tenantId} and status!=#{paid} and status!=6 and DATEDIFF(now(),receive_date)>0
  131. </update>
  132. <update id="updateWaitPayStatus" parameterType="hashmap">
  133. update wx_bill_rent set status=#{waitPay} where id in(
  134. select a.id from (select br.id,rc.receive_period,br.rent_contract_id,br.receive_date from wx_bill_rent br
  135. left join wx_rent_contract rc on br.rent_contract_id=rc.id
  136. where br.tenant_id=#{tenantId} and br.status!=#{paid} and br.status!=6 and now() &lt; br.receive_date
  137. and DATE_ADD(now(),INTERVAL 1 MONTH)>br.receive_date) a)
  138. </update>
  139. <update id="updateInvalidStatus" parameterType="com.iformall.domain.po.WxBillRent">
  140. update wx_bill_rent set status = 6 where rent_contract_id = #{rentContractId}
  141. and status != 3
  142. </update>
  143. <delete id="deletePreviewBill" parameterType="com.iformall.domain.po.WxRentContract">
  144. delete from wx_bill_rent where rent_contract_id = #{id}
  145. </delete>
  146. <update id="update" parameterType="com.iformall.domain.po.WxBillRent">
  147. update wx_bill_rent set updatetime = now()
  148. <if test=" null != receivePay ">,receive_pay = #{receivePay}</if>
  149. <if test=" null != comments ">,comments = #{comments}</if>
  150. <if test=" null != receiveDate ">,receive_date = #{receiveDate}</if>
  151. <if test="0 == receivePay or 0l == receivePay">,status = 3,pay_date=now()</if>
  152. where id = #{id}
  153. </update>
  154. <update id="updatePreviewStatus" parameterType="com.iformall.domain.po.WxBillRent">
  155. update wx_bill_rent set is_preview = #{isPreview},merchant_id = #{merchantId},need_pay = receive_pay,owe=receive_pay
  156. where rent_contract_id = #{rentContractId}
  157. </update>
  158. <select id="oweBillCount" parameterType="java.lang.Long" resultType="java.lang.Long">
  159. select count(br.id) from wx_bill_rent br,wx_rent_contract c where c.id = br.rent_contract_id
  160. and br.status = 1 and c.id = #{contractId}
  161. </select>
  162. <insert id="insertBills" parameterType="java.util.List">
  163. INSERT INTO wx_bill_rent (id,rent_contract_id, receive_pay, pay, receive_date, pay_date, createtime,
  164. expired_day,
  165. tenant_id, owe, status, is_del, need_pay, merchant_id, user_id, shop_id, updatetime, starttime, endtime,
  166. rent_shop_type, revenue, late_pay_ratio, late_pay_time, late_pay_price, period, is_preview, shop_info,
  167. pay_way, late_pay_status, comments)
  168. VALUES
  169. <foreach collection="list" item="item" index="index" separator=",">
  170. (
  171. #{item.id},#{item.rentContractId},#{item.receivePay},#{item.pay},#{item.receiveDate},#{item.payDate},#{item.createtime},
  172. #{item.expiredDay},#{item.tenantId},#{item.owe},#{item.status},#{item.isDel},#{item.needPay},#{item.merchantId},
  173. #{item.userId},#{item.shopId},#{item.updatetime},#{item.starttime},#{item.endtime},#{item.rentShopType},#{item.revenue},
  174. #{item.latePayRatio},#{item.latePayTime},#{item.latePayPrice},#{item.period},#{item.isPreview},#{item.shopInfo},
  175. #{item.payWay},#{item.latePayStatus},#{item.comments}
  176. )
  177. </foreach>
  178. </insert>
  179. <update id="updateBills" parameterType="java.util.List">
  180. <foreach collection="bills" item="item" index="index" open="" close="" separator=";">
  181. update wx_bill_rent
  182. <set>
  183. <if test=" null != item.receivePay ">updatetime = now(),receive_pay = #{item.receivePay},</if>
  184. <if test=" null != item.comments ">comments = #{item.comments},</if>
  185. <if test=" null != item.receiveDate ">receive_date = #{item.receiveDate},</if>
  186. <if test="0 == item.receivePay or 0l == item.receivePay">status = 3,pay_date=now()</if>
  187. </set>
  188. where id = #{item.id}
  189. </foreach>
  190. </update>
  191. <select id="selectBillOne" parameterType="com.iformall.domain.po.WxBillRent">
  192. select * from wx_bill_rent where tenant_id#{tenantId} and merchant_id=#{merchantId}
  193. AND rent_shop_type = #{rentShopType} AND is_preview = #{isPreview}
  194. AND date_format(starttime,'%Y-%m-%d 00:00:00.0') = #{starttime} AND date_format(endtime,'%Y-%m-%d 00:00:00.0') = #{endtime}
  195. </select>
  196. </mapper>