|
@@ -183,7 +183,7 @@ class UserInfo extends BaseController
|
|
|
$inser=$acc->update($upda,["account_id"=>$post['account_id'],"companyCode"=>$post['companyCode'],"is_del"=>0]);
|
|
|
if($inser==false) return json_show(1005,"关联企业状态设置失败");
|
|
|
$count = $acc->where([["account_id","=",$post['account_id']],["status","<>",$post['status']],["is_del","=",0]])->count();
|
|
|
- if($count==0 && $account['status']!=$post['status'])Db::name("account")->where(["id"=>$post['account_id'],"is_del"=>0])->select($upda);
|
|
|
+ if($count==0 && $account['status']!=$post['status'])Db::name("account")->where(["id"=>$post['account_id'],"is_del"=>0])->update($upda);
|
|
|
return json_show(0,"关联企业状态设置成功");
|
|
|
}
|
|
|
/**
|