|
@@ -2,19 +2,25 @@
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="com.gree.mall.miniapp.commonmapper.OrderShareRankMapper">
|
|
|
<select id="queryRankList" resultType="com.gree.mall.miniapp.bean.user.RankItemBean">
|
|
|
- select
|
|
|
- ur.user_id as workUserId,
|
|
|
- ifnull(ur.work_name,ur.nick_name) as work_user_name,
|
|
|
- ur.avatar,
|
|
|
- ifnull(aw.name,'') as websitName,
|
|
|
- sum(od.pay_amount) as 'total',
|
|
|
- row_number() over(order by sum(od.pay_amount) desc) as 'ranking'
|
|
|
- from order_info os join order_detail od on os.order_id = od.order_id
|
|
|
- join user ur on ur.user_id = od.share_user_id
|
|
|
- join admin_company_wechat d on d.company_wechat_id = os.company_wechat_id
|
|
|
- left join enterprise_wechat_worker eww on eww.wechat_user_id = os.worker_id and eww.corp_id=d.corp_id
|
|
|
- left join admin_websit aw on aw.websit_id = eww.main_department and aw.corp_id= d.corp_id
|
|
|
- where od.share_user_id !='' and os.order_status in('DFH','YFH','OVER')
|
|
|
+ SELECT
|
|
|
+ ur.user_id AS workUserId,
|
|
|
+ ifnull( ur.work_name, ur.nick_name ) AS work_user_name,
|
|
|
+ ur.avatar,
|
|
|
+ ifnull( ur.websit_name, '' ) AS websitName,
|
|
|
+ sum( od.pay_amount ) AS 'total',
|
|
|
+ row_number() over ( ORDER BY sum( od.pay_amount ) DESC ) AS 'ranking'
|
|
|
+ FROM
|
|
|
+ order_info os
|
|
|
+ JOIN order_detail od ON os.order_id = od.order_id
|
|
|
+ JOIN `user` ur ON ur.user_id = od.share_user_id
|
|
|
+ JOIN admin_company d ON d.admin_company_id = os.company_id
|
|
|
+
|
|
|
+ WHERE
|
|
|
+ od.share_user_id != ''
|
|
|
+ AND os.order_status IN (
|
|
|
+ 'DFH',
|
|
|
+ 'YFH',
|
|
|
+ 'OVER')
|
|
|
and os.create_time between #{startTime} and #{endTime} and os.company_wechat_id=#{companyWechatId}
|
|
|
<if test="userId != null and userId !=''">
|
|
|
and od.share_user_id = #{userId}
|