From a4b3ee325c7354579d495bc74a777e494e5ec38c Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Fri, 06 Feb 2026 18:18:44 +0800
Subject: [PATCH] 商品可以价格面议 选择走访时显示输入走访企业名 分会添加活动时要总会审核 分类添加人数限制,添加活动选择了填写人数限制的分类时活动名额下显示该分类人数限制为15 同一个企业30天内只能走访一次,在30天内走访同一个企业时提示该企业已被走访xx天后才可以从新走访
---
admin/app/api/model/supplier/page/Page.php | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/admin/app/api/model/supplier/page/Page.php b/admin/app/api/model/supplier/page/Page.php
index e67320c..4917017 100644
--- a/admin/app/api/model/supplier/page/Page.php
+++ b/admin/app/api/model/supplier/page/Page.php
@@ -61,7 +61,7 @@
} else if ($item['type'] === 'special') {
$items[$key]['data'] = $model->getSpecialList($item);
}else if ($item['type'] === 'hdzq') {
- $items[$key]['data'] = $model->getReleaseList($item);
+ $items[$key]['data'] = $model->getReleaseList($item,$user);
}else if ($item['type'] === 'gxpp') {
$items[$key]['data'] = $model->getReleaseList($item,$user);
} else if ($item['type'] === 'seckillProduct') {
@@ -129,6 +129,7 @@
'list_rows' => $item['params']['auto']['showNum'],
'audit_status' => 10,
'city_supplier_ids' => $city_supplier_ids,
+ 'is_gift_pack' => 0,
], $user);
}
if ($productList->isEmpty()) return [];
@@ -140,6 +141,7 @@
'product_id' => $product['product_id'],
'product_name' => $product['product_name'],
'selling_point' => $product['selling_point'],
+ 'is_price_negotiable' => $product['is_price_negotiable'],
'image' => $product['image'][0]['file_path'],
'product_image' => $product['image'][0]['file_path'],
'product_price' => $show_sku['product_price'],
--
Gitblit v1.9.2