From 48d31672b4d88900080093cd1632f9d2eb978d4d Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Wed, 31 Dec 2025 18:29:05 +0800
Subject: [PATCH] 修改名片聊天
---
admin/app/api/model/supplier/Supplier.php | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/admin/app/api/model/supplier/Supplier.php b/admin/app/api/model/supplier/Supplier.php
index 52829fa..cea547d 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,longitude,latitude")
->order($sort)
->paginate($param);
$product_model = new ProductModel();
@@ -122,6 +127,8 @@
$v['productList'] = $productList;
$v['logos'] = isset($v['logo'])?$v['logo']['file_path']:'';
$v['category_name'] = $v['category']['name'];
+ $v['latitude'] = (float)$v['latitude'];
+ $v['longitude'] = (float)$v['longitude'];
unset($v['logo']);
unset($v['category']);
}
--
Gitblit v1.9.2