修改用户可以申请的店铺类型

This commit is contained in:
luofei 2023-06-07 14:42:50 +08:00
parent 29b20cbedd
commit 035f49be5c
3 changed files with 20 additions and 3 deletions

View File

@ -45,6 +45,16 @@ class Merchant extends BaseModel
self::TypeVillageServer => '村服务团队',
self::TypeTownServer => '镇服务团队',
];
const AllowApply = [ //允许申请的类型
self::TypeStore,
self::TypeSupplyChain,
];
const AllowDisplay = [ //允许展示的类型
self::TypeStore,
self::TypeCloudWarehouse,
self::TypeSupplyChain,
self::TypePlatform,
];
/**
* @return string

View File

@ -29,6 +29,9 @@ use think\facade\Route;
*/
class MerchantTypeRepository extends BaseRepository
{
public $userApply = false;
public function __construct(MerchantTypeDao $dao)
{
$this->dao = $dao;
@ -48,8 +51,9 @@ class MerchantTypeRepository extends BaseRepository
public function getSelect($getAll = true)
{
$query = MerchantType::getDB()->when(!$getAll, function ($query) {
$query->whereIn('mer_type_id', [Merchant::TypeCloudWarehouse, Merchant::TypeStore, Merchant::TypeSupplyChain, Merchant::TypePlatform]);
$merTypeIds = $this->userApply ? Merchant::AllowApply : Merchant::AllowDisplay;
$query = MerchantType::getDB()->when(!$getAll, function ($query) use ($merTypeIds) {
$query->whereIn('mer_type_id', $merTypeIds);
})->field('mer_type_id,type_name');
return $query->select()->toArray();
}

View File

@ -147,7 +147,10 @@ class MerchantIntention extends BaseController
public function typeLst()
{
$lst = app()->make(MerchantTypeRepository::class)->getSelect(false);
/** @var MerchantTypeRepository $repo */
$repo = app()->make(MerchantTypeRepository::class);
$repo->userApply = true;
$lst = $repo->getSelect(false);
return app('json')->success($lst);
}
}