25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

281 lines
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.WxBillRentManageMapper">
  4. <resultMap id="BaseResultMap" type="com.iformall.domain.po.WxBillRentManage">
  5. <id column="id" jdbcType="BIGINT" property="id"/>
  6. <result column="tenant_id" jdbcType="VARCHAR" property="tenantId"/>
  7. <result column="parent_tenant_id" jdbcType="VARCHAR" property="parentTenantId" />
  8. <result column="rent_contract_id" jdbcType="BIGINT" property="rentContractId"/>
  9. <result column="receive_pay" jdbcType="VARCHAR" property="receivePay"/>
  10. <result column="pay" jdbcType="VARCHAR" property="pay"/>
  11. <result column="receive_date" jdbcType="TIMESTAMP" property="receiveDate"/>
  12. <result column="pay_date" jdbcType="TIMESTAMP" property="payDate"/>
  13. <result column="createtime" jdbcType="TIMESTAMP" property="createtime"/>
  14. <result column="expired_day" jdbcType="INTEGER" property="expiredDay"/>
  15. <result column="status" jdbcType="INTEGER" property="status"/>
  16. <result column="apply_status" jdbcType="INTEGER" property="applyStatus"/>
  17. <result column="apply_pay_img" jdbcType="INTEGER" property="applyPayImg"/>
  18. <result column="apply_update_time" jdbcType="INTEGER" property="applyUpdateTime"/>
  19. <result column="is_del" jdbcType="INTEGER" property="isDel"/>
  20. <result column="need_pay" jdbcType="VARCHAR" property="needPay"/>
  21. <result column="merchant_id" jdbcType="BIGINT" property="merchantId"/>
  22. <result column="user_id" jdbcType="BIGINT" property="userId"/>
  23. <result column="shop_id" jdbcType="BIGINT" property="shopId"/>
  24. <result column="updatetime" jdbcType="TIMESTAMP" property="updatetime"/>
  25. <result column="rent_shop_type" jdbcType="INTEGER" property="rentShopType"/>
  26. <result column="late_pay_ratio" jdbcType="INTEGER" property="latePayRatio"/>
  27. <result column="late_pay_time" jdbcType="TIMESTAMP" property="latePayTime"/>
  28. <result column="late_pay_price" jdbcType="VARCHAR" property="latePayPrice"/>
  29. <result column="period" jdbcType="INTEGER" property="period"/>
  30. <result column="shop_info" jdbcType="VARCHAR" property="shopInfo"/>
  31. <result column="pay_way" jdbcType="INTEGER" property="payWay"/>
  32. <result column="late_pay_status" jdbcType="INTEGER" property="latePayStatus"/>
  33. <result column="starttime" property="starttime"/>
  34. <result column="endtime" property="endtime"/>
  35. <result column="freeze" property="freeze"/>
  36. <result column="service_charge_pay" property="serviceChargePay"/>
  37. <result column="manage_fee_type" jdbcType="INTEGER" property="manageFeeType"/>
  38. <result column="last_owe_call_time" jdbcType="TIMESTAMP" property="lastOweCallTime"/>
  39. <result column="last_owe_call_user" jdbcType="VARCHAR" property="lastOweCallUser"/>
  40. <result column="merchant_name" jdbcType="VARCHAR" property="merchantName"/>
  41. <result column="bill_type_name" property="billTypeName"/>
  42. <result column="bill_remark" property="billRemark"/>
  43. </resultMap>
  44. <sql id="allColumns">
  45. `id`,`tenant_id`,`parent_tenant_id`,`rent_contract_id`,`receive_pay`,`pay`,`receive_date`,`pay_date`,`last_owe_call_user`,
  46. `createtime`,`expired_day`,`status`,`apply_status`,`apply_pay_img`,`apply_update_time`,`is_del`,`need_pay`,`last_owe_call_time`,
  47. `merchant_id`,`user_id`,`shop_id`,`updatetime`,`rent_shop_type`,`late_pay_ratio`,`late_pay_time`,`late_pay_price`,
  48. `period`,`shop_info`,`pay_way`,`late_pay_status`,starttime,endtime,freeze,service_charge_pay,manage_fee_type,
  49. case manage_fee_type when 1 then '商业管理费' when 2 then '运营管理费' else '管理费' end bill_type_name,'' bill_remark
  50. </sql>
  51. <sql id="dynamicWhereConditions">
  52. where 1=1
  53. <if test=" null != id ">and `id` = #{id}</if>
  54. <if test=" null != tenantId and '' != tenantId">
  55. and `tenant_id` = #{tenantId}
  56. </if>
  57. <if test=" null != parentTenantId and '' != parentTenantId">
  58. and `parent_tenant_id` = #{parentTenantId}
  59. </if>
  60. <if test=" null != rentContractId ">and `rent_contract_id` = #{rentContractId}</if>
  61. <if test=" null != receivePay ">and `receive_pay` = #{receivePay}</if>
  62. <if test=" null != pay ">and `pay` = #{pay}</if>
  63. <if test=" null != receiveDate ">and `receive_date` = #{receiveDate}</if>
  64. <if test=" null != payDate ">and `pay_date` = #{payDate}</if>
  65. <if test=" null != createtime ">and `createtime` = #{createtime}</if>
  66. <if test=" null != expiredDay ">and `expired_day` = #{expiredDay}</if>
  67. <if test=" null != status ">and `status` = #{status}</if>
  68. <if test=" null != applyStatus ">and `apply_status` = #{applyStatus}</if>
  69. <if test=" null != isDel ">and `is_del` = #{isDel}</if>
  70. <if test=" null != needPay ">and `need_pay` = #{needPay}</if>
  71. <if test=" null != merchantId ">and `merchant_id` = #{merchantId}</if>
  72. <if test=" null != userId ">and `user_id` = #{userId}</if>
  73. <if test=" null != shopId ">and `shop_id` = #{shopId}</if>
  74. <if test=" null != updatetime ">and `updatetime` = #{updatetime}</if>
  75. <if test=" null != rentShopType ">and `rent_shop_type` = #{rentShopType}</if>
  76. <if test=" null != payWay ">and `pay_way` = #{payWay}</if>
  77. <if test=" null != latePayStatus ">and `late_pay_status` = #{latePayStatus}</if>
  78. <if test=" null != manageFeeType ">and `manage_fee_type` = #{manageFeeType}</if>
  79. <if test=" null != merchantIds ">
  80. and merchant_id in
  81. <foreach collection="merchantIds" index="index" item="midItem" open="(" separator="," close=")">
  82. #{midItem}
  83. </foreach>
  84. </if>
  85. <if test=" null != ids ">
  86. and id in
  87. <foreach collection="ids" index="index" item="idItem" open="(" separator="," close=")">
  88. #{idItem}
  89. </foreach>
  90. </if>
  91. <if test=" null != sortColumns">order by ${sortColumns}</if>
  92. </sql>
  93. <select id="findList" parameterType="com.iformall.domain.po.WxBillRent" resultMap="BaseResultMap">
  94. select
  95. <include refid="allColumns"/>
  96. from wx_bill_rent_manage
  97. <include refid="dynamicWhereConditions"/>
  98. </select>
  99. <select id="selectById" parameterType="HashMap" resultMap="BaseResultMap">
  100. select
  101. <include refid="allColumns"/>
  102. from wx_bill_rent_manage
  103. where id = #{id} and `tenant_id` = #{tenantId}
  104. </select>
  105. <sql id="queryBillManageListConditions">
  106. <where>
  107. 1 = 1
  108. <if test=" null != id ">and br.`id` = #{id}</if>
  109. <if test=" null != tenantId and '' != tenantId"> and br.`tenant_id` = #{tenantId}</if>
  110. <if test=" null != parentTenantId and '' != parentTenantId">and br.`parent_tenant_id` = #{parentTenantId}</if>
  111. <if test=" null != freeze ">and br.`freeze` = #{freeze}</if>
  112. <if test=" null != rentShopType ">and br.`rent_shop_type` = #{rentShopType}</if>
  113. <if test=" null != status ">and br.`status` = #{status}</if>
  114. <if test=" null != applyStatus ">and br.`apply_status` = #{applyStatus}</if>
  115. <if test=" null != id ">and br.`id` = #{id}</if>
  116. <if test=" null != merchantId ">and br.`merchant_id` = #{merchantId}</if>
  117. <if test=" null != isDel ">and br.`is_del` = #{isDel}</if>
  118. <if test=" null != rentContractId ">and br.`rent_contract_id` = #{rentContractId}</if>
  119. <if test=" null != payWay ">and br.`pay_way` = #{payWay}</if>
  120. <if test=" null != latePayStatus ">and br.`late_pay_status` = #{latePayStatus}</if>
  121. <if test=" null != starttime">and br.`starttime` &lt;= #{starttime}</if>
  122. <if test=" null != endtime">and br.`endtime` &gt;= #{endtime}</if>
  123. <if test=" null != month and '' != month">
  124. and date_format(br.starttime,'%Y-%m') &lt;= #{month} and date_format(br.endtime,'%Y-%m') &gt;= #{month}
  125. </if>
  126. <if test=" null == nearBillLastTime and null != oweBillLastTime">
  127. and (br.`starttime` &lt;= #{oweBillLastTime} and br.`receive_pay` - br.`pay` &gt; 0 and br.status not in (3,6))
  128. </if>
  129. <if test=" null != nearBillLastTime and null != oweBillLastTime">
  130. and (br.`starttime` &gt; #{oweBillLastTime} and br.`starttime` &lt;= #{nearBillLastTime} and br.status not in (3,6))
  131. </if>
  132. <if test=" null != manageFeeType ">and br.`manage_fee_type` = #{manageFeeType}</if>
  133. <if test=" null != hasMerchant ">and br.`merchant_id` is not null</if>
  134. <if test=" null != merchantIds ">
  135. and br.merchant_id in
  136. <foreach collection="merchantIds" index="index" item="midItem" open="(" separator="," close=")">
  137. #{midItem}
  138. </foreach>
  139. </if>
  140. </where>
  141. </sql>
  142. <select id="queryBillManageList" parameterType="com.iformall.domain.po.WxBillRentManage" resultMap="BaseResultMap">
  143. select br.`id`,br.`tenant_id`,br.`parent_tenant_id`,br.`receive_pay`,br.`pay`,br.`receive_date`,br.`pay_date`,br.`createtime`,br.`expired_day`,
  144. br.`status`,br.`need_pay`,br.`late_pay_time`,br.`period`,br.`rent_contract_id`,br.`last_owe_call_time`,br.`last_owe_call_user`,
  145. br.`updatetime`,br.`merchant_id`,br.`rent_shop_type`,br.`apply_status`,br.`apply_pay_img`,br.`apply_update_time`,
  146. br.late_pay_price,br.shop_info,br.pay_way,br.late_pay_status,br.starttime,br.endtime,
  147. br.freeze,br.service_charge_pay,br.manage_fee_type,br.`late_pay_ratio`,
  148. case br.manage_fee_type when 1 then '商业管理费' when 2 then '运营管理费' else '管理费' end bill_type_name,'' bill_remark
  149. from wx_bill_rent_manage br
  150. <include refid="queryBillManageListConditions"/>
  151. <if test=" null != sortColumns">order by ${sortColumns}</if>
  152. <if test="null != limitStart and null != limitEnd">
  153. limit #{limitStart},#{limitEnd}
  154. </if>
  155. </select>
  156. <resultMap id="SumBaseResultMap" type="com.iformall.domain.vo.WxBillSum">
  157. <result column="receive_pay" jdbcType="VARCHAR" property="needPay"/>
  158. <result column="paid" jdbcType="VARCHAR" property="paid" />
  159. <result column="min_date" jdbcType="TIMESTAMP" property="minDate" />
  160. <result column="max_date" jdbcType="TIMESTAMP" property="maxDate" />
  161. </resultMap>
  162. <select id="getBillMonthSum" parameterType="com.iformall.domain.po.WxBillRentManage" resultMap="SumBaseResultMap">
  163. select
  164. sum(CAST(br.receive_pay AS DECIMAL(20,2))) receive_pay ,
  165. sum(CAST(br.pay AS DECIMAL(20,2))) paid ,
  166. min(starttime) min_date,
  167. max(endtime) max_date
  168. from wx_bill_rent_manage br
  169. <include refid="queryBillManageListConditions"/>
  170. </select>
  171. <select id="getMerchantIdList" parameterType="com.iformall.domain.po.WxBillRentManage" resultType="Long">
  172. select distinct merchant_id from wx_bill_rent_manage br
  173. <include refid="queryBillManageListConditions"/>
  174. </select>
  175. <select id="queryRentContractIds" parameterType="com.iformall.domain.po.WxBillRentManage" resultType="Long">
  176. select distinct br.`rent_contract_id` from wx_bill_rent_manage br
  177. <include refid="queryBillManageListConditions"/>
  178. </select>
  179. <resultMap id="HotNotifyBaseResultMap" type="com.iformall.domain.vo.WxBillHotNotify">
  180. <result column="total_count" jdbcType="INTEGER" property="totalCount"/>
  181. <result column="total_money" jdbcType="VARCHAR" property="totalMoney" />
  182. <result column="min_begin_time" jdbcType="TIMESTAMP" property="minBeginTime"/>
  183. </resultMap>
  184. <select id="getBillHotNotify" parameterType="com.iformall.domain.po.WxBillRentManage" resultMap="HotNotifyBaseResultMap">
  185. select count(1) total_count , sum(CAST(br.`receive_pay` AS DECIMAL(20,2)) - CAST(br.`pay` AS DECIMAL(20,2))) total_money,MIN(br.starttime) min_begin_time from wx_bill_rent_manage br
  186. <include refid="queryBillManageListConditions"/>
  187. </select>
  188. <select id="queryPayInfoTotal" resultType="hashmap" parameterType="hashmap">
  189. select IFNULL(sum(receive_pay),0) receivepay,IFNULL(sum(pay),0) pay,tenant_id from wx_bill_rent_manage
  190. where status!=6
  191. <if test=" null != tenantId and '' != tenantId">
  192. and `tenant_id` = #{tenantId}
  193. </if>
  194. <if test=" null != parentTenantId and '' != parentTenantId">
  195. and `parent_tenant_id` = #{parentTenantId}
  196. </if>
  197. <if test=" null != startTime ">
  198. and receive_date &gt;= #{startdate}
  199. </if>
  200. <if test=" null != endTime">
  201. and receive_date &lt; #{enddate}
  202. </if>
  203. </select>
  204. <update id="updateNotPaidStatus" parameterType="hashmap">
  205. update wx_bill_rent_manage b set b.status=#{notPaid},b.expired_day=
  206. DATEDIFF(now(), b.receive_date)
  207. where b.status!=#{paid} and b.status!=6 and
  208. DATEDIFF(now(), b.receive_date) >0
  209. <if test=" null != tenantId and '' != tenantId">
  210. and b.`tenant_id` = #{tenantId}
  211. </if>
  212. <if test=" null != parentTenantId and '' != parentTenantId">
  213. and b.`parent_tenant_id` = #{parentTenantId}
  214. </if>
  215. </update>
  216. <update id="updateWaitPayStatus" parameterType="hashmap">
  217. update wx_bill_rent_manage set status=#{waitPay} where id in(
  218. select a.id from (select br.id,rc.receive_period,br.rent_contract_id,br.receive_date from wx_bill_rent_manage br
  219. left join wx_rent_contract rc on br.rent_contract_id=rc.id
  220. where br.status!=#{paid}
  221. <if test=" null != tenantId and '' != tenantId">
  222. and br.`tenant_id` = #{tenantId}
  223. </if>
  224. <if test=" null != parentTenantId and '' != parentTenantId">
  225. and br.`parent_tenant_id` = #{parentTenantId}
  226. </if>
  227. and br.status!=6 and now() &lt; br.receive_date
  228. and DATE_ADD(now(),INTERVAL 1 MONTH)>br.receive_date) a)
  229. </update>
  230. <delete id="deletePreviewBill" parameterType="com.iformall.domain.po.WxBillRentManage">
  231. delete from wx_bill_rent_manage where rent_contract_id = #{rentContractId} and manage_fee_type = #{manageFeeType}
  232. </delete>
  233. <select id="oweBillCount" parameterType="java.lang.Long" resultType="java.lang.Long">
  234. select count(br.id) from wx_bill_rent_manage br,wx_rent_contract c where c.id = br.rent_contract_id
  235. and br.status = 1 and c.id = #{contractId}
  236. </select>
  237. <insert id="insertBills" parameterType="HashMap">
  238. INSERT INTO wx_bill_rent_manage (id,tenant_id,parent_tenant_id,
  239. rent_contract_id, receive_pay, pay, receive_date, pay_date, createtime, expired_day,
  240. status, is_del, need_pay, merchant_id, user_id, shop_id, updatetime, starttime, endtime,
  241. rent_shop_type, late_pay_ratio, late_pay_time, late_pay_price, period, shop_info,
  242. pay_way, late_pay_status, service_charge_pay,manage_fee_type)
  243. VALUES
  244. <foreach collection="list" item="item" index="index" separator=",">
  245. (
  246. #{item.id},#{item.tenantId},#{item.parentTenantId},
  247. #{item.rentContractId},#{item.receivePay},#{item.pay},#{item.receiveDate},#{item.payDate},#{item.createtime},
  248. #{item.expiredDay},#{item.status},#{item.isDel},#{item.needPay},#{item.merchantId},
  249. #{item.userId},#{item.shopId},#{item.updatetime},#{item.starttime},#{item.endtime},#{item.rentShopType},
  250. #{item.latePayRatio},#{item.latePayTime},#{item.latePayPrice},#{item.period},#{item.shopInfo},
  251. #{item.payWay},#{item.latePayStatus},#{item.serviceChargePay},#{item.manageFeeType}
  252. )
  253. </foreach>
  254. </insert>
  255. <delete id = "deleteById" parameterType="HashMap">
  256. delete from wx_bill_rent_manage where id = #{id} and tenant_id = #{tenantId}
  257. </delete>
  258. </mapper>