From feda780069d64479c0c20493603717e100655da9 Mon Sep 17 00:00:00 2001
From: quanwei <419654421@qq.com>
Date: Fri, 05 Dec 2025 18:26:25 +0800
Subject: [PATCH] 完成新人专区 完成复购专区 完成见点奖
---
admin/app/api/model/supplier/Supplier.php | 34 ++++++++++++++++++++++++++++++----
1 files changed, 30 insertions(+), 4 deletions(-)
diff --git a/admin/app/api/model/supplier/Supplier.php b/admin/app/api/model/supplier/Supplier.php
index af4bd89..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();
@@ -172,4 +177,25 @@
$data["index"]=empty($index) ? '-1' : $index;
return $data;
}
+
+ //店铺列表(简约)
+ public function getListSimple($params = [])
+ {
+ $model = $this;
+ if (!empty($params['keyword'])) {
+ $model = $model->where('name', 'like', '%'. $params['keyword'] .'%');
+ }
+ return $model->where('is_delete', '=', '0')
+ ->where('is_recycle', '=', 0)
+ ->order(['create_time' => 'desc'])
+ ->paginate($params);
+ }
+ public static function getUserStore($user_id)
+ {
+ $model = new self();
+ return $model->where('user_id', '=', $user_id)
+ ->where('is_delete', '=', 0)
+ ->where('is_recycle', '=', 0)
+ ->find();
+ }
}
--
Gitblit v1.9.2