From 33f004d1196d056b99a3886de070d429315bac39 Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Thu, 11 Dec 2025 18:12:38 +0800
Subject: [PATCH] 将分类改为多选 修复活动报名 实现成为vip会员时根据活动报名信息绑定下级
---
admin/app/api/model/supplier/Supplier.php | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/admin/app/api/model/supplier/Supplier.php b/admin/app/api/model/supplier/Supplier.php
index 52829fa..1b2a943 100644
--- a/admin/app/api/model/supplier/Supplier.php
+++ b/admin/app/api/model/supplier/Supplier.php
@@ -2,11 +2,12 @@
namespace app\api\model\supplier;
+use app\common\model\plus\shareholder\Apply as ShareholderApplyModel;
use app\common\model\supplier\Supplier as SupplierModel;
use app\common\model\supplier\User as SupplierUserModel;
use app\api\model\user\Favorite as FavoriteModel;
use app\api\model\product\Product as ProductModel;
-
+use app\api\model\plus\team\Apply as teamApplyModel;
/**
* 供应商模型类
*/
@@ -31,6 +32,10 @@
$data['shop_supplier_id'] = $this['shop_supplier_id'];
$data['is_super'] = 1;
$SupplierUserModel->save($data);
+ (new teamApplyModel())->becomeTeamByAgent($data['referee_id'],70,$data['app_id']);
+ //根据团队人数判断股东 by yj
+ $shareholderModel = new ShareholderApplyModel;
+ $shareholderModel->becomeShareholderByTeam($data['referee_id'], 80, $data['app_id']);
$this->commit();
return true;
} catch (\Exception $e) {
@@ -49,11 +54,11 @@
public function getDetail($data, $user)
{
$detail = $this->alias('s')->where(['shop_supplier_id' => $data['shop_supplier_id']])
- ->field("name as store_name,shop_supplier_id,logo_id,category_id,server_score,fav_count,user_id,product_sales,address,notice")
+ ->field("name as store_name,shop_supplier_id,logo_id,category_id,server_score,fav_count,user_id,product_sales,address,notice,description")
->with(['logo', 'category'])
->find();
if ($detail) {
- $detail['logos'] = $detail['logo']['file_path'];
+ $detail['logos'] = $detail['logo']?$detail['logo']['file_path']:'';
$detail['category_name'] = $detail['category']['name'];
unset($detail['logo']);
unset($detail['category']);
@@ -103,7 +108,7 @@
->where('s.is_delete', '=', '0')
->where('s.is_recycle', '=', 0)
//->where('s.is_full', '=', 1)
- ->field("s.shop_supplier_id,s.name,s.fav_count,logo_id,category_id,server_score,product_sales")
+ ->field("s.shop_supplier_id,s.name,s.fav_count,logo_id,category_id,server_score,product_sales,address,link_phone")
->order($sort)
->paginate($param);
$product_model = new ProductModel();
--
Gitblit v1.9.2