|
- <?php
-
- namespace backend\modules\zzcs\models;
-
-
- use Yii;
- use yii\db\ActiveRecord;
- use yii\base\Exception;
- use yii\db\Expression;
-
- /**
- * This is the model class for table "base_user".
- *
- * @property integer $ID
- * @property integer $MAIN_CORP_ID
- * @property string $USER_NAME
- * @property string $USER_PASSWORD
- * @property integer $ORG_ID
- * @property integer $TOP_ORG_ID
- * @property string $OPERA_ORG_ID
- * @property string $MENU_PERMISSION
- * @property string $USER_SIGN
- * @property integer $USER_TYPE
- * @property integer $USER_ROLE
- * @property string $TRUE_NAME
- * @property integer $STATUS
- * @property integer $CANCEL_FLAG
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- * @property string $PHONE_no
- */
- class BaseUser extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'base_user';
- }
-
- /**
- * @return \yii\db\Connection the database connection used by this AR class.
- */
- public static function getDb()
- {
- return Yii::$app->get('db');
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['MAIN_CORP_ID', 'MAIN_CORP_ID2', 'ORG_ID', 'TOP_ORG_ID', 'USER_TYPE', 'USER_ROLE', 'STATUS', 'CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'IS_RUN_DUTY'], 'integer'],
- [['STATUS'], 'required'],
- [['USER_NAME', 'OPERA_ORG_ID', 'USER_SIGN', 'TRUE_NAME'], 'string', 'max' => 100],
- [['USER_PASSWORD'], 'string', 'max' => 200],
- [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
- [['PHONE_no'], 'string', 'max' => 11],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'MAIN_CORP_ID' => 'CS运营主体ID',
- 'MAIN_CORP_ID2' => '车辆运营主体ID',
- 'USER_NAME' => '用户名',
- 'USER_PASSWORD' => '用户密码',
- 'ORG_ID' => '直属组织机构ID,BASE_ORGANIZATION.ORG_ID,非0',
- 'TOP_ORG_ID' => '产品所属顶级机构ID,BASE_ORGANIZATION.ORG_ID 是否需要支付 需要支付置0',
- 'OPERA_ORG_ID' => 'Opera Org ID',
- 'USER_SIGN' => '用户识别代码',
- 'USER_TYPE' => '0:全权限 1:仅直通巴士 2.穿梭巴士 3.组合线路 4:直通+穿梭 5.直通+组合 6.穿梭+组合',
- 'USER_ROLE' => 'User Role',
- 'TRUE_NAME' => 'True Name',
- 'STATUS' => 'Status',
- 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
- 'CREATE_USER_ID' => '记录创建用户ID',
- 'CREATE_TIME' => '记录创建时间',
- 'UPDATE_USER_ID' => '记录最后更新用户ID',
- 'UPDATE_TIME' => '记录最后更新时间',
- 'PHONE_no' => 'Phone No',
- ];
- }
-
- public function getUserInfo($user_id)
- {
- $return_array = self::find()->where(
- [
- 'and',
- ['=', 'ID', $user_id],
- ['=', 'CANCEL_FLAG', 0]
- ]
- )->asArray()->all();
- return $return_array;
- }
-
- public function getUserInfoFromName($user_name)
- {
- $return_array = self::find()->where(
- [
- 'and',
- ['=', 'USER_NAME', $user_name]
- ]
- )->asArray()->all();
- return $return_array;
- }
-
- public function getRole()
- {
- $cookies = Yii::$app->request->cookies;
- $user_id = $cookies->getValue('user_id', -1);
- $user = self::find()->where(['id' => $user_id])->one();
- if (!$user) {
- return -1;
- } else {
- return $user->USER_ROLE;
- }
- }
-
- public function updateUser($id, $user_name, $pass_word, $corporation, $corporation2, $user_role, $true_name, $phone_no, $status, $is_run_duty)
- {
- $cookies = Yii::$app->request->cookies;
- $user_id = $cookies->getValue('user_id', 1);
-
- //若无密码则保持原密码
- $user_info = self::find()->where(['id' => $id])->asArray()->one();
- if (!$pass_word) {
- $real_password = $user_info['USER_PASSWORD'];
- } else {
- $real_password = md5($pass_word);
- }
-
-
- $role = $this->getRole();
- if ($role !== 0 && $role !== 16 && $role !== 8 && $role !== 9 && $role !== 10) {
- $json['code'] = '8';
- $json['info'] = '无权限';
- return $json;
- }
- $values = [
- 'MAIN_CORP_ID' => $corporation,
- 'MAIN_CORP_ID2' => $corporation2,
- 'USER_NAME' => $user_name,
- 'USER_PASSWORD' => $real_password,
- 'ORG_ID' => '0',
- 'TOP_ORG_ID' => '0',
- 'USER_TYPE' => '0',
- 'USER_ROLE' => $user_role,
- 'TRUE_NAME' => $true_name,
- 'STATUS' => '0',
- 'CANCEL_FLAG' => $status,
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'PHONE_no' => $phone_no,
- 'IS_RUN_DUTY' => $is_run_duty
- ];
-
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //2.修改base_user表
- $base_one = self::findOne(['id' => $id]);
- $base_one->attributes = $values;
- $res = $base_one->update();
- if (!$res) {
- throw new Exception('修改出错');
- }
- //3修改base_user_role
-
- //3.1将原user的role的cancel_flag置为1
- $update_where1 = [
- 'USER_ID' => $id
- ];
- $arr1 = [
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'CANCEL_FLAG' => 1
- ];
- $res = BaseUserRole::updateAll($arr1, $update_where1);
- //3.2
- $role_list_string = $this->getRoleListByUserRole($user_role);
-
- if ($role_list_string) {
- $role_arr = explode(',', $role_list_string); //获取数组
- $spec = '';
- foreach ($role_arr as $k => $v) {
- $spec .= "($id,$v,0,$user_id,now(),$user_id,now()),";
- }
- $spec = trim($spec, ',');
-
- $update2 = "INSERT INTO base_user_role (USER_ID, USER_ROLE, CANCEL_FLAG,CREATE_USER_ID,CREATE_TIME,UPDATE_USER_ID,UPDATE_TIME)
- VALUES $spec
- ON DUPLICATE KEY UPDATE CANCEL_FLAG=0,UPDATE_TIME=NOW(),UPDATE_USER_ID=$user_id;";
-
- $res = Yii::$app->db->createCommand($update2)->execute();
- if (!$res) {
- throw new Exception('权限修改出错');
- }
- }
-
-
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '修改信息成功';
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
- public function addUser($user_name, $pass_word, $corporation, $corporation2, $user_role, $true_name, $phone_no, $is_run_duty)
- {
- $cookies = Yii::$app->request->cookies;
- $user_id = $cookies->getValue('user_id', 1);
- $role = $this->getRole();
- if ($role !== 0 && $role !== 16 && $role !== 8 && $role !== 9 && $role !== 10) {
- $json['code'] = '8';
- $json['info'] = '无权限';
- return $json;
- }
- if ($role !== 0) {
- $user_info = self::find()->select('MAIN_CORP_ID,MAIN_CORP_ID2')
- ->from(self::tableName())
- ->where(['and', ['=', 'id', $user_id], ['=', 'cancel_flag', 0]])
- ->asArray()
- ->one();
- $corporation = $user_info['MAIN_CORP_ID'];
- $corporation2 = $user_info['MAIN_CORP_ID2'];
- }
- if ($corporation == null) {
- $corporation = 1;
- }
- if ($corporation2 == null) {
- $corporation2 = 1;
- }
- $values = [
- 'MAIN_CORP_ID' => $corporation,
- 'MAIN_CORP_ID2' => $corporation2,
- 'USER_NAME' => $user_name,
- 'USER_PASSWORD' => md5($pass_word),
- 'ORG_ID' => '0',
- 'TOP_ORG_ID' => '0',
- 'USER_TYPE' => '0',
- 'USER_ROLE' => $user_role,
- 'TRUE_NAME' => $true_name,
- 'STATUS' => '0',
- 'CANCEL_FLAG' => '0',
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'PHONE_no' => $phone_no,
- 'IS_RUN_DUTY' => $is_run_duty
- ];
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //2.将数据存入base_user表
- $this->attributes = $values;
- $res = $this->insert();
- if (!$res) {
- throw new Exception('添加出错');
- }
- $id = $this->ID;
- //根据user_role从base_user_auth里面查询出字符串
- $role_list_string = $this->getRoleListByUserRole($user_role);
- //
- $arr = explode(',', $role_list_string); //获取数组
- $matrix = array();
- foreach ($arr as $k => $v) { //$v是各个权限
- $matrix[] = [
- 'USER_ID' => $id,
- 'USER_ROLE' => $v,
- 'CANCEL_FLAG' => '0',
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time())
- ];
- }
- $res = Yii::$app->db->createCommand()->batchInsert('base_user_role',
- ['USER_ID', 'USER_ROLE', 'CANCEL_FLAG', 'CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_USER_ID', 'UPDATE_TIME'],
- $matrix)->execute();
- if (!$res) {
- throw new Exception('权限插入出错');
- }
-
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '添加账号成功';
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
- public function getRoleListByUserRole($user_role)
- {
- $sql_where = [
- 'and',
- ['=', 'id', $user_role]
- ];
- $role_list = self::find()->select("role_list")//查出所有的权限
- ->from("base_user_auth")
- ->filterWhere($sql_where)
- ->asArray()
- ->one();
- return $role_list['role_list'];
- }
-
- public function checkUser($user_name)
- {
- $sql_where = [
- 'and',
- ['=', 'user_name', $user_name]
- ];
- $all_user_role = self::find()->select(" user_name")//查出所有的权限
- ->from("base_user")
- ->filterWhere($sql_where)
- ->asArray()
- ->all();
- if (count($all_user_role) > 0) { //该账号已经存在
- $data['code'] = '1';
- } else {
- $data['code'] = '0';
- }
-
-
- return $data;
- }
-
- public function getAllRole()
- {
- // $user_main_corp = $this->getMainCorp();//不再区分是否超级管理员
- $role = $this->getUserRole();
- $user_role = $role['user_role'];//当前用户的user_role
- if($user_role == 8){
- $where = ['and'];
- $where[] = ['=', 'sys', 0];
- $where[] = ['in', 'id', [2,3]];
- }elseif ($user_role == 9){
- $where = ['and'];
- $where[] = ['=', 'sys', 0];
- $where[] = ['in', 'id', [5,6]];
- }elseif ($user_role == 10){
- $where = ['and'];
- $where[] = ['=', 'sys', 0];
- $where[] = ['=', 'id', 7];
- }else{
- $where = ['=', 'sys', 0];
- }
-
- $all_user_role = self::find()->select(" id as user_role_id,auth_name as user_role")
- ->from(BaseUserAuth::tableName())
- ->where($where)
- // ->createCommand()->getRawSql();
- ->asArray()
- ->all();
- $data['all_user_role'] = $all_user_role;
- return $data;
- }
-
- public function getUserInformationById($id)
- {
- $sql_where = [
- 'and',
- ['=', 'm.cancel_flag', 0],
- ['=', 'a.id', $id]
- ];
- $rows = self::find()->select("a.id,a.cancel_flag,a.user_name,a.user_password,a.main_corp_id,a.main_corp_id2,m.corporation_name,m2.corporation_name as corporation_name2,a.user_role as user_role_id,u.auth_name as user_role,a.true_name,a.phone_no,a.is_run_duty")
- ->from("base_user a")
- ->leftJoin("base_main_corporation m", "a.main_corp_id = m.id")
- ->leftJoin("base_main_corporation m2", "a.main_corp_id2 = m2.id")
- ->rightJoin("base_user_auth u", "a.user_role = u.id")
- ->filterWhere($sql_where)
- ->asArray()
- ->all();
- $data['rows'] = $rows;
- return $data;
- }
-
- /**
- * 获取用户信息列表
- * @param int $page_size 该页条数
- * @param int $current_page 当前页数
- * @return array|ActiveRecord[] 返回结果
- */
- public function getUserList($page_size = 10, $current_page = 1, $user_name = '', $corporation_name = '', $corporation_name2 = '', $user_role = '', $true_name = '', $phone_no = '', $is_run_duty = -1)
- {
- $base_user = new BaseUser();
- //查出当前用户所属运营主体,以及是否为admin
- $cookies = Yii::$app->request->cookies;
- $user_id = $cookies->getValue('user_id');
- $user_main_corp = self::find()->select('main_corp_id')->from(self::tableName())->where(['and', ['=', 'id', $user_id], ['=', 'cancel_flag', 0]])
- ->asArray()->one();
- $offset = ($current_page - 1) * $page_size;
- $sql_where = [
- 'and',
- ['=', 'm.cancel_flag', 0],
- [
- 'or', 'a.org_id=0', "a.menu_permission <> ''"
- ],
- ['=', 'a.top_org_id', 0],
- ['like', 'a.user_name', $user_name],
- ['=', 'm.corporation_name', $corporation_name],
- ['=', 'm2.corporation_name', $corporation_name2],
- ['=', 'a.user_role', $user_role],
- ['like', 'a.true_name', $true_name],
- ['like', 'a.phone_no', $phone_no]
- ];
- //根据用户的user_role来选择列表
- $role = $this->getUserRole();
- $user_role = $role['user_role'];//当前用户的user_role
- if($user_role == 8){
- $sql_where[] = ['in', 'a.user_role', [2,3]];
- }elseif ($user_role == 9){
- $sql_where[] = ['in', 'a.user_role', [5,6]];
- }elseif ($user_role == 10){
- $sql_where[] = ['=', 'a.user_role', 7];
- }
-
- if ($user_id != 1) {
- $sql_where[] = ['=', 'a.main_corp_id', $user_main_corp['main_corp_id']];
- }
- if ($is_run_duty != -1) {
- $sql_where[] = ['=', 'a.is_run_duty', $is_run_duty];
- }
- $rows = self::find()->select("a.id as user_id,a.user_name as user_name,m.corporation_name as corporation_name,m2.corporation_name as corporation_name2,a.user_role as user_role_id,u.auth_name as user_role,a.true_name as true_name,a.status,a.cancel_flag,a.create_user_id,a.create_time,a.update_user_id,a.update_time,a.phone_no as phone_no,a.is_run_duty")
- ->from("base_user a")
- ->leftJoin("base_main_corporation m", "a.main_corp_id = m.id")
- ->leftJoin("base_main_corporation m2", "a.main_corp_id2 = m2.id")
- ->rightJoin("base_user_auth u", "a.user_role = u.id")
- ->filterWhere($sql_where)
- ->orderBy('update_time desc')
- ->offset($offset)
- ->limit($page_size)
- // ->createCommand()->getRawSql();
- ->asArray()
- ->all();
-
- #region 3.获取分页
- $total_row = self::find()->from(self::tableName() . ' as a')
- ->leftJoin(BaseMainCorporation::tableName() . ' as m', 'a.main_corp_id = m.id')
- ->leftJoin(BaseMainCorporation::tableName() . ' as m2', 'a.main_corp_id2 = m2.id')
- ->rightJoin("base_user_auth u", "a.user_role = u.id")
- ->filterWhere($sql_where)
- ->orderBy(['m.id' => SORT_DESC])
- ->count();
-
-
- $page_arr = $base_user->getPage($total_row, $page_size, $current_page);
- #endregion
-
- $data['rows'] = $rows;
- $data['page_arr'] = $page_arr;
- $data['page']['page_size'] = $page_size;
- $data['page']['current_page'] = $current_page;
- $data['page']['total_row'] = $total_row;
- $data['page']['total_page'] = ceil($total_row / $page_size);
- $data['level'] = $user_id;
-
-
- return $data;
- }
-
- /**
- * Function Description:获取分页数组
- * Function Name: getPage
- * @param int $total_row 总条数
- * @param int $page_size 每页条数
- * @param int $current_page 当前页
- *
- * @return array
- *
- * @author 傅冬荣
- */
- public function getPage($total_row, $page_size, $current_page)
- {
- $total_page = ceil($total_row / $page_size);
- if ($total_page <= 1) {
- $page_arr = [];
- return $page_arr;
- }
- #region 页首
- $page_arr = ['首页', '<上一页', 1];
- #endregion
-
- #region 页前
- if ($current_page <= 5) {
- for ($i = 2; $i <= $current_page; $i++) {
- $page_arr[] = $i;
- }
- } else {
- if ($total_page > 6) {
- $page_arr[] = '...';
- }
- if ($total_page - $current_page <= 2) {
- for ($i = $total_page - 4; $i <= $current_page; $i++) {
- $page_arr[] = $i;
- }
- } else {
- $page_arr[] = $current_page - 2;
- $page_arr[] = $current_page - 1;
- $page_arr[] = $current_page;
- }
- }
- #endregion
-
- #region 页后
- if ($total_page - $current_page <= 4) {
- for ($i = $current_page + 1; $i < $total_page; $i++) {
- $page_arr[] = $i;
- }
- } else {
- if ($current_page >= 3) {
- $page_arr[] = $current_page + 1;
- $page_arr[] = $current_page + 2;
- if ($total_page > 6) {
- $page_arr[] = '...';
- }
- } else {
- for ($i = $current_page + 1; $i <= 5; $i++) {
- $page_arr[] = $i;
- }
- if ($total_page > 6) {
- $page_arr[] = '...';
- }
- }
- }
- #endregion
-
- #region 页尾
- if ($current_page != $total_page) {
- $page_arr[] = $total_page;
- }
- $page_arr[] = '下一页>';
- $page_arr[] = '末页';
- #endregion
-
- return $page_arr;
- }
-
- /**
- * Function Description:插入重置验证码数据
- * Function Name: addResetAuthCode
- * @author Redstop
- */
- public function addResetAuthCode($user_id, $user_mobile, $rand_code, $current_time)
- {
- $limit_time = date("Y-m-d H:i:s", strtotime($current_time . " +30 minutes"));
- $excute_sql = " INSERT INTO opera_reset_code (user_id,mobile_phone,auth_code,limit_time,check_status) VALUES ( {$user_id}, '{$user_mobile}', '{$rand_code}', '{$limit_time}', 0 ) " .
- " ON DUPLICATE KEY UPDATE mobile_phone='{$user_mobile}',auth_code='{$rand_code}', limit_time='{$limit_time}',check_status=0;";
- $res = Yii::$app->db->createCommand($excute_sql)->execute();
- return $res;
- }
-
- /**
- * Function Description:插入重置验证码数据
- * Function Name: addResetAuthCode
- * @author Redstop
- */
- public function getOperaResetCode($user_id)
- {
- $row = self::find()->select("user_id,auth_code,limit_time,check_status")->from("opera_reset_code")
- ->where(['and', ["=", "user_id", $user_id]])->asArray()->all();
- return $row;
- }
-
- /**
- * Function Description:更新验证码数据
- * Function Name: addResetAuthCode
- * @author Redstop
- */
- public function updateResetAuthCode($user_id, $check_status, $current_time)
- {
- $excute_sql = " UPDATE opera_reset_code set check_status={$check_status},check_time='{$current_time}' WHERE user_id={$user_id} ;";
- $res = Yii::$app->db->createCommand($excute_sql)->execute();
- return $res;
- }
-
- /**
- * Function Description:修改密码
- * Function Name: addResetAuthCode
- * @author Redstop
- */
- public function changeUserPassword($user_id, $new_password)
- {
- $password_md5 = md5($new_password);
- $excute_sql = " UPDATE base_user set user_password='{$password_md5}' WHERE id={$user_id} ;";
- $res = Yii::$app->db->createCommand($excute_sql)->execute();
- return $res;
- }
-
-
- /**
- * Function Description:根据用户获取其运营主体id
- * Function Name: getMainCorp
- * @return mixed
- *
- * @author 娄梦宁
- */
- public function getMainCorp()
- {
- $cookies = Yii::$app->request->cookies;
- $user_id = $cookies->getValue('user_id');
- $select = [
- 'main_corp_id' => new Expression("if(main_corp_id=0,1,main_corp_id)")
- ];
- $result = self::find()->select($select)->where(['id' => $user_id])->asArray()->one();
- return $result['main_corp_id'];
- }
-
- /**
- * Function Description:获取账户列表
- * Function Name: getAccountList
- * @param $supplier_id
- *
- * @return array|ActiveRecord[]
- *
- * @author 李健
- */
- public function getAccountList($supplier_id)
- {
- $select = [
- 'id',
- 'true_name',
- 'status'
- ];
- $where = ['and'];
- $where[] = ['=', 'cancel_flag', 0];
- $where[] = ['=', 'org_id', $supplier_id];
-
- $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
- return $res;
- }
-
- /**
- * Function Description:检查账户名
- * Function Name: checkUserName
- * @param $user_id
- * @param $user_name
- *
- * @return array|ActiveRecord[]
- *
- * @author 李健
- */
- public function checkUserName($user_id, $user_name)
- {
- $where = ['and'];
- if (!empty($user_id)) {
- $where[] = ['!=', 'id', $user_id];
- }
- $where[] = ['=', 'user_name', $user_name];
- $where[] = ['=', 'cancel_flag', 0];
- $select = ['user_name'];
-
- $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
- return $res;
- }
-
- /**
- * Function Description:添加账户
- * Function Name: insertUserInfo
- * @param $user_id
- * @param $time
- * @param $user_name
- * @param $org_id
- * @param $top_org_id
- * @param $password
- * @param $true_name
- * @param $phone_no
- * @param $status
- * @param $main_corp_id
- * @param $user_role
- *
- * @return bool
- *
- * @author 李健
- */
- public function insertUserInfo($user_id, $time, $user_name, $org_id, $top_org_id, $password, $true_name, $phone_no, $status, $main_corp_id, $user_role)
- {
- try {
- $this->CREATE_USER_ID = $user_id;
- $this->CREATE_TIME = $time;
- $this->USER_NAME = $user_name;
- $this->ORG_ID = $org_id;
- $this->TOP_ORG_ID = $top_org_id;
- $this->USER_PASSWORD = $password;
- $this->TRUE_NAME = $true_name;
- $this->PHONE_no = $phone_no;
- $this->STATUS = $status;
- $this->MAIN_CORP_ID = $main_corp_id;
- $this->USER_ROLE = $user_role;
- return $this->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:更新用户角色
- * Function Name: updateRole
- * @param $user_role
- * @param $new_user_id
- *
- * @return bool
- *
- * @author 李健
- */
- public function updateRole($user_role, $new_user_id)
- {
- try {
- $obj = self::findOne($new_user_id);
- $obj->USER_ROLE = $user_role;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:修改状态
- * Function Name: changeStatus
- * @param $user_id
- * @param $time
- * @param $status
- * @param $id
- *
- * @return bool
- *
- * @author 李健
- */
- public function changeStatus($user_id, $time, $status, $id)
- {
- try {
- $obj = self::findOne($id);
- $obj->UPDATE_USER_ID = $user_id;
- $obj->UPDATE_TIME = $time;
- $obj->STATUS = $status;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:删除信息
- * Function Name: deleteInfo
- * @param $user_id
- * @param $time
- * @param $id
- *
- * @return bool
- *
- * @author 李健
- */
- public function deleteInfo($user_id, $time, $id)
- {
- try {
- $obj = self::findOne($id);
- $obj->UPDATE_USER_ID = $user_id;
- $obj->UPDATE_TIME = $time;
- $obj->CANCEL_FLAG = 1;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:得到账户信息
- * Function Name: getAccountInfo
- * @param $user_id
- *
- * @return array|ActiveRecord[]
- *
- * @author 李健
- */
- public function getAccountInfo($user_id)
- {
- $select = [
- 'id',
- 'user_name',
- 'true_name',
- 'phone_no'
- ];
- $where = ['and'];
- $where[] = ['=', 'cancel_flag', 0];
- $where[] = ['=', 'id', $user_id];
-
- $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
- return $res;
- }
-
- /**
- * Function Description:修改默认密码
- * Function Name: alterPassword
- * @param $user_id
- * @param $time
- * @param $password
- * @param $id
- *
- * @return bool
- *
- * @author 李健
- */
- public function alterPassword($user_id, $time, $password, $id)
- {
- try {
- $obj = self::findOne($id);
- $obj->UPDATE_USER_ID = $user_id;
- $obj->UPDATE_TIME = $time;
- $obj->USER_PASSWORD = $password;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:修改用户信息
- * Function Name: alterUser
- * @param $user_id
- * @param $time
- * @param $user_name
- * @param $true_name
- * @param $phone_no
- * @param $id
- *
- * @return bool
- *
- * @author 李健
- */
- public function alterUser($user_id, $time, $user_name, $true_name, $phone_no, $id)
- {
- try {
- $obj = self::findOne($id);
- $obj->UPDATE_USER_ID = $user_id;
- $obj->UPDATE_TIME = $time;
- $obj->USER_NAME = $user_name;
- $obj->TRUE_NAME = $true_name;
- $obj->PHONE_no = $phone_no;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:获取采购负责人信息
- * Function Name: getPurchaser
- *
- * @return array|ActiveRecord[]
- *
- * @author 李健
- */
- public function getPurchaser()
- {
- $select = [
- 'id',
- 'true_name'
- ];
- $where = [
- 'and',
- ['!=', 'true_name', ''],
- ['=', 'cancel_flag', 0],
- ['in', 'user_role', [0, 1, 3, 6, 8]]
- ];
- $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
- return $res;
- }
-
- /**
- * Function Description:获取运营主体id
- * Function Name: getMainCorpId
- * @param $id
- *
- * @return array|ActiveRecord[]
- *
- * @author 李健
- */
- public function getMainCorpId($id)
- {
- $select = ['main_corp_id'];
- $where = ['and'];
- $where[] = ['=', 'id', $id];
- $where[] = ['=', 'cancel_flag', 0];
- $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
- return $res;
- }
-
- /**
- * Function Description:根据用户id获取用户信息
- * Function Name: getSomeUserInfo
- * @param $user_id
- *
- * @return array|null|ActiveRecord
- *
- * @author 冒炎
- */
- public function getSomeUserInfo($user_id)
- {
- $select = ['opera_org_id', 'main_corp_id'];
- $where = ['and'];
- $where[] = ['=', 'id', $user_id];
- $where[] = ['=', 'cancel_flag', 0];
- $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->one();
- return $res;
- }
-
-
- /**
- * Function Description:根据user_id获取该用户main_corp_id所属的运营负责人
- * Function Name: getRunDutyList
- * @param $user_id
- * @return array|ActiveRecord[]
- * @author 田玲菲
- */
- public function getRunDutyList($user_id){
- $select = [
- 'b.id',
- 'b.user_name',
- 'b.true_name',
- 'b.phone_no'
- ];
- $where = ['and'];
- $where[] = ['=', 'a.id', $user_id];
- $where[] = ['=', 'a.cancel_flag', 0];
- $res = self::find()->select($select)->from(self::tableName() .' as a')->innerJoin(self::tableName() .' as b','a.main_corp_id = b.main_corp_id and b.is_run_duty = 1')->where($where)->asArray()->all();
- return $res;
- }
-
-
- /**
- * Function Description:获取工单抄送/处理候选人
- * Function Name: getWorkOrderProple
- * @return array|ActiveRecord[]
- * @author 田玲菲
- */
- public function getWorkOrderPeople(){
- $select = [
- 'a.id',
- 'a.user_name',
- 'a.true_name',
- ];
- $where = ['and'];
- $where[] = ['=', 'a.cancel_flag', 0];
- $where[] = ['=', 'b.cancel_flag', 0];
- $roleArray = [1,5,6,7,9,10];
- $where[] = ['in', 'b.user_role', $roleArray];
- $res = self::find()->select($select)->from(self::tableName() .' as a')->leftJoin(BaseUserRole::tableName() .' as b','b.user_id = a.id')->distinct()->where($where)->asArray()->all();
- return $res;
- }
-
-
- /**
- * Function Description:获取当前登录用户的user_role
- * Function Name: getUserRole
- * @return array|null|ActiveRecord
- * @author 田玲菲
- */
- public function getUserRole(){
- $cookies = Yii::$app->request->cookies;
- $user_id = $cookies->getValue('user_id');
- $select = [
- 'user_role',
- ];
- $where = ['and'];
- $where[] = ['=', 'id', $user_id];
- $where[] = ['=', 'cancel_flag', 0];
- $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->one();
- return $res;
- }
- }
|