CouponDateMapper.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  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.gree.mall.manager.commonmapper.CouponDateMapper">
  4. <resultMap id="BaseResultMap" type="com.gree.mall.manager.bean.coupon.CouponDataBean">
  5. <result column="totalSaleValue" property="totalSaleValue"/>
  6. <result column="totalDiscountValue" property="totalDiscountValue"/>
  7. <result column="buyGoodsCount" property="buyGoodsCount"/>
  8. <collection property="buyGoodsInfoList" javaType="java.util.List"
  9. ofType="com.gree.mall.manager.bean.coupon.BuyGoodsInfo">
  10. <result column="goodsName" property="goodsName"/>
  11. <result column="goodsCount" property="goodsCount"/>
  12. <result column="memberCount" property="memberCount"/>
  13. </collection>
  14. </resultMap>
  15. <select id="data" resultMap="BaseResultMap">
  16. SELECT t1.*,
  17. t2.*
  18. FROM (
  19. SELECT SUM(t1.total_amount) AS totalSaleValue,
  20. SUM(t1.coupon_value) AS totalDiscountValue,
  21. SUM(t2.num) AS buyGoodsCount
  22. FROM order_info t1
  23. LEFT JOIN order_detail t2 ON t1.order_id = t2.order_id
  24. WHERE t1.coupon_id = #{couponId}
  25. AND t1.order_status NOT IN ('NOPAY', 'CLOSE')
  26. ) t1,
  27. (
  28. SELECT t2.goods_name AS goodsName,
  29. SUM(t2.num) AS goodsCount,
  30. COUNT(DISTINCT user_id) AS memberCount
  31. FROM order_info t1
  32. LEFT JOIN order_detail t2 ON t1.order_id = t2.order_id
  33. WHERE t1.coupon_id = #{couponId}
  34. AND t1.order_status NOT IN ('NOPAY', 'CLOSE')
  35. GROUP BY t2.goods_name
  36. ) t2
  37. </select>
  38. <select id="pageCoupon" resultType="com.gree.mall.manager.bean.coupon.CouponPageBean">
  39. select cp.*,count(if(uc.user_id is null,null,1)) as receivedCount, count(if(uc.status=1,1,NULL)) as usedCount,
  40. CASE when cp.flag &lt;> 'CANCEL' and cp.display_time > now() then 'WAIT'
  41. when cp.flag = 'CANCEL' then 'CANCEL'
  42. when cp.flag &lt;> 'CANCEL' and cp.obtain_end_time &lt; now() then 'END'
  43. when cp.flag &lt;> 'CANCEL' and cp.display_time &lt; now() and cp.obtain_end_time > now() then 'START'
  44. end 'releaseFlag'
  45. from coupon cp
  46. join coupon_company cc on cc.coupon_id = cp.coupon_id
  47. left join coupon_websit cw on cw.coupon_id = cp.coupon_id
  48. left join user_coupon uc on cp.coupon_id= uc.coupon_id
  49. <where>
  50. <if test="flag != null and flag != ''">
  51. <choose>
  52. <when test='flag == "WAIT"'>
  53. cp.flag &lt;> 'CANCEL' and cp.display_time > now()
  54. </when>
  55. <when test='flag == "CANCEL"'>
  56. cp.flag = 'CANCEL'
  57. </when>
  58. <when test='flag == "END"'>
  59. cp.flag &lt;> 'CANCEL' and cp.obtain_end_time &lt; now()
  60. </when>
  61. <when test='flag == "START"'>
  62. cp.flag &lt;> 'CANCEL' and cp.display_time &lt; now() and cp.obtain_end_time > now()
  63. </when>
  64. </choose>
  65. </if>
  66. <if test="couponType != null and couponType !=''">
  67. cp.coupon_type = #{couponType}
  68. </if>
  69. <if test="couponName != null and couponName !=''">
  70. cp.coupon_name like concat('%',#{couponName,jdbcType=VARCHAR},'%')
  71. </if>
  72. <if test="companyIds != null and companyIds.size > 0">
  73. and cc.company_id in
  74. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  75. #{item}
  76. </foreach>
  77. </if>
  78. <if test="adminWebsitIds != null and adminWebsitIds.size > 0">
  79. and cw.websit_id in
  80. <foreach item="item" index="index" collection="adminWebsitIds" open="(" separator="," close=")">
  81. #{item}
  82. </foreach>
  83. </if>
  84. </where>
  85. GROUP BY cp.coupon_id ORDER BY cp.create_time DESC
  86. </select>
  87. <select id="exportCoupon" resultType="com.gree.mall.manager.bean.coupon.CouponExportBean">
  88. select
  89. cp.coupon_id,
  90. cp.coupon_amount,
  91. count(uc.id) receive_amount,
  92. count(uc.used_time) used_amount,
  93. cp.coupon_value,
  94. cp.coupon_name,
  95. uc.receive_time,
  96. uc.status,
  97. uc.used_time,
  98. ur.nick_name,
  99. ur.mobile
  100. from user_coupon uc
  101. left join coupon cp on cp.coupon_id= uc.coupon_id
  102. left join user ur on ur.user_id = uc.user_id
  103. <where>
  104. uc.self_use &lt;> 1 and uc.transfer_type=0
  105. <if test="flag != null and flag != ''">
  106. <choose>
  107. <when test='flag == "WAIT"'>
  108. and cp.flag &lt;> 'CANCEL' and cp.display_time > now()
  109. </when>
  110. <when test='flag == "CANCEL"'>
  111. and cp.flag = 'CANCEL'
  112. </when>
  113. <when test='flag == "END"'>
  114. and cp.flag &lt;> 'CANCEL' and cp.obtain_end_time &lt; now()
  115. </when>
  116. <when test='flag == "START"'>
  117. and cp.flag &lt;> 'CANCEL' and cp.display_time &lt; now() and cp.obtain_end_time > now()
  118. </when>
  119. </choose>
  120. </if>
  121. <if test="couponType != null and couponType !=''">
  122. and cp.coupon_type = #{couponType}
  123. </if>
  124. <if test="couponName != null and couponName !=''">
  125. and cp.coupon_name like concat('%',#{couponName,jdbcType=VARCHAR},'%')
  126. </if>
  127. <if test="companyIds != null and companyIds.size > 0">
  128. and cp.company_id in
  129. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  130. #{item}
  131. </foreach>
  132. </if>
  133. </where>
  134. group by cp.coupon_id
  135. ORDER BY cp.create_time DESC
  136. </select>
  137. <select id="exportSelfCoupon" resultType="com.gree.mall.manager.bean.coupon.CouponExportBean">
  138. select uc.receive_time,uc.coupon_name, uc.status,uc.used_time,oi.order_id,oi.pay_amount,
  139. ur.nick_name,ur.mobile,ur.work_name,ur.work_phone,aw.`name` as websitName
  140. from user_coupon uc left join
  141. order_info oi on oi.user_coupon_id=uc.id and oi.order_status&lt;>'CLOSE'
  142. left join coupon cp on cp.coupon_id= uc.coupon_id
  143. left join user ur on ur.user_id = uc.user_id
  144. left join admin_company_wechat acw on acw.company_wechat_id = ur.company_id
  145. left join enterprise_wechat_worker eww on eww.wechat_user_id = ur.work_user_id and eww.corp_id = acw.corp_id
  146. LEFT JOIN admin_websit aw on eww.main_department = aw.websit_id
  147. <where>
  148. uc.self_use = 1
  149. <if test="flag != null and flag != ''">
  150. <choose>
  151. <when test='flag == "WAIT"'>
  152. and cp.flag &lt;> 'CANCEL' and cp.display_time > now()
  153. </when>
  154. <when test='flag == "CANCEL"'>
  155. and cp.flag = 'CANCEL'
  156. </when>
  157. <when test='flag == "END"'>
  158. and cp.flag &lt;> 'CANCEL' and cp.obtain_end_time &lt; now()
  159. </when>
  160. <when test='flag == "START"'>
  161. and cp.flag &lt;> 'CANCEL' and cp.display_time &lt; now() and cp.obtain_end_time > now()
  162. </when>
  163. </choose>
  164. </if>
  165. <if test="couponType != null and couponType !=''">
  166. and cp.coupon_type = #{couponType}
  167. </if>
  168. <if test="couponName != null and couponName !=''">
  169. and cp.coupon_name like concat('%',#{couponName,jdbcType=VARCHAR},'%')
  170. </if>
  171. <if test="companyIds != null and companyIds.size > 0">
  172. and cp.company_wechat_id in
  173. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  174. #{item}
  175. </foreach>
  176. </if>
  177. </where>
  178. ORDER BY cp.create_time DESC
  179. </select>
  180. <select id="couponTagDetail" resultType="com.gree.mall.manager.bean.coupon.CouponTagBean">
  181. SELECT ct.coupon_tag_id,
  182. tg.`name`,
  183. tg.tag_id AS tagId,
  184. gr.tag_group_name AS groupName,
  185. gr.tag_group_id AS groupId
  186. FROM coupon_tag ct
  187. LEFT JOIN tag tg ON tg.tag_id = ct.tag_id
  188. LEFT JOIN tag_group gr ON tg.group_id = gr.tag_group_id
  189. WHERE ct.coupon_id = #{couponId}
  190. ORDER BY ct.create_time ASC
  191. </select>
  192. <select id="couponTagUser" resultType="com.gree.mall.manager.bean.coupon.CouponUserBean">
  193. SELECT cu.*,
  194. ur.nick_name,
  195. ur.mobile,
  196. ur.sex,
  197. ur.avatar,
  198. ur.type,
  199. ur.country,
  200. ur.province,
  201. ur.city
  202. from coupon_user cu
  203. LEFT JOIN user ur on cu.user_id = ur.user_id
  204. where cu.coupon_id = #{couponId}
  205. </select>
  206. <select id="reissueCouponUser" resultType="com.gree.mall.manager.bean.coupon.CouponUserTypeBean">
  207. SELECT ur.user_id, ur.nick_name as userName, ur.type
  208. fROM user ur
  209. where ur.type = 'SERVICE'
  210. and ur.company_id = #{companyId}
  211. and not EXISTS(
  212. select uc.user_id
  213. from user_coupon uc
  214. where uc.coupon_id = #{couponId}
  215. and uc.transfer_type = 1
  216. and uc.user_id = ur.user_id
  217. )
  218. </select>
  219. <select id="couponList" resultType="com.gree.mall.manager.bean.coupon.CouponVO">
  220. SELECT
  221. ${ex.selected}
  222. FROM coupon a
  223. join coupon_company cc on cc.coupon_id = a.coupon_id
  224. left join coupon_websit cw on cw.coupon_id = a.coupon_id
  225. ${ex.query}
  226. <if test="companyIds != null and companyIds.size > 0">
  227. and cc.company_id in
  228. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  229. #{item}
  230. </foreach>
  231. </if>
  232. <if test="adminWebsitIds != null and adminWebsitIds.size > 0">
  233. and cw.websit_id in
  234. <foreach item="item" index="index" collection="adminWebsitIds" open="(" separator="," close=")">
  235. #{item}
  236. </foreach>
  237. </if>
  238. group by a.coupon_id
  239. <if test="ex.orderBy == null or ex.orderBy ==''">
  240. ORDER BY a.create_time DESC
  241. </if>
  242. ${ex.orderBy}
  243. </select>
  244. </mapper>