From c9664d0ecaa49b216fdc4d545fa84ee0d398c22b Mon Sep 17 00:00:00 2001 From: gongfuxiang Date: Thu, 11 Aug 2022 11:33:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=95=86=E5=93=81=E7=B1=BB=E5=9E=8B=E5=88=A4?= =?UTF-8?q?=E6=96=AD=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/common.php b/app/common.php index 7fb79ba44..137f88dde 100755 --- a/app/common.php +++ b/app/common.php @@ -796,6 +796,12 @@ function IsGoodsSiteTypeConsistent($site_type) return 1; } + // 商品类型为 销售+自提、包含其中 + if($site_type == 4 && in_array($common_site_type, [0, 2])) + { + return 1; + } + // 不一致 return 0; }