Commit 9ca18783 by weijiguang

优化店铺距离限制

parent 5e9ee3e3
...@@ -23,7 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" ...@@ -23,7 +23,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select gs.id, gs.goods_id, gs.price, select gs.id, gs.goods_id, gs.price,
case when sgs.discount>=0 then sgs.discount else gs.discount end as discount, case when sgs.discount>=0 then sgs.discount else gs.discount end as discount,
gs.is_deleted from goods_sku gs gs.is_deleted from goods_sku gs
left join shop_goods_sku sgs on gs.goods_id = sgs.goods_id left join shop_goods_sku sgs on gs.goods_id = sgs.goods_id and gs.id = sgs.sku_id
where gs.id in where gs.id in
<foreach collection="ids" item="id" separator="," open="(" close=")">#{id}</foreach> <foreach collection="ids" item="id" separator="," open="(" close=")">#{id}</foreach>
</select> </select>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment