东莞电信,增加指定用户类型才能使用

Change-Id: If629aecdc342be714c6e0ba600c9704eefc67d9c
This commit is contained in:
vguanyiwgd 2024-05-11 16:37:06 +08:00
parent 2eb79724ce
commit fdf92ed3c9
1 changed files with 16 additions and 6 deletions

View File

@ -352,12 +352,22 @@ class Recharge extends REST_Controller
$zy_type_id = intval($a[1]);
// 代码写死,东莞电信 company_id = 15 必须 supplier_id = 28否则不符合余额转移
if($this->user->company_id == 15 && $zy_supplier_id != 28){
if($this->user->company_id == 15){
if($zy_supplier_id != 28){
$this->response(array(
'status' => 0,
'message' => '当前只能转移公诚物业的积分账户',
'data' => array()
), REST_Controller::HTTP_OK);
}
if(!in_array($this->user->type_id, [200,201,202,204,206,208,218,224,225,234,239,272])){
$this->response(array(
'status' => 0,
'message' => '您的用户类型不支持余额转移功能',
'data' => array()
), REST_Controller::HTTP_OK);
}
}
$row = $this->Common_model->sql_get_one("select * from tb_account where supplier_id = {$zy_supplier_id} and type_id={$zy_type_id} and user_id = ".$this->user->id);