您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

992 行
31 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\db\ActiveRecord;
  5. use yii\base\Exception;
  6. use yii\db\Expression;
  7. /**
  8. * This is the model class for table "base_user".
  9. *
  10. * @property integer $ID
  11. * @property integer $MAIN_CORP_ID
  12. * @property string $USER_NAME
  13. * @property string $USER_PASSWORD
  14. * @property integer $ORG_ID
  15. * @property integer $TOP_ORG_ID
  16. * @property string $OPERA_ORG_ID
  17. * @property string $MENU_PERMISSION
  18. * @property string $USER_SIGN
  19. * @property integer $USER_TYPE
  20. * @property integer $USER_ROLE
  21. * @property string $TRUE_NAME
  22. * @property integer $STATUS
  23. * @property integer $CANCEL_FLAG
  24. * @property integer $CREATE_USER_ID
  25. * @property string $CREATE_TIME
  26. * @property integer $UPDATE_USER_ID
  27. * @property string $UPDATE_TIME
  28. * @property string $PHONE_no
  29. */
  30. class BaseUser extends ActiveRecord
  31. {
  32. /**
  33. * @inheritdoc
  34. */
  35. public static function tableName()
  36. {
  37. return 'base_user';
  38. }
  39. /**
  40. * @return \yii\db\Connection the database connection used by this AR class.
  41. */
  42. public static function getDb()
  43. {
  44. return Yii::$app->get('db');
  45. }
  46. /**
  47. * @inheritdoc
  48. */
  49. public function rules()
  50. {
  51. return [
  52. [['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'],
  53. [['STATUS'], 'required'],
  54. [['USER_NAME', 'OPERA_ORG_ID', 'USER_SIGN', 'TRUE_NAME'], 'string', 'max' => 100],
  55. [['USER_PASSWORD'], 'string', 'max' => 200],
  56. [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
  57. [['PHONE_no'], 'string', 'max' => 11],
  58. ];
  59. }
  60. /**
  61. * @inheritdoc
  62. */
  63. public function attributeLabels()
  64. {
  65. return [
  66. 'ID' => 'ID',
  67. 'MAIN_CORP_ID' => 'CS运营主体ID',
  68. 'MAIN_CORP_ID2' => '车辆运营主体ID',
  69. 'USER_NAME' => '用户名',
  70. 'USER_PASSWORD' => '用户密码',
  71. 'ORG_ID' => '直属组织机构ID,BASE_ORGANIZATION.ORG_ID,非0',
  72. 'TOP_ORG_ID' => '产品所属顶级机构ID,BASE_ORGANIZATION.ORG_ID 是否需要支付 需要支付置0',
  73. 'OPERA_ORG_ID' => 'Opera Org ID',
  74. 'USER_SIGN' => '用户识别代码',
  75. 'USER_TYPE' => '0:全权限 1:仅直通巴士 2.穿梭巴士 3.组合线路 4:直通+穿梭 5.直通+组合 6.穿梭+组合',
  76. 'USER_ROLE' => 'User Role',
  77. 'TRUE_NAME' => 'True Name',
  78. 'STATUS' => 'Status',
  79. 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
  80. 'CREATE_USER_ID' => '记录创建用户ID',
  81. 'CREATE_TIME' => '记录创建时间',
  82. 'UPDATE_USER_ID' => '记录最后更新用户ID',
  83. 'UPDATE_TIME' => '记录最后更新时间',
  84. 'PHONE_no' => 'Phone No',
  85. ];
  86. }
  87. public function getUserInfo($user_id)
  88. {
  89. $return_array = self::find()->where(
  90. [
  91. 'and',
  92. ['=', 'ID', $user_id],
  93. ['=', 'CANCEL_FLAG', 0]
  94. ]
  95. )->asArray()->all();
  96. return $return_array;
  97. }
  98. public function getUserInfoFromName($user_name)
  99. {
  100. $return_array = self::find()->where(
  101. [
  102. 'and',
  103. ['=', 'USER_NAME', $user_name]
  104. ]
  105. )->asArray()->all();
  106. return $return_array;
  107. }
  108. public function getRole()
  109. {
  110. $cookies = Yii::$app->request->cookies;
  111. $user_id = $cookies->getValue('user_id', -1);
  112. $user = self::find()->where(['id' => $user_id])->one();
  113. if (!$user) {
  114. return -1;
  115. } else {
  116. return $user->USER_ROLE;
  117. }
  118. }
  119. public function updateUser($id, $user_name, $pass_word, $corporation, $corporation2, $user_role, $true_name, $phone_no, $status, $is_run_duty)
  120. {
  121. $cookies = Yii::$app->request->cookies;
  122. $user_id = $cookies->getValue('user_id', 1);
  123. //若无密码则保持原密码
  124. $user_info = self::find()->where(['id' => $id])->asArray()->one();
  125. if (!$pass_word) {
  126. $real_password = $user_info['USER_PASSWORD'];
  127. } else {
  128. $real_password = md5($pass_word);
  129. }
  130. $role = $this->getRole();
  131. if ($role !== 0 && $role !== 16 && $role !== 8 && $role !== 9 && $role !== 10) {
  132. $json['code'] = '8';
  133. $json['info'] = '无权限';
  134. return $json;
  135. }
  136. $values = [
  137. 'MAIN_CORP_ID' => $corporation,
  138. 'MAIN_CORP_ID2' => $corporation2,
  139. 'USER_NAME' => $user_name,
  140. 'USER_PASSWORD' => $real_password,
  141. 'ORG_ID' => '0',
  142. 'TOP_ORG_ID' => '0',
  143. 'USER_TYPE' => '0',
  144. 'USER_ROLE' => $user_role,
  145. 'TRUE_NAME' => $true_name,
  146. 'STATUS' => '0',
  147. 'CANCEL_FLAG' => $status,
  148. 'CREATE_USER_ID' => $user_id,
  149. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  150. 'UPDATE_USER_ID' => $user_id,
  151. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  152. 'PHONE_no' => $phone_no,
  153. 'IS_RUN_DUTY' => $is_run_duty
  154. ];
  155. $transaction = Yii::$app->db->beginTransaction();
  156. try {
  157. //2.修改base_user表
  158. $base_one = self::findOne(['id' => $id]);
  159. $base_one->attributes = $values;
  160. $res = $base_one->update();
  161. if (!$res) {
  162. throw new Exception('修改出错');
  163. }
  164. //3修改base_user_role
  165. //3.1将原user的role的cancel_flag置为1
  166. $update_where1 = [
  167. 'USER_ID' => $id
  168. ];
  169. $arr1 = [
  170. 'UPDATE_USER_ID' => $user_id,
  171. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  172. 'CANCEL_FLAG' => 1
  173. ];
  174. $res = BaseUserRole::updateAll($arr1, $update_where1);
  175. //3.2
  176. $role_list_string = $this->getRoleListByUserRole($user_role);
  177. if ($role_list_string) {
  178. $role_arr = explode(',', $role_list_string); //获取数组
  179. $spec = '';
  180. foreach ($role_arr as $k => $v) {
  181. $spec .= "($id,$v,0,$user_id,now(),$user_id,now()),";
  182. }
  183. $spec = trim($spec, ',');
  184. $update2 = "INSERT INTO base_user_role (USER_ID, USER_ROLE, CANCEL_FLAG,CREATE_USER_ID,CREATE_TIME,UPDATE_USER_ID,UPDATE_TIME)
  185. VALUES $spec
  186. ON DUPLICATE KEY UPDATE CANCEL_FLAG=0,UPDATE_TIME=NOW(),UPDATE_USER_ID=$user_id;";
  187. $res = Yii::$app->db->createCommand($update2)->execute();
  188. if (!$res) {
  189. throw new Exception('权限修改出错');
  190. }
  191. }
  192. $transaction->commit();
  193. $json['code'] = '0';
  194. $json['info'] = '修改信息成功';
  195. } catch (Exception $e) {
  196. # 回滚事务
  197. $transaction->rollback();
  198. $json['code'] = '1';
  199. $json['info'] = $e->getMessage();
  200. }
  201. return $json;
  202. }
  203. public function addUser($user_name, $pass_word, $corporation, $corporation2, $user_role, $true_name, $phone_no, $is_run_duty)
  204. {
  205. $cookies = Yii::$app->request->cookies;
  206. $user_id = $cookies->getValue('user_id', 1);
  207. $role = $this->getRole();
  208. if ($role !== 0 && $role !== 16 && $role !== 8 && $role !== 9 && $role !== 10) {
  209. $json['code'] = '8';
  210. $json['info'] = '无权限';
  211. return $json;
  212. }
  213. if ($role !== 0) {
  214. $user_info = self::find()->select('MAIN_CORP_ID,MAIN_CORP_ID2')
  215. ->from(self::tableName())
  216. ->where(['and', ['=', 'id', $user_id], ['=', 'cancel_flag', 0]])
  217. ->asArray()
  218. ->one();
  219. $corporation = $user_info['MAIN_CORP_ID'];
  220. $corporation2 = $user_info['MAIN_CORP_ID2'];
  221. }
  222. if ($corporation == null) {
  223. $corporation = 1;
  224. }
  225. if ($corporation2 == null) {
  226. $corporation2 = 1;
  227. }
  228. $values = [
  229. 'MAIN_CORP_ID' => $corporation,
  230. 'MAIN_CORP_ID2' => $corporation2,
  231. 'USER_NAME' => $user_name,
  232. 'USER_PASSWORD' => md5($pass_word),
  233. 'ORG_ID' => '0',
  234. 'TOP_ORG_ID' => '0',
  235. 'USER_TYPE' => '0',
  236. 'USER_ROLE' => $user_role,
  237. 'TRUE_NAME' => $true_name,
  238. 'STATUS' => '0',
  239. 'CANCEL_FLAG' => '0',
  240. 'CREATE_USER_ID' => $user_id,
  241. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  242. 'UPDATE_USER_ID' => $user_id,
  243. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  244. 'PHONE_no' => $phone_no,
  245. 'IS_RUN_DUTY' => $is_run_duty
  246. ];
  247. $transaction = Yii::$app->db->beginTransaction();
  248. try {
  249. //2.将数据存入base_user表
  250. $this->attributes = $values;
  251. $res = $this->insert();
  252. if (!$res) {
  253. throw new Exception('添加出错');
  254. }
  255. $id = $this->ID;
  256. //根据user_role从base_user_auth里面查询出字符串
  257. $role_list_string = $this->getRoleListByUserRole($user_role);
  258. //
  259. $arr = explode(',', $role_list_string); //获取数组
  260. $matrix = array();
  261. foreach ($arr as $k => $v) { //$v是各个权限
  262. $matrix[] = [
  263. 'USER_ID' => $id,
  264. 'USER_ROLE' => $v,
  265. 'CANCEL_FLAG' => '0',
  266. 'CREATE_USER_ID' => $user_id,
  267. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  268. 'UPDATE_USER_ID' => $user_id,
  269. 'UPDATE_TIME' => date('Y-m-d H:i:s', time())
  270. ];
  271. }
  272. $res = Yii::$app->db->createCommand()->batchInsert('base_user_role',
  273. ['USER_ID', 'USER_ROLE', 'CANCEL_FLAG', 'CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_USER_ID', 'UPDATE_TIME'],
  274. $matrix)->execute();
  275. if (!$res) {
  276. throw new Exception('权限插入出错');
  277. }
  278. $transaction->commit();
  279. $json['code'] = '0';
  280. $json['info'] = '添加账号成功';
  281. } catch (Exception $e) {
  282. # 回滚事务
  283. $transaction->rollback();
  284. $json['code'] = '1';
  285. $json['info'] = $e->getMessage();
  286. }
  287. return $json;
  288. }
  289. public function getRoleListByUserRole($user_role)
  290. {
  291. $sql_where = [
  292. 'and',
  293. ['=', 'id', $user_role]
  294. ];
  295. $role_list = self::find()->select("role_list")//查出所有的权限
  296. ->from("base_user_auth")
  297. ->filterWhere($sql_where)
  298. ->asArray()
  299. ->one();
  300. return $role_list['role_list'];
  301. }
  302. public function checkUser($user_name)
  303. {
  304. $sql_where = [
  305. 'and',
  306. ['=', 'user_name', $user_name]
  307. ];
  308. $all_user_role = self::find()->select(" user_name")//查出所有的权限
  309. ->from("base_user")
  310. ->filterWhere($sql_where)
  311. ->asArray()
  312. ->all();
  313. if (count($all_user_role) > 0) { //该账号已经存在
  314. $data['code'] = '1';
  315. } else {
  316. $data['code'] = '0';
  317. }
  318. return $data;
  319. }
  320. public function getAllRole()
  321. {
  322. // $user_main_corp = $this->getMainCorp();//不再区分是否超级管理员
  323. $role = $this->getUserRole();
  324. $user_role = $role['user_role'];//当前用户的user_role
  325. if($user_role == 8){
  326. $where = ['and'];
  327. $where[] = ['=', 'sys', 0];
  328. $where[] = ['in', 'id', [2,3]];
  329. }elseif ($user_role == 9){
  330. $where = ['and'];
  331. $where[] = ['=', 'sys', 0];
  332. $where[] = ['in', 'id', [5,6]];
  333. }elseif ($user_role == 10){
  334. $where = ['and'];
  335. $where[] = ['=', 'sys', 0];
  336. $where[] = ['=', 'id', 7];
  337. }else{
  338. $where = ['=', 'sys', 0];
  339. }
  340. $all_user_role = self::find()->select(" id as user_role_id,auth_name as user_role")
  341. ->from(BaseUserAuth::tableName())
  342. ->where($where)
  343. // ->createCommand()->getRawSql();
  344. ->asArray()
  345. ->all();
  346. $data['all_user_role'] = $all_user_role;
  347. return $data;
  348. }
  349. public function getUserInformationById($id)
  350. {
  351. $sql_where = [
  352. 'and',
  353. ['=', 'm.cancel_flag', 0],
  354. ['=', 'a.id', $id]
  355. ];
  356. $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")
  357. ->from("base_user a")
  358. ->leftJoin("base_main_corporation m", "a.main_corp_id = m.id")
  359. ->leftJoin("base_main_corporation m2", "a.main_corp_id2 = m2.id")
  360. ->rightJoin("base_user_auth u", "a.user_role = u.id")
  361. ->filterWhere($sql_where)
  362. ->asArray()
  363. ->all();
  364. $data['rows'] = $rows;
  365. return $data;
  366. }
  367. /**
  368. * 获取用户信息列表
  369. * @param int $page_size 该页条数
  370. * @param int $current_page 当前页数
  371. * @return array|ActiveRecord[] 返回结果
  372. */
  373. 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)
  374. {
  375. $base_user = new BaseUser();
  376. //查出当前用户所属运营主体,以及是否为admin
  377. $cookies = Yii::$app->request->cookies;
  378. $user_id = $cookies->getValue('user_id');
  379. $user_main_corp = self::find()->select('main_corp_id')->from(self::tableName())->where(['and', ['=', 'id', $user_id], ['=', 'cancel_flag', 0]])
  380. ->asArray()->one();
  381. $offset = ($current_page - 1) * $page_size;
  382. $sql_where = [
  383. 'and',
  384. ['=', 'm.cancel_flag', 0],
  385. [
  386. 'or', 'a.org_id=0', "a.menu_permission <> ''"
  387. ],
  388. ['=', 'a.top_org_id', 0],
  389. ['like', 'a.user_name', $user_name],
  390. ['=', 'm.corporation_name', $corporation_name],
  391. ['=', 'm2.corporation_name', $corporation_name2],
  392. ['=', 'a.user_role', $user_role],
  393. ['like', 'a.true_name', $true_name],
  394. ['like', 'a.phone_no', $phone_no]
  395. ];
  396. //根据用户的user_role来选择列表
  397. $role = $this->getUserRole();
  398. $user_role = $role['user_role'];//当前用户的user_role
  399. if($user_role == 8){
  400. $sql_where[] = ['in', 'a.user_role', [2,3]];
  401. }elseif ($user_role == 9){
  402. $sql_where[] = ['in', 'a.user_role', [5,6]];
  403. }elseif ($user_role == 10){
  404. $sql_where[] = ['=', 'a.user_role', 7];
  405. }
  406. if ($user_id != 1) {
  407. $sql_where[] = ['=', 'a.main_corp_id', $user_main_corp['main_corp_id']];
  408. }
  409. if ($is_run_duty != -1) {
  410. $sql_where[] = ['=', 'a.is_run_duty', $is_run_duty];
  411. }
  412. $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")
  413. ->from("base_user a")
  414. ->leftJoin("base_main_corporation m", "a.main_corp_id = m.id")
  415. ->leftJoin("base_main_corporation m2", "a.main_corp_id2 = m2.id")
  416. ->rightJoin("base_user_auth u", "a.user_role = u.id")
  417. ->filterWhere($sql_where)
  418. ->orderBy('update_time desc')
  419. ->offset($offset)
  420. ->limit($page_size)
  421. // ->createCommand()->getRawSql();
  422. ->asArray()
  423. ->all();
  424. #region 3.获取分页
  425. $total_row = self::find()->from(self::tableName() . ' as a')
  426. ->leftJoin(BaseMainCorporation::tableName() . ' as m', 'a.main_corp_id = m.id')
  427. ->leftJoin(BaseMainCorporation::tableName() . ' as m2', 'a.main_corp_id2 = m2.id')
  428. ->rightJoin("base_user_auth u", "a.user_role = u.id")
  429. ->filterWhere($sql_where)
  430. ->orderBy(['m.id' => SORT_DESC])
  431. ->count();
  432. $page_arr = $base_user->getPage($total_row, $page_size, $current_page);
  433. #endregion
  434. $data['rows'] = $rows;
  435. $data['page_arr'] = $page_arr;
  436. $data['page']['page_size'] = $page_size;
  437. $data['page']['current_page'] = $current_page;
  438. $data['page']['total_row'] = $total_row;
  439. $data['page']['total_page'] = ceil($total_row / $page_size);
  440. $data['level'] = $user_id;
  441. return $data;
  442. }
  443. /**
  444. * Function Description:获取分页数组
  445. * Function Name: getPage
  446. * @param int $total_row 总条数
  447. * @param int $page_size 每页条数
  448. * @param int $current_page 当前页
  449. *
  450. * @return array
  451. *
  452. * @author 傅冬荣
  453. */
  454. public function getPage($total_row, $page_size, $current_page)
  455. {
  456. $total_page = ceil($total_row / $page_size);
  457. if ($total_page <= 1) {
  458. $page_arr = [];
  459. return $page_arr;
  460. }
  461. #region 页首
  462. $page_arr = ['首页', '<上一页', 1];
  463. #endregion
  464. #region 页前
  465. if ($current_page <= 5) {
  466. for ($i = 2; $i <= $current_page; $i++) {
  467. $page_arr[] = $i;
  468. }
  469. } else {
  470. if ($total_page > 6) {
  471. $page_arr[] = '...';
  472. }
  473. if ($total_page - $current_page <= 2) {
  474. for ($i = $total_page - 4; $i <= $current_page; $i++) {
  475. $page_arr[] = $i;
  476. }
  477. } else {
  478. $page_arr[] = $current_page - 2;
  479. $page_arr[] = $current_page - 1;
  480. $page_arr[] = $current_page;
  481. }
  482. }
  483. #endregion
  484. #region 页后
  485. if ($total_page - $current_page <= 4) {
  486. for ($i = $current_page + 1; $i < $total_page; $i++) {
  487. $page_arr[] = $i;
  488. }
  489. } else {
  490. if ($current_page >= 3) {
  491. $page_arr[] = $current_page + 1;
  492. $page_arr[] = $current_page + 2;
  493. if ($total_page > 6) {
  494. $page_arr[] = '...';
  495. }
  496. } else {
  497. for ($i = $current_page + 1; $i <= 5; $i++) {
  498. $page_arr[] = $i;
  499. }
  500. if ($total_page > 6) {
  501. $page_arr[] = '...';
  502. }
  503. }
  504. }
  505. #endregion
  506. #region 页尾
  507. if ($current_page != $total_page) {
  508. $page_arr[] = $total_page;
  509. }
  510. $page_arr[] = '下一页>';
  511. $page_arr[] = '末页';
  512. #endregion
  513. return $page_arr;
  514. }
  515. /**
  516. * Function Description:插入重置验证码数据
  517. * Function Name: addResetAuthCode
  518. * @author Redstop
  519. */
  520. public function addResetAuthCode($user_id, $user_mobile, $rand_code, $current_time)
  521. {
  522. $limit_time = date("Y-m-d H:i:s", strtotime($current_time . " +30 minutes"));
  523. $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 ) " .
  524. " ON DUPLICATE KEY UPDATE mobile_phone='{$user_mobile}',auth_code='{$rand_code}', limit_time='{$limit_time}',check_status=0;";
  525. $res = Yii::$app->db->createCommand($excute_sql)->execute();
  526. return $res;
  527. }
  528. /**
  529. * Function Description:插入重置验证码数据
  530. * Function Name: addResetAuthCode
  531. * @author Redstop
  532. */
  533. public function getOperaResetCode($user_id)
  534. {
  535. $row = self::find()->select("user_id,auth_code,limit_time,check_status")->from("opera_reset_code")
  536. ->where(['and', ["=", "user_id", $user_id]])->asArray()->all();
  537. return $row;
  538. }
  539. /**
  540. * Function Description:更新验证码数据
  541. * Function Name: addResetAuthCode
  542. * @author Redstop
  543. */
  544. public function updateResetAuthCode($user_id, $check_status, $current_time)
  545. {
  546. $excute_sql = " UPDATE opera_reset_code set check_status={$check_status},check_time='{$current_time}' WHERE user_id={$user_id} ;";
  547. $res = Yii::$app->db->createCommand($excute_sql)->execute();
  548. return $res;
  549. }
  550. /**
  551. * Function Description:修改密码
  552. * Function Name: addResetAuthCode
  553. * @author Redstop
  554. */
  555. public function changeUserPassword($user_id, $new_password)
  556. {
  557. $password_md5 = md5($new_password);
  558. $excute_sql = " UPDATE base_user set user_password='{$password_md5}' WHERE id={$user_id} ;";
  559. $res = Yii::$app->db->createCommand($excute_sql)->execute();
  560. return $res;
  561. }
  562. /**
  563. * Function Description:根据用户获取其运营主体id
  564. * Function Name: getMainCorp
  565. * @return mixed
  566. *
  567. * @author 娄梦宁
  568. */
  569. public function getMainCorp()
  570. {
  571. $cookies = Yii::$app->request->cookies;
  572. $user_id = $cookies->getValue('user_id');
  573. $select = [
  574. 'main_corp_id' => new Expression("if(main_corp_id=0,1,main_corp_id)")
  575. ];
  576. $result = self::find()->select($select)->where(['id' => $user_id])->asArray()->one();
  577. return $result['main_corp_id'];
  578. }
  579. /**
  580. * Function Description:获取账户列表
  581. * Function Name: getAccountList
  582. * @param $supplier_id
  583. *
  584. * @return array|ActiveRecord[]
  585. *
  586. * @author 李健
  587. */
  588. public function getAccountList($supplier_id)
  589. {
  590. $select = [
  591. 'id',
  592. 'true_name',
  593. 'status'
  594. ];
  595. $where = ['and'];
  596. $where[] = ['=', 'cancel_flag', 0];
  597. $where[] = ['=', 'org_id', $supplier_id];
  598. $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
  599. return $res;
  600. }
  601. /**
  602. * Function Description:检查账户名
  603. * Function Name: checkUserName
  604. * @param $user_id
  605. * @param $user_name
  606. *
  607. * @return array|ActiveRecord[]
  608. *
  609. * @author 李健
  610. */
  611. public function checkUserName($user_id, $user_name)
  612. {
  613. $where = ['and'];
  614. if (!empty($user_id)) {
  615. $where[] = ['!=', 'id', $user_id];
  616. }
  617. $where[] = ['=', 'user_name', $user_name];
  618. $where[] = ['=', 'cancel_flag', 0];
  619. $select = ['user_name'];
  620. $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
  621. return $res;
  622. }
  623. /**
  624. * Function Description:添加账户
  625. * Function Name: insertUserInfo
  626. * @param $user_id
  627. * @param $time
  628. * @param $user_name
  629. * @param $org_id
  630. * @param $top_org_id
  631. * @param $password
  632. * @param $true_name
  633. * @param $phone_no
  634. * @param $status
  635. * @param $main_corp_id
  636. * @param $user_role
  637. *
  638. * @return bool
  639. *
  640. * @author 李健
  641. */
  642. public function insertUserInfo($user_id, $time, $user_name, $org_id, $top_org_id, $password, $true_name, $phone_no, $status, $main_corp_id, $user_role)
  643. {
  644. try {
  645. $this->CREATE_USER_ID = $user_id;
  646. $this->CREATE_TIME = $time;
  647. $this->USER_NAME = $user_name;
  648. $this->ORG_ID = $org_id;
  649. $this->TOP_ORG_ID = $top_org_id;
  650. $this->USER_PASSWORD = $password;
  651. $this->TRUE_NAME = $true_name;
  652. $this->PHONE_no = $phone_no;
  653. $this->STATUS = $status;
  654. $this->MAIN_CORP_ID = $main_corp_id;
  655. $this->USER_ROLE = $user_role;
  656. return $this->save();
  657. } catch (Exception $e) {
  658. return false;
  659. }
  660. }
  661. /**
  662. * Function Description:更新用户角色
  663. * Function Name: updateRole
  664. * @param $user_role
  665. * @param $new_user_id
  666. *
  667. * @return bool
  668. *
  669. * @author 李健
  670. */
  671. public function updateRole($user_role, $new_user_id)
  672. {
  673. try {
  674. $obj = self::findOne($new_user_id);
  675. $obj->USER_ROLE = $user_role;
  676. return $obj->save();
  677. } catch (Exception $e) {
  678. return false;
  679. }
  680. }
  681. /**
  682. * Function Description:修改状态
  683. * Function Name: changeStatus
  684. * @param $user_id
  685. * @param $time
  686. * @param $status
  687. * @param $id
  688. *
  689. * @return bool
  690. *
  691. * @author 李健
  692. */
  693. public function changeStatus($user_id, $time, $status, $id)
  694. {
  695. try {
  696. $obj = self::findOne($id);
  697. $obj->UPDATE_USER_ID = $user_id;
  698. $obj->UPDATE_TIME = $time;
  699. $obj->STATUS = $status;
  700. return $obj->save();
  701. } catch (Exception $e) {
  702. return false;
  703. }
  704. }
  705. /**
  706. * Function Description:删除信息
  707. * Function Name: deleteInfo
  708. * @param $user_id
  709. * @param $time
  710. * @param $id
  711. *
  712. * @return bool
  713. *
  714. * @author 李健
  715. */
  716. public function deleteInfo($user_id, $time, $id)
  717. {
  718. try {
  719. $obj = self::findOne($id);
  720. $obj->UPDATE_USER_ID = $user_id;
  721. $obj->UPDATE_TIME = $time;
  722. $obj->CANCEL_FLAG = 1;
  723. return $obj->save();
  724. } catch (Exception $e) {
  725. return false;
  726. }
  727. }
  728. /**
  729. * Function Description:得到账户信息
  730. * Function Name: getAccountInfo
  731. * @param $user_id
  732. *
  733. * @return array|ActiveRecord[]
  734. *
  735. * @author 李健
  736. */
  737. public function getAccountInfo($user_id)
  738. {
  739. $select = [
  740. 'id',
  741. 'user_name',
  742. 'true_name',
  743. 'phone_no'
  744. ];
  745. $where = ['and'];
  746. $where[] = ['=', 'cancel_flag', 0];
  747. $where[] = ['=', 'id', $user_id];
  748. $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
  749. return $res;
  750. }
  751. /**
  752. * Function Description:修改默认密码
  753. * Function Name: alterPassword
  754. * @param $user_id
  755. * @param $time
  756. * @param $password
  757. * @param $id
  758. *
  759. * @return bool
  760. *
  761. * @author 李健
  762. */
  763. public function alterPassword($user_id, $time, $password, $id)
  764. {
  765. try {
  766. $obj = self::findOne($id);
  767. $obj->UPDATE_USER_ID = $user_id;
  768. $obj->UPDATE_TIME = $time;
  769. $obj->USER_PASSWORD = $password;
  770. return $obj->save();
  771. } catch (Exception $e) {
  772. return false;
  773. }
  774. }
  775. /**
  776. * Function Description:修改用户信息
  777. * Function Name: alterUser
  778. * @param $user_id
  779. * @param $time
  780. * @param $user_name
  781. * @param $true_name
  782. * @param $phone_no
  783. * @param $id
  784. *
  785. * @return bool
  786. *
  787. * @author 李健
  788. */
  789. public function alterUser($user_id, $time, $user_name, $true_name, $phone_no, $id)
  790. {
  791. try {
  792. $obj = self::findOne($id);
  793. $obj->UPDATE_USER_ID = $user_id;
  794. $obj->UPDATE_TIME = $time;
  795. $obj->USER_NAME = $user_name;
  796. $obj->TRUE_NAME = $true_name;
  797. $obj->PHONE_no = $phone_no;
  798. return $obj->save();
  799. } catch (Exception $e) {
  800. return false;
  801. }
  802. }
  803. /**
  804. * Function Description:获取采购负责人信息
  805. * Function Name: getPurchaser
  806. *
  807. * @return array|ActiveRecord[]
  808. *
  809. * @author 李健
  810. */
  811. public function getPurchaser()
  812. {
  813. $select = [
  814. 'id',
  815. 'true_name'
  816. ];
  817. $where = [
  818. 'and',
  819. ['!=', 'true_name', ''],
  820. ['=', 'cancel_flag', 0],
  821. ['in', 'user_role', [0, 1, 3, 6, 8]]
  822. ];
  823. $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
  824. return $res;
  825. }
  826. /**
  827. * Function Description:获取运营主体id
  828. * Function Name: getMainCorpId
  829. * @param $id
  830. *
  831. * @return array|ActiveRecord[]
  832. *
  833. * @author 李健
  834. */
  835. public function getMainCorpId($id)
  836. {
  837. $select = ['main_corp_id'];
  838. $where = ['and'];
  839. $where[] = ['=', 'id', $id];
  840. $where[] = ['=', 'cancel_flag', 0];
  841. $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
  842. return $res;
  843. }
  844. /**
  845. * Function Description:根据用户id获取用户信息
  846. * Function Name: getSomeUserInfo
  847. * @param $user_id
  848. *
  849. * @return array|null|ActiveRecord
  850. *
  851. * @author 冒炎
  852. */
  853. public function getSomeUserInfo($user_id)
  854. {
  855. $select = ['opera_org_id', 'main_corp_id'];
  856. $where = ['and'];
  857. $where[] = ['=', 'id', $user_id];
  858. $where[] = ['=', 'cancel_flag', 0];
  859. $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->one();
  860. return $res;
  861. }
  862. /**
  863. * Function Description:根据user_id获取该用户main_corp_id所属的运营负责人
  864. * Function Name: getRunDutyList
  865. * @param $user_id
  866. * @return array|ActiveRecord[]
  867. * @author 田玲菲
  868. */
  869. public function getRunDutyList($user_id){
  870. $select = [
  871. 'b.id',
  872. 'b.user_name',
  873. 'b.true_name',
  874. 'b.phone_no'
  875. ];
  876. $where = ['and'];
  877. $where[] = ['=', 'a.id', $user_id];
  878. $where[] = ['=', 'a.cancel_flag', 0];
  879. $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();
  880. return $res;
  881. }
  882. /**
  883. * Function Description:获取工单抄送/处理候选人
  884. * Function Name: getWorkOrderProple
  885. * @return array|ActiveRecord[]
  886. * @author 田玲菲
  887. */
  888. public function getWorkOrderPeople(){
  889. $select = [
  890. 'a.id',
  891. 'a.user_name',
  892. 'a.true_name',
  893. ];
  894. $where = ['and'];
  895. $where[] = ['=', 'a.cancel_flag', 0];
  896. $where[] = ['=', 'b.cancel_flag', 0];
  897. $roleArray = [1,5,6,7,9,10];
  898. $where[] = ['in', 'b.user_role', $roleArray];
  899. $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();
  900. return $res;
  901. }
  902. /**
  903. * Function Description:获取当前登录用户的user_role
  904. * Function Name: getUserRole
  905. * @return array|null|ActiveRecord
  906. * @author 田玲菲
  907. */
  908. public function getUserRole(){
  909. $cookies = Yii::$app->request->cookies;
  910. $user_id = $cookies->getValue('user_id');
  911. $select = [
  912. 'user_role',
  913. ];
  914. $where = ['and'];
  915. $where[] = ['=', 'id', $user_id];
  916. $where[] = ['=', 'cancel_flag', 0];
  917. $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->one();
  918. return $res;
  919. }
  920. }