123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.gree.mall.manager.commonmapper.CouponDateMapper">
- <resultMap id="BaseResultMap" type="com.gree.mall.manager.bean.coupon.CouponDataBean">
- <result column="totalSaleValue" property="totalSaleValue"/>
- <result column="totalDiscountValue" property="totalDiscountValue"/>
- <result column="buyGoodsCount" property="buyGoodsCount"/>
- <collection property="buyGoodsInfoList" javaType="java.util.List"
- ofType="com.gree.mall.manager.bean.coupon.BuyGoodsInfo">
- <result column="goodsName" property="goodsName"/>
- <result column="goodsCount" property="goodsCount"/>
- <result column="memberCount" property="memberCount"/>
- </collection>
- </resultMap>
- <select id="data" resultMap="BaseResultMap">
- SELECT t1.*,
- t2.*
- FROM (
- SELECT SUM(t1.total_amount) AS totalSaleValue,
- SUM(t1.coupon_value) AS totalDiscountValue,
- SUM(t2.num) AS buyGoodsCount
- FROM order_info t1
- LEFT JOIN order_detail t2 ON t1.order_id = t2.order_id
- WHERE t1.coupon_id = #{couponId}
- AND t1.order_status NOT IN ('NOPAY', 'CLOSE')
- ) t1,
- (
- SELECT t2.goods_name AS goodsName,
- SUM(t2.num) AS goodsCount,
- COUNT(DISTINCT user_id) AS memberCount
- FROM order_info t1
- LEFT JOIN order_detail t2 ON t1.order_id = t2.order_id
- WHERE t1.coupon_id = #{couponId}
- AND t1.order_status NOT IN ('NOPAY', 'CLOSE')
- GROUP BY t2.goods_name
- ) t2
- </select>
- <select id="pageCoupon" resultType="com.gree.mall.manager.bean.coupon.CouponPageBean">
- select cp.*,count(if(uc.user_id is null,null,1)) as receivedCount, count(if(uc.status=1,1,NULL)) as usedCount,
- CASE when cp.flag <> 'CANCEL' and cp.display_time > now() then 'WAIT'
- when cp.flag = 'CANCEL' then 'CANCEL'
- when cp.flag <> 'CANCEL' and cp.obtain_end_time < now() then 'END'
- when cp.flag <> 'CANCEL' and cp.display_time < now() and cp.obtain_end_time > now() then 'START'
- end 'releaseFlag'
- from coupon cp
- join coupon_company cc on cc.coupon_id = cp.coupon_id
- left join coupon_websit cw on cw.coupon_id = cp.coupon_id
- left join user_coupon uc on cp.coupon_id= uc.coupon_id
- <where>
- <if test="flag != null and flag != ''">
- <choose>
- <when test='flag == "WAIT"'>
- cp.flag <> 'CANCEL' and cp.display_time > now()
- </when>
- <when test='flag == "CANCEL"'>
- cp.flag = 'CANCEL'
- </when>
- <when test='flag == "END"'>
- cp.flag <> 'CANCEL' and cp.obtain_end_time < now()
- </when>
- <when test='flag == "START"'>
- cp.flag <> 'CANCEL' and cp.display_time < now() and cp.obtain_end_time > now()
- </when>
- </choose>
- </if>
- <if test="couponType != null and couponType !=''">
- cp.coupon_type = #{couponType}
- </if>
- <if test="couponName != null and couponName !=''">
- cp.coupon_name like concat('%',#{couponName,jdbcType=VARCHAR},'%')
- </if>
- <if test="companyIds != null and companyIds.size > 0">
- and cc.company_id in
- <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- <if test="adminWebsitIds != null and adminWebsitIds.size > 0">
- and cw.websit_id in
- <foreach item="item" index="index" collection="adminWebsitIds" open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- </where>
- GROUP BY cp.coupon_id ORDER BY cp.create_time DESC
- </select>
- <select id="exportCoupon" resultType="com.gree.mall.manager.bean.coupon.CouponExportBean">
- select
- cp.coupon_id,
- cp.coupon_amount,
- count(uc.id) receive_amount,
- count(uc.used_time) used_amount,
- cp.coupon_value,
- cp.coupon_name,
- uc.receive_time,
- uc.status,
- uc.used_time,
- ur.nick_name,
- ur.mobile
- from user_coupon uc
- left join coupon cp on cp.coupon_id= uc.coupon_id
- left join user ur on ur.user_id = uc.user_id
- <where>
- uc.self_use <> 1 and uc.transfer_type=0
- <if test="flag != null and flag != ''">
- <choose>
- <when test='flag == "WAIT"'>
- and cp.flag <> 'CANCEL' and cp.display_time > now()
- </when>
- <when test='flag == "CANCEL"'>
- and cp.flag = 'CANCEL'
- </when>
- <when test='flag == "END"'>
- and cp.flag <> 'CANCEL' and cp.obtain_end_time < now()
- </when>
- <when test='flag == "START"'>
- and cp.flag <> 'CANCEL' and cp.display_time < now() and cp.obtain_end_time > now()
- </when>
- </choose>
- </if>
- <if test="couponType != null and couponType !=''">
- and cp.coupon_type = #{couponType}
- </if>
- <if test="couponName != null and couponName !=''">
- and cp.coupon_name like concat('%',#{couponName,jdbcType=VARCHAR},'%')
- </if>
- <if test="companyIds != null and companyIds.size > 0">
- and cp.company_id in
- <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- </where>
- group by cp.coupon_id
- ORDER BY cp.create_time DESC
- </select>
- <select id="exportSelfCoupon" resultType="com.gree.mall.manager.bean.coupon.CouponExportBean">
- select uc.receive_time,uc.coupon_name, uc.status,uc.used_time,oi.order_id,oi.pay_amount,
- ur.nick_name,ur.mobile,ur.work_name,ur.work_phone,aw.`name` as websitName
- from user_coupon uc left join
- order_info oi on oi.user_coupon_id=uc.id and oi.order_status<>'CLOSE'
- left join coupon cp on cp.coupon_id= uc.coupon_id
- left join user ur on ur.user_id = uc.user_id
- left join admin_company_wechat acw on acw.company_wechat_id = ur.company_id
- left join enterprise_wechat_worker eww on eww.wechat_user_id = ur.work_user_id and eww.corp_id = acw.corp_id
- LEFT JOIN admin_websit aw on eww.main_department = aw.websit_id
- <where>
- uc.self_use = 1
- <if test="flag != null and flag != ''">
- <choose>
- <when test='flag == "WAIT"'>
- and cp.flag <> 'CANCEL' and cp.display_time > now()
- </when>
- <when test='flag == "CANCEL"'>
- and cp.flag = 'CANCEL'
- </when>
- <when test='flag == "END"'>
- and cp.flag <> 'CANCEL' and cp.obtain_end_time < now()
- </when>
- <when test='flag == "START"'>
- and cp.flag <> 'CANCEL' and cp.display_time < now() and cp.obtain_end_time > now()
- </when>
- </choose>
- </if>
- <if test="couponType != null and couponType !=''">
- and cp.coupon_type = #{couponType}
- </if>
- <if test="couponName != null and couponName !=''">
- and cp.coupon_name like concat('%',#{couponName,jdbcType=VARCHAR},'%')
- </if>
- <if test="companyIds != null and companyIds.size > 0">
- and cp.company_wechat_id in
- <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- </where>
- ORDER BY cp.create_time DESC
- </select>
- <select id="couponTagDetail" resultType="com.gree.mall.manager.bean.coupon.CouponTagBean">
- SELECT ct.coupon_tag_id,
- tg.`name`,
- tg.tag_id AS tagId,
- gr.tag_group_name AS groupName,
- gr.tag_group_id AS groupId
- FROM coupon_tag ct
- LEFT JOIN tag tg ON tg.tag_id = ct.tag_id
- LEFT JOIN tag_group gr ON tg.group_id = gr.tag_group_id
- WHERE ct.coupon_id = #{couponId}
- ORDER BY ct.create_time ASC
- </select>
- <select id="couponTagUser" resultType="com.gree.mall.manager.bean.coupon.CouponUserBean">
- SELECT cu.*,
- ur.nick_name,
- ur.mobile,
- ur.sex,
- ur.avatar,
- ur.type,
- ur.country,
- ur.province,
- ur.city
- from coupon_user cu
- LEFT JOIN user ur on cu.user_id = ur.user_id
- where cu.coupon_id = #{couponId}
- </select>
- <select id="reissueCouponUser" resultType="com.gree.mall.manager.bean.coupon.CouponUserTypeBean">
- SELECT ur.user_id, ur.nick_name as userName, ur.type
- fROM user ur
- where ur.type = 'SERVICE'
- and ur.company_id = #{companyId}
- and not EXISTS(
- select uc.user_id
- from user_coupon uc
- where uc.coupon_id = #{couponId}
- and uc.transfer_type = 1
- and uc.user_id = ur.user_id
- )
- </select>
- <select id="couponList" resultType="com.gree.mall.manager.bean.coupon.CouponVO">
- SELECT
- ${ex.selected}
- FROM coupon a
- join coupon_company cc on cc.coupon_id = a.coupon_id
- left join coupon_websit cw on cw.coupon_id = a.coupon_id
- ${ex.query}
- <if test="companyIds != null and companyIds.size > 0">
- and cc.company_id in
- <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- <if test="adminWebsitIds != null and adminWebsitIds.size > 0">
- and cw.websit_id in
- <foreach item="item" index="index" collection="adminWebsitIds" open="(" separator="," close=")">
- #{item}
- </foreach>
- </if>
- group by a.coupon_id
- <if test="ex.orderBy == null or ex.orderBy ==''">
- ORDER BY a.create_time DESC
- </if>
- ${ex.orderBy}
- </select>
- </mapper>
|