From f846af063dc848a00bc2c43863ec415430135fdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Sat, 30 Oct 2021 14:28:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=B7=AE=E9=A2=9D=E5=A5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/data/service/RebateService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/data/service/RebateService.php b/app/data/service/RebateService.php index 8844c6cdb..582b873a6 100644 --- a/app/data/service/RebateService.php +++ b/app/data/service/RebateService.php @@ -273,7 +273,7 @@ class RebateService extends Service if (empty($vips) || empty($users)) return true; // 查询需要计算奖励的商品 foreach (ShopOrderItem::mk()->where(['order_no' => $this->order['order_no']])->cursor() as $item) { - if ($item['discount_id'] > 0) { + if ($item['discount_id'] > 0 && $item['rebate_type'] === 1) { [$tVip, $tRate] = [$item['vip_code'], $item['discount_rate']]; $map = ['id' => $item['discount_id'], 'status' => 1, 'deleted' => 0]; $rules = json_decode(BaseUserDiscount::mk()->where($map)->value('items', '[]'), true);