CountMapper.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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.CountMapper">
  4. <select id="countInfo" resultType="com.gree.mall.manager.bean.count.CountBean">
  5. select
  6. sum(if(order_status not in ('NOPAY','CLOSE','TIMEOUT'),total_num,0)) 'total',
  7. sum(if(order_status not in ('NOPAY','CLOSE','OVER','TIMEOUT'),total_num,0)) 'sold',
  8. sum(if(order_status ='DFH',1,0)) 'dfh',
  9. (select count(1) from order_refund where order_status not in ('OVER','CLOSE')
  10. <if test="companyIds != null and companyIds.size > 0">
  11. and company_id in
  12. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  13. #{item}
  14. </foreach>
  15. </if>
  16. ) 'refund',
  17. sum(if(create_time between date(now()) and now() and order_status !='CLOSE',1,0)) 'todayOrder',
  18. sum(if(create_time between date_sub(date(now()), interval 1 day) and date(now()) and order_status !='CLOSE',1,0)) 'yestodayOrder',
  19. sum(if(create_time between date(now()) and now() and order_status not in ('NOPAY','CLOSE','TIMEOUT'),pay_amount,0)) 'todayProfit',
  20. sum(if(create_time between date_sub(date(now()), interval 1 day) and date(now()) and order_status not in ('NOPAY','CLOSE','TIMEOUT'),pay_amount,0)) 'yestodayProfit',
  21. if(count(if(create_time between date(now()) and now(),1,null))=0,0,
  22. round(
  23. sum(if(order_status not in ('NOPAY','CLOSE') and create_time between date(now()) and now(),1,0))
  24. /count(if(create_time between date(now()) and now(),1,null))*100
  25. ,2)
  26. ) 'orderTax'
  27. from order_info
  28. <where>
  29. <if test="companyIds != null and companyIds.size > 0">
  30. and company_id in
  31. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  32. #{item}
  33. </foreach>
  34. </if>
  35. <if test="adminWebsitIds != null and adminWebsitIds.size > 0">
  36. and websit_id in
  37. <foreach item="item" index="index" collection="adminWebsitIds" open="(" separator="," close=")">
  38. #{item}
  39. </foreach>
  40. </if>
  41. </where>
  42. </select>
  43. <select id="countSaleOrder" resultType="com.gree.mall.manager.bean.count.CountOrderBean">
  44. select
  45. count(DISTINCT a.order_id) orderNum,
  46. sum(b.pay_amount) amount,
  47. round(sum(b.pay_amount)/if(count(DISTINCT a.user_id)=0,1,count(DISTINCT a.user_id)),2) avgAmount
  48. from order_info a
  49. join order_detail b on a.order_id=b.order_id
  50. where a.order_status not in ('NOPAY','CLOSE')
  51. and a.pay_time between #{startTime} and #{endTime}
  52. <if test="workOrderType != null and workOrderType !=''">
  53. and b.work_order_type=#{workOrderType}
  54. </if>
  55. <if test="companyIds != null and companyIds.size > 0">
  56. and a.company_id in
  57. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  58. #{item}
  59. </foreach>
  60. </if>
  61. <if test="websitIds != null and websitIds.size > 0">
  62. and a.websit_id in
  63. <foreach item="item" index="index" collection="websitIds" open="(" separator="," close=")">
  64. #{item}
  65. </foreach>
  66. </if>
  67. </select>
  68. <select id="countGoodsRank" resultType="com.gree.mall.manager.bean.count.GoodsRankBean">
  69. select * from (
  70. select count(1) num,b.goods_id,sum(b.pay_amount) pay_amount,b.goods_name from order_info a join order_detail b on a.order_id = b.order_id
  71. where a.create_time BETWEEN #{startTime} and #{endTime} and a.order_status not in ('NOPAY','CLOSE','TIMEOUT')
  72. <if test="companyIds != null and companyIds.size > 0">
  73. and a.company_id in
  74. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  75. #{item}
  76. </foreach>
  77. </if>
  78. <if test="websitIds != null and websitIds.size > 0">
  79. and a.websit_id in
  80. <foreach item="item" index="index" collection="websitIds" open="(" separator="," close=")">
  81. #{item}
  82. </foreach>
  83. </if>
  84. group by b.goods_id
  85. order by count(1) desc
  86. ) t limit 7
  87. </select>
  88. <select id="countVisit" resultType="java.lang.Integer">
  89. select count(DISTINCT user_id) total from user_visit where visit_time BETWEEN #{startTime} and #{endTime}
  90. <if test="companyIds != null and companyIds.size > 0">
  91. and company_id in
  92. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  93. #{item}
  94. </foreach>
  95. </if>
  96. <if test="adminWebsitIds != null and adminWebsitIds.size > 0">
  97. and websit_id in
  98. <foreach item="item" index="index" collection="adminWebsitIds" open="(" separator="," close=")">
  99. #{item}
  100. </foreach>
  101. </if>
  102. </select>
  103. <select id="countWorkAmount" resultType="java.util.Map">
  104. select
  105. a.worker_phone,
  106. sum(a.pay_amount) - sum(b.refund_amount) 'total_amount'
  107. from order_info a
  108. join order_detail b on a.order_id = b.order_id
  109. join goods c on c.goods_id = b.goods_id
  110. where a.order_status in ('DFH','YFH','OVER')
  111. and c.category_id not in (
  112. select category_id from goods_category where name like '%清洗%'
  113. )
  114. <if test="companyIds != null and companyIds.size > 0">
  115. and a.company_id in
  116. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  117. #{item}
  118. </foreach>
  119. </if>
  120. <if test="websitIds != null and websitIds.size > 0">
  121. and a.websit_id in
  122. <foreach item="item" index="index" collection="websitIds" open="(" separator="," close=")">
  123. #{item}
  124. </foreach>
  125. </if>
  126. and pay_time between #{startTime} and #{endTime}
  127. group by a.worker_phone
  128. </select>
  129. <select id="countWebsitAmount" resultType="java.util.Map">
  130. select
  131. sum(pay_amount) 'amount',
  132. sum(total_num) 'num'
  133. from order_info where order_status in ('DFH','YFH','OVER')
  134. and pay_time between #{startTime} and #{endTime}
  135. <if test="websitNumbers != null and websitNumbers.size > 0">
  136. and websit_number in
  137. <foreach item="item" index="index" collection="websitNumbers" open="(" separator="," close=")">
  138. #{item}
  139. </foreach>
  140. </if>
  141. </select>
  142. <select id="queryExchangeCodeCountList" resultType="com.gree.mall.manager.bean.exchange.GiftExchangeCodeBean">
  143. select
  144. count(1) 'num',
  145. min(bind_time) 'first_time',
  146. sum(amount) 'total_amount',
  147. sum(if(status=1,1,0)) 'use_num' ,
  148. a.*
  149. from gift_exchange_code a
  150. where type='SUB' and user_id !=''
  151. <if test="keyword != null and keyword !=''">
  152. and (a.nick_name like concat('%',#{keyword},'%') or a.user_phone like concat('%',#{keyword},'%'))
  153. </if>
  154. <if test="adminWebsitId != null and adminWebsitId !=''">
  155. and a.admin_websit_id = #{adminWebsitId}
  156. </if>
  157. <if test="companyIds != null and companyIds.size > 0">
  158. and a.company_id in
  159. <foreach item="item" index="index" collection="companyIds" open="(" separator="," close=")">
  160. #{item}
  161. </foreach>
  162. </if>
  163. group by user_id
  164. </select>
  165. </mapper>