66 lines
3.1 KiB
XML
66 lines
3.1 KiB
XML
<?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.fuint.repository.mapper.MtGoodsMapper">
|
|
<select id="getStoreGoodsList" resultType="com.fuint.repository.model.MtGoods">
|
|
select * from mt_goods t where (t.STORE_ID = #{storeId} or t.STORE_ID = 0) and t.MERCHANT_ID = #{merchantId} and t.STATUS = 'A' order by t.sort asc
|
|
</select>
|
|
|
|
<select id="searchStoreGoodsList" resultType="com.fuint.repository.model.MtGoods">
|
|
select * from mt_goods t where t.STATUS = 'A'
|
|
<if test="merchantId != null and merchantId > 0">
|
|
AND t.MERCHANT_ID = #{merchantId}
|
|
</if>
|
|
<if test="storeId != null and storeId > 0">
|
|
and (t.STORE_ID = #{storeId} or t.STORE_ID = 0)
|
|
</if>
|
|
and (t.name like concat('%',#{keyword},'%') or t.goods_no = #{keyword} or t.ID = #{keyword} or t.description like concat('%',#{keyword},'%'))
|
|
order by t.sort asc
|
|
</select>
|
|
|
|
<select id="getByGoodsNo" resultType="com.fuint.repository.model.MtGoods">
|
|
select * from mt_goods t where t.GOODS_NO = #{goodsNo} and t.STATUS = 'A'
|
|
<if test="merchantId != null and merchantId > 0">
|
|
AND t.MERCHANT_ID = #{merchantId}
|
|
</if>
|
|
</select>
|
|
|
|
<update id="updateInitSale">
|
|
update mt_goods t set t.INIT_SALE = t.INIT_SALE + 1 where t.ID = #{goodsId}
|
|
</update>
|
|
|
|
<select id="selectGoodsList" resultType="com.fuint.repository.bean.GoodsBean">
|
|
SELECT g.LOGO as logo,g.STORE_ID as storeId,g.ID AS goodsId,g.CATE_ID AS cateId,g.GOODS_NO AS goodsNo,g.NAME as name,g.PRICE as price, g.STOCK as stock,s.`SPEC_IDS` as specIds,s.`PRICE` as skuPrice, s.STOCK as skuStock FROM `mt_goods` g LEFT JOIN `mt_goods_sku` s ON g.id = s.`GOODS_ID`
|
|
WHERE g.`status` = 'A'
|
|
<if test="merchantId != null and merchantId > 0">
|
|
AND g.MERCHANT_ID = #{merchantId}
|
|
</if>
|
|
<if test="storeId != null and storeId > 0">
|
|
AND (g.STORE_ID = #{storeId} OR g.STORE_ID = 0)
|
|
</if>
|
|
<if test="cateId != null and cateId > 0">
|
|
AND g.CATE_ID = #{cateId}
|
|
</if>
|
|
<if test="keyword != null">
|
|
AND (g.name LIKE concat('%',#{keyword},'%') OR g.GOODS_NO = #{keyword} OR s.SKU_NO = #{keyword})
|
|
</if>
|
|
ORDER BY g.`SORT` ASC
|
|
</select>
|
|
|
|
<select id="getGoodsSaleTopList" resultType="com.fuint.repository.bean.GoodsTopBean">
|
|
SELECT g.id AS ID,g.name AS NAME,g.GOODS_NO,SUM(o.`NUM`) AS num, SUM(o.price) as amount FROM `mt_goods` g,`mt_order_goods` o WHERE g.`ID` = o.`GOODS_ID`
|
|
<if test="merchantId != null and merchantId > 0">
|
|
AND g.MERCHANT_ID = #{merchantId}
|
|
</if>
|
|
<if test="storeId != null and storeId > 0">
|
|
AND g.STORE_ID = #{storeId}
|
|
</if>
|
|
<if test="startTime != null">
|
|
AND o.CREATE_TIME >= #{startTime}
|
|
</if>
|
|
<if test="endTime != null">
|
|
AND o.CREATE_TIME <= #{endTime}
|
|
</if>
|
|
GROUP BY g.`ID` ORDER BY SUM(o.`NUM`) DESC LIMIT 10
|
|
</select>
|
|
</mapper>
|