CustomGoodsMapper.xml 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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.CustomGoodsMapper">
  4. <select id="pageList" resultType="com.gree.mall.manager.bean.goods.GoodsSpecBean">
  5. SELECT
  6. t1.*,
  7. t1.goods_name AS goodsName,
  8. ifnull(t2.share_amount,0) AS shareAmount,
  9. ifnull(t2.share_percent,0) AS sharePercent,
  10. ifnull(t2.inner_share_amount,0) AS innerShareAmount,
  11. ifnull(t2.inner_share_percent,0) AS innerSharePercent,
  12. <!--sum(if(t2.del=0 and t2.sold_num is NOT NULL,t2.sold_num,0)) AS soldNum,-->
  13. sum(if(t2.del=0 and t2.stock_num is NOT NULL,t2.stock_num,0)) AS stockNum,
  14. t3.`name` AS categoryName,
  15. t2.bar_code
  16. FROM
  17. goods t1
  18. left join goods_spec t2 on t1.goods_id = t2.goods_id and t2.del = 0
  19. left join goods_category t3 on t3.category_id = t1.category_id
  20. WHERE
  21. t1.del = 0
  22. <if test=' companyWechatId != null and companyWechatId.size > 0' >
  23. AND t1.goods_id in (select b.goods_id from goods_company b where b.company_id in
  24. <foreach collection="companyWechatId" open="(" close=")" item="companyWechatId" separator=",">
  25. #{companyWechatId}
  26. </foreach>
  27. )
  28. </if>
  29. <if test='goodsTypes != null and goodsTypes.size > 0' >
  30. AND t1.goods_type in
  31. <foreach collection="goodsTypes" open="(" close=")" item="item" separator=",">
  32. #{item}
  33. </foreach>
  34. </if>
  35. <if test="flag != null">
  36. <choose>
  37. <when test="flag == 'S'.toString()">AND t1.status = 1</when>
  38. <when test="flag == 'W'.toString()">AND t1.status = 0</when>
  39. <when test="flag == 'A'.toString()">AND t2.flag = 1</when>
  40. <otherwise/>
  41. </choose>
  42. </if>
  43. <if test="keyword != null and keyword != ''">
  44. AND
  45. (t1.goods_id like CONCAT('%', #{keyword},'%') OR t1.goods_name like CONCAT('%',#{keyword},'%') OR t3.`name`
  46. like CONCAT('%',#{keyword},'%') OR CONCAT(t1.goods_name, '(', t2.`name`,')') like
  47. CONCAT('%',#{keyword},'%'))
  48. </if>
  49. <if test="startPrice != null and endPrice != null">
  50. AND
  51. t2.price BETWEEN #{startPrice} AND #{endPrice}
  52. </if>
  53. <if test="startShare != null and endShare != null">
  54. AND
  55. t2.share_amount BETWEEN #{startShare} AND #{endShare}
  56. </if>
  57. <if test="categoryId != null and categoryId.size() != 0">
  58. AND
  59. t3.category_id in
  60. <foreach item="item" index="index" collection="categoryId" open="(" separator="," close=")">
  61. #{item}
  62. </foreach>
  63. </if>
  64. <if test="status != null">
  65. AND
  66. t1.status = #{status}
  67. </if>
  68. group by t1.goods_id
  69. <if test="flag == 'O'.toString()">
  70. having sum(t2.stock_num) = 0
  71. </if>
  72. <choose>
  73. <when test="sortStr == null">
  74. ORDER BY t1.sort_num desc,t1.create_time desc
  75. </when>
  76. <otherwise>
  77. ORDER BY t1.sort_num desc,${sortStr},t1.create_time desc
  78. </otherwise>
  79. </choose>
  80. </select>
  81. <select id="list" resultType="com.gree.mall.manager.bean.goods.GoodsSpecBean">
  82. SELECT t1.*,
  83. t1.goods_name AS goodsName,
  84. ifnull(t2.share_amount, 0) AS shareAmount,
  85. ifnull(t2.share_percent, 0) AS sharePercent,
  86. sum(IF(t2.del = 0 AND t2.sold_num IS NOT NULL, t2.sold_num, 0)) AS soldNum,
  87. sum(IF(t2.del = 0 AND t2.stock_num IS NOT NULL, t2.stock_num, 0)) AS stockNum
  88. FROM goods_template gt
  89. LEFT JOIN goods t1 ON gt.goods_id = t1.goods_id
  90. LEFT JOIN goods_spec t2 ON t1.goods_id = t2.goods_id
  91. WHERE gt.template_id = #{commonTemplateId}
  92. and t1.del = 0
  93. GROUP BY t1.goods_id
  94. ORDER BY t1.sort_num DESC
  95. </select>
  96. <select id="countByType" resultType="com.gree.mall.manager.bean.goods.GoodsTypeCount">
  97. select count(1) 'total', sum(if(status = true, 1, 0)) 'csz', sum(if(status = false, 1, 0)) 'ckz'
  98. from goods a
  99. where del = false
  100. <if test=' companyWechatIds != null and companyWechatIds.size > 0' >
  101. AND a.goods_id in (select b.goods_id from goods_company b where b.company_id in
  102. <foreach collection="companyWechatIds" open="(" close=")" item="companyWechatId" separator=",">
  103. #{companyWechatId}
  104. </foreach>
  105. )
  106. </if>
  107. </select>
  108. <select id="ysq" resultType="java.lang.Integer">
  109. SELECT
  110. count(*) total
  111. FROM
  112. (
  113. SELECT
  114. sum( c.stock_num ),
  115. c.goods_id
  116. FROM
  117. goods_spec c
  118. JOIN goods t1
  119. JOIN goods_company b ON t1.goods_id = b.goods_id
  120. WHERE
  121. c.del = FALSE
  122. <if test=' companyWechatIds != null and companyWechatIds.size > 0' >
  123. AND b.company_id in
  124. <foreach collection="companyWechatIds" open="(" close=")" item="companyWechatId" separator=",">
  125. #{companyWechatId}
  126. </foreach>
  127. </if>
  128. GROUP BY
  129. goods_id
  130. HAVING
  131. sum( stock_num ) = 0
  132. ) t
  133. </select>
  134. <select id="countByFlag" resultType="java.lang.Integer">
  135. select count(DISTINCT t1.goods_id)
  136. FROM goods t1 join goods_company b on t1.goods_id = b.goods_id
  137. left join goods_spec t2 on t1.goods_id = t2.goods_id
  138. WHERE t1.del = 0
  139. AND t2.flag = 1
  140. and t2.del = 0
  141. <if test=' companyWechatIds != null and companyWechatIds.size > 0' >
  142. AND b.company_id in
  143. <foreach collection="companyWechatIds" open="(" close=")" item="companyWechatId" separator=",">
  144. #{companyWechatId}
  145. </foreach>
  146. </if>
  147. </select>
  148. <select id="queryGoodsCategoryByGoodsId" resultType="com.gree.mall.manager.plus.entity.GoodsCategory">
  149. select a.* from goods_category a
  150. join goods b on a.category_id = b.category_id
  151. where b.goods_id=#{goodsId}
  152. </select>
  153. <update id="syncGoodsSpecInnerShareMsg" parameterType="java.lang.String">
  154. update goods_spec
  155. set inner_share_amount = share_amount , inner_share_percent = share_percent
  156. where inner_share_amount is null and inner_share_amount is null and company_id = #{companyWechatId}
  157. </update>
  158. <select id="queryGoodsPackageList" resultType="com.gree.mall.manager.bean.goods.GoodsPackageList">
  159. select
  160. a.goods_id,
  161. a.img_url,
  162. a.goods_name,
  163. a.status,
  164. (select count(DISTINCT goods_id) from goods_package_pop where goods_package_id= a.goods_id) 'goodsNums',
  165. a.package_min_amount,
  166. a.package_min_share_amount,
  167. use_coupon,
  168. count(DISTINCT c.order_id) 'orderNums',
  169. sum(c.pay_amount) 'orderPayAmount',
  170. a.package_user_type,
  171. a.company_name
  172. from goods a
  173. left join order_info c on c.promotion_package_goods_id=a.goods_id and c.order_status in ('DFH','YFH','OVER')
  174. where a.goods_type='PACKAGE'
  175. and a.del = 0
  176. <if test='companyWechatIds != null and companyWechatIds.size > 0' >
  177. AND a.company_id in
  178. <foreach collection="companyWechatIds" open="(" close=")" item="companyWechatId" separator=",">
  179. #{companyWechatId}
  180. </foreach>
  181. </if>
  182. <if test="keyword != null and keyword != ''">
  183. AND(a.goods_id like CONCAT('%', #{keyword},'%') OR a.goods_name like CONCAT('%',#{keyword},'%'))
  184. </if>
  185. <if test="startPrice != null and endPrice != null">
  186. AND
  187. a.package_min_amount BETWEEN #{startPrice} AND #{endPrice}
  188. </if>
  189. <if test="startShare != null and endShare != null">
  190. AND
  191. a.package_min_share_amount BETWEEN #{startShare} AND #{endShare}
  192. </if>
  193. <if test="categoryId != null and categoryId.size() != 0">
  194. AND
  195. a.category_id in
  196. <foreach item="item" index="index" collection="categoryId" open="(" separator="," close=")">
  197. #{item}
  198. </foreach>
  199. </if>
  200. <if test="status != null">
  201. AND
  202. a.status = #{status}
  203. </if>
  204. group by a.goods_id
  205. <choose>
  206. <when test="sortStr == null">
  207. ORDER BY a.sort_num desc,a.create_time desc
  208. </when>
  209. <otherwise>
  210. ORDER BY a.sort_num desc,${sortStr},a.create_time desc
  211. </otherwise>
  212. </choose>
  213. </select>
  214. <select id="goodsList" resultType="com.gree.mall.manager.bean.goods.GoodsVO">
  215. SELECT
  216. ${ex.selected}
  217. FROM goods a
  218. ${ex.query}
  219. <if test="ex.orderBy == null or ex.orderBy ==''">
  220. ORDER BY a.create_time DESC
  221. </if>
  222. ${ex.orderBy}
  223. </select>
  224. </mapper>