更改配送用户表判断

This commit is contained in:
liu 2024-06-06 16:55:54 +08:00
parent 4362d43795
commit 0cfbab76f3
2 changed files with 4 additions and 2 deletions

View File

@ -16,6 +16,7 @@ namespace app\api\logic;
use app\common\cache\WebScanLoginCache;
use app\common\logic\BaseLogic;
use app\common\model\system_store\DeliveryService;
use app\common\model\system_store\SystemStore;
use app\common\model\system_store\SystemStoreStaff;
use app\api\service\{UserTokenService, WechatUserService};
@ -268,7 +269,7 @@ class LoginLogic extends BaseLogic
$res['is_staff'] = 0;
$res['store_id'] = 0;
if(isset($res['mobile']) && $res['mobile']){
$check = SystemStoreStaff::where('phone',$res['mobile'])->find()??[];
$check = DeliveryService::where('phone',$res['mobile'])->find()??[];
if ($check){
$res['is_staff'] = 1;
$res['store_id'] = $check['store_id'];

View File

@ -7,6 +7,7 @@ use app\common\{logic\BaseLogic,
model\dict\DictData,
model\finance\CapitalFlow,
model\store_order\StoreOrder,
model\system_store\DeliveryService,
model\system_store\SystemStore,
model\system_store\SystemStoreStaff,
model\user\User,
@ -81,7 +82,7 @@ class UserLogic extends BaseLogic
$data['is_staff'] = 0;
$data['store_id'] = 0;
if(isset($data['mobile']) && $data['mobile']){
$check = SystemStoreStaff::where('phone',$data['mobile'])->find()??[];
$check = DeliveryService::where('phone',$data['mobile'])->find()??[];
if ($check){
$data['is_staff'] = 1;
$data['store_id'] = $check['store_id'];