From 087cd794187727bf9a34fcef3027cd56f6dec436 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 10 Mar 2021 15:20:54 +0800
Subject: [PATCH] Merge branch 'api' of http://120.27.238.55:7000/r/beauty-erp into api

---
 zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopCouponDao.xml |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopCouponDao.xml b/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopCouponDao.xml
index 62b8923..4e833dc 100644
--- a/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopCouponDao.xml
+++ b/zq-erp/src/main/resources/mybatis/mapper/xcxShop/ShopCouponDao.xml
@@ -526,6 +526,7 @@
         <result property="tag" column="tag"/>
         <result property="isUsing" column="is_using"/>
         <result property="kind" column="kind"/>
+        <result property="companyId" column="company_id"/>
     </resultMap>
 
     <select id="selectUsableCouponByProductInfo" resultMap="WxShopCouponMap">
@@ -561,7 +562,8 @@
         select *
         from shop_coupon
         where
-        kind=2 and now() >= begin_time and end_time >= now()
+        company_id=#{companyId}
+        and kind=2 and now() >= begin_time and end_time >= now()
         and is_open = 1
         and (is_all = 1 or
         (
@@ -584,7 +586,7 @@
         ifnull(scr.is_using, 0) is_using
         from shop_coupon sc left join shop_coupon_record scr
         on sc.id = scr.c_id and user_id = #{userId}
-        where sc.shop_id=#{shopId} and sc.kind=1  and now() >= begin_time and end_time >= now() and is_open = 1
+        where sc.company_id=#{companyId} and sc.kind=1  and now() >= begin_time and end_time >= now() and is_open = 1
         <!--<if test="!isNewPeople">-->
         <!--and get_limit = 1-->
         <!--</if>-->

--
Gitblit v1.9.1