Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

1171 linhas
40 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\db\ActiveRecord;
  5. use yii\base\Exception;
  6. /**
  7. * This is the model class for table "base_area_audit".
  8. *
  9. * @property string $ID
  10. * @property integer $CANCEL_FLAG
  11. * @property integer $CREATE_USER_ID
  12. * @property string $CREATE_TIME
  13. * @property integer $UPDATE_USER_ID
  14. * @property string $UPDATE_TIME
  15. * @property string $AREA_NAME
  16. * @property integer $PARENT_ID
  17. * @property integer $POI_TYPE1
  18. * @property string $POI_TYPE2
  19. * @property double $LONGITUDE
  20. * @property double $LATITUDE
  21. * @property string $ADDRESS
  22. * @property integer $CHECK_STATUS
  23. * @property string $CHECK_LOG
  24. * @property string $APPLY_NAME
  25. * @property string $APPLY_MAN
  26. * @property integer $TRUE_AREA
  27. */
  28. class BaseAreaAudit extends ActiveRecord
  29. {
  30. /**
  31. * @inheritdoc
  32. */
  33. public static function tableName()
  34. {
  35. return 'base_area_audit';
  36. }
  37. /**
  38. * @return \yii\db\Connection the database connection used by this AR class.
  39. */
  40. public static function getDb()
  41. {
  42. return Yii::$app->get('db');
  43. }
  44. /**
  45. * @inheritdoc
  46. */
  47. public function rules()
  48. {
  49. return [
  50. [['CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'PARENT_ID', 'POI_TYPE1', 'CHECK_STATUS', 'TRUE_AREA'], 'integer'],
  51. [['UPDATE_TIME', 'AREA_NAME', 'POI_TYPE1', 'APPLY_NAME'], 'required'],
  52. [['LONGITUDE', 'LATITUDE'], 'number'],
  53. [['CHECK_LOG'], 'string'],
  54. [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
  55. [['AREA_NAME', 'POI_TYPE2', 'ADDRESS', 'APPLY_NAME', 'APPLY_MAN'], 'string', 'max' => 255],
  56. ];
  57. }
  58. /**
  59. * @inheritdoc
  60. */
  61. public function attributeLabels()
  62. {
  63. return [
  64. 'ID' => 'ID',
  65. 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
  66. 'CREATE_USER_ID' => '记录创建用户ID',
  67. 'CREATE_TIME' => '记录创建时间',
  68. 'UPDATE_USER_ID' => '记录最后更新用户ID',
  69. 'UPDATE_TIME' => '记录最后更新时间',
  70. 'AREA_NAME' => '站点或区域名称',
  71. 'PARENT_ID' => '父节点id',
  72. 'POI_TYPE1' => 'POI类型',
  73. 'POI_TYPE2' => 'POI类别',
  74. 'LONGITUDE' => '经度',
  75. 'LATITUDE' => '纬度',
  76. 'ADDRESS' => '地址',
  77. 'CHECK_STATUS' => '审核状态 0待审核 1.已通过 2.已驳回',
  78. 'CHECK_LOG' => '审核日志',
  79. 'APPLY_NAME' => '申请人账号',
  80. 'APPLY_MAN' => '申请人',
  81. 'TRUE_AREA' => '审核成功后真实的area_id',
  82. ];
  83. }
  84. /**
  85. * Function Description:提交站点审核数据
  86. * Function Name: addStation
  87. * @param string $station_name 站点名称
  88. * @param string $longitude 经度
  89. * @param string $latitude 纬度
  90. * @param string $range 区域
  91. * @param string $address 地址
  92. * @param string $poi_type poi类型
  93. * @param string $audit_text 申请原因
  94. *
  95. * @return mixed
  96. *
  97. * @author 张帅
  98. */
  99. public function addStation($station_name, $longitude, $latitude, $range, $address, $poi_type, $audit_text)
  100. {
  101. #region 获取用户信息
  102. //获取cookies
  103. $cookies = Yii::$app->request->cookies;
  104. //账号权限
  105. $user_id = $cookies->getValue('user_id');
  106. $user_info = BaseUser::find()
  107. ->select('user_name,true_name')
  108. ->where(['id' => $user_id, 'cancel_flag' => 0])
  109. ->asArray()
  110. ->one();
  111. $user_name = $user_info['user_name'];
  112. $true_name = $user_info['true_name'];
  113. #endregion
  114. #region 1.获取要插入的数据
  115. $value = [
  116. 'CANCEL_FLAG' => 0,
  117. 'CREATE_USER_ID' => $user_id,
  118. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  119. 'UPDATE_USER_ID' => $user_id,
  120. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  121. 'AREA_NAME' => $station_name,
  122. 'PARENT_ID' => $range,
  123. 'POI_TYPE1' => 402,
  124. 'POI_TYPE2' => $poi_type,
  125. 'LONGITUDE' => $longitude,
  126. 'LATITUDE' => $latitude,
  127. 'ADDRESS' => $address,
  128. 'CHECK_STATUS' => 0,
  129. 'CHECK_LOG' => '{' . date('Y/m//d H:i:s', time()) . '|提交审核,申请理由:' . $audit_text . '。申请人:' . $true_name . '}',
  130. 'APPLY_NAME' => $user_name,
  131. 'APPLY_MAN' => $true_name
  132. ];
  133. #endregion
  134. try {
  135. //2.将数据存入base_area_audit表
  136. $this->attributes = $value;
  137. $res = $this->insert();
  138. if (!$res) {
  139. throw new Exception('输入数据不符合格式');
  140. }
  141. $json['code'] = '0';
  142. $json['info'] = '插入站点成功';
  143. } catch (Exception $e) {
  144. $json['code'] = '1';
  145. $json['info'] = $e->getMessage();
  146. }
  147. return $json;
  148. }
  149. /**
  150. * Function Description:
  151. * Function Name: addRange
  152. * @param string $station_name 站点名称
  153. * @param string $range 区域
  154. * @param string $poi_type poi类型
  155. * @param string $audit_text 申请原因
  156. *
  157. * @return mixed
  158. *
  159. * @author 张帅
  160. */
  161. public function addRange($station_name, $range, $poi_type, $audit_text)
  162. {
  163. #region 获取用户信息
  164. //获取cookies
  165. $cookies = Yii::$app->request->cookies;
  166. //账号权限
  167. $user_id = $cookies->getValue('user_id');
  168. $user_info = BaseUser::find()
  169. ->select('user_name,true_name')
  170. ->where(['id' => $user_id, 'cancel_flag' => 0])
  171. ->asArray()
  172. ->one();
  173. $user_name = $user_info['user_name'];
  174. $true_name = $user_info['true_name'];
  175. #endregion
  176. if ($range == -1) {
  177. $range = 0;
  178. }
  179. #region 1.获取要插入的数据
  180. $value = [
  181. 'CANCEL_FLAG' => 0,
  182. 'CREATE_USER_ID' => $user_id,
  183. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  184. 'UPDATE_USER_ID' => $user_id,
  185. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  186. 'AREA_NAME' => $station_name,
  187. 'PARENT_ID' => $range,
  188. 'POI_TYPE1' => 401,
  189. 'POI_TYPE2' => $poi_type,
  190. 'CHECK_STATUS' => 0,
  191. 'CHECK_LOG' => '{' . date('Y/m//d H:i:s', time()) . '|提交审核,申请理由:' . $audit_text . '。申请人:' . $true_name . '}',
  192. 'APPLY_NAME' => $user_name,
  193. 'APPLY_MAN' => $true_name
  194. ];
  195. #endregion
  196. try {
  197. //2.将数据存入base_area_audit表
  198. $this->attributes = $value;
  199. $res = $this->insert();
  200. if (!$res) {
  201. throw new Exception('输入数据不符合格式');
  202. }
  203. $json['code'] = '0';
  204. $json['info'] = '插入站点成功';
  205. } catch (Exception $e) {
  206. $json['code'] = '1';
  207. $json['info'] = $e->getMessage();
  208. }
  209. return $json;
  210. }
  211. /**
  212. * Function Description:审核区域/站点列表
  213. * Function Name: getStationList
  214. * @param int $user_id 用户id
  215. * @param int $check_status 审核状态
  216. * @param int $station_type 站点类型
  217. * @param string $station_name 站点名称
  218. * @param int $poi_type POI类型
  219. * @param int $range 所属区域
  220. * @param int $page_size 每页数量
  221. * @param int $current_page 总页数
  222. * @param string $apply_name 申请人账号
  223. * @param string $apply_man 申请人
  224. * @param string $apply_no 申请编号
  225. *
  226. * @return mixed
  227. *
  228. * @author 张帅
  229. */
  230. public function getStationList($user_id = 1, $check_status = 0, $station_type = -1, $station_name = '', $poi_type = -1, $range = -1, $page_size = 10, $current_page = 1, $apply_name = '', $apply_man = '', $apply_no = '')
  231. {
  232. #region 获取用户信息
  233. //获取cookies
  234. $cookies = Yii::$app->request->cookies;
  235. //账号权限
  236. $true_user_id = $cookies->getValue('user_id');
  237. $user_rule = $cookies->getValue('ht_user_role');
  238. if ($true_user_id != $user_id) {
  239. $json['code'] = '1';
  240. $json['info'] = '登录信息出错';
  241. return $json;
  242. }
  243. #endregion
  244. $base_area = new BaseArea();
  245. #region 1.查询条件
  246. $sql_where = [];
  247. $sql_where[] = 'and';
  248. //筛掉删除后的
  249. $sql_where[] = ['=', 'a.cancel_flag', 0];
  250. $sql_where[] = ['=', 'a.check_status', $check_status];
  251. //判断user_id
  252. if ($user_rule != 0 && $user_rule != 1 ) {
  253. $sql_where[] = ['=', 'a.create_user_id', $user_id];
  254. }
  255. //poi类别(区域/站点)
  256. if ($station_type != -1) {
  257. $sql_where[] = ['=', 'a.poi_type1', $station_type];
  258. }
  259. //poi名称
  260. if ($station_name != '') {
  261. $sql_where[] = ['like', 'a.area_name', $station_name];
  262. }
  263. //区域
  264. if ($range != -1) {
  265. $sql_where[] = ['or', ['=', 'a.parent_id', $range], ['like', 'v.parent_area_id_list', '{' . $range . '}']];
  266. }
  267. //poi类型
  268. if ($poi_type != -1) {
  269. $sql_where[] = ['like', 'a.poi_type2', $poi_type];
  270. }
  271. //申请账号
  272. if ($apply_name != '') {
  273. $sql_where[] = ['like', 'a.apply_name', $apply_name];
  274. }
  275. //申请人
  276. if ($apply_man != '') {
  277. $sql_where[] = ['like', 'a.apply_man', $apply_man];
  278. }
  279. //申请人
  280. if ($apply_no != '') {
  281. $sql_where[] = ['like', 'id', $apply_no];
  282. }
  283. $offset = ($current_page - 1) * $page_size;
  284. #endregion
  285. #region 2.查询数据
  286. $rows = self::find()
  287. ->select('a.id as area_id,a.area_name,a.parent_id,v.parent_area_id_list,a.poi_type1,a.poi_type2,a.apply_name,a.apply_man,a.update_time')
  288. ->from('base_area_audit as a')
  289. ->leftJoin('base_area_view as v', 'a.parent_id = v.area_id')
  290. ->where($sql_where)
  291. ->orderBy(['a.update_time'=>SORT_DESC,'a.poi_type1' => SORT_ASC, 'v.area_level' => SORT_ASC])
  292. ->offset($offset)
  293. ->limit($page_size)
  294. ->asArray()
  295. ->all();
  296. #endregion
  297. #region 3.整理数据
  298. $parent_area_id_arr = [];
  299. foreach ($rows as $key => $vel) {
  300. //站点/区域id
  301. $area_one['station_id'] = $vel['area_id'];
  302. //站点/区域类别
  303. $area_one['station_type'] = $vel['poi_type1'];
  304. //申请账号
  305. $area_one['apply_name'] = $vel['apply_name'];
  306. //申请人
  307. $area_one['apply_man'] = $vel['apply_man'];
  308. //申请时间
  309. $area_one['apply_time'] = $vel['update_time'];
  310. //区域 、站点
  311. if ($vel['parent_id'] != 0 && $vel['parent_area_id_list'] != '') {
  312. $parent_area_id_list = substr($vel['parent_area_id_list'] . "{" . $vel['parent_id'] . '}', 1, -1);
  313. } elseif ($vel['parent_id'] != 0) {
  314. $parent_area_id_list = $vel['parent_id'];
  315. } else {
  316. $parent_area_id_list = '';
  317. }
  318. if ($parent_area_id_list != '') {
  319. $area_one['range'] = explode('}{', $parent_area_id_list);
  320. } else {
  321. $area_one['range'] = [];
  322. }
  323. $area_one['station']['area_id'] = $vel['area_id'];
  324. $area_one['station']['area_name'] = $vel['area_name'];
  325. //区域/站点类型
  326. $poi_type_one = substr($vel['poi_type2'], 1, -1);
  327. if ($poi_type_one == '') {
  328. $area_one['poi_type'] = [];
  329. } else {
  330. $area_one['poi_type'] = explode('}{', $poi_type_one);
  331. }
  332. //获取所有的父节点id
  333. foreach ($area_one['range'] as $range_k => $range_v) {
  334. if (!isset($parent_area_id_arr[$range_v])) {
  335. $parent_area_id_arr[$range_v] = $range_v;
  336. }
  337. }
  338. $rows[$key] = $area_one;
  339. }
  340. #endregion
  341. #region 4.所有父节点的详情
  342. $parent_area_arr_row = self::find()->select('id as area_id,area_name,poi_type1 as station_type')
  343. ->from('base_area')
  344. ->where(['in', 'id', $parent_area_id_arr])
  345. ->asArray()
  346. ->all();
  347. foreach ($parent_area_arr_row as $key => $value) {
  348. $parent_area_arr[$value['area_id']] = $value;
  349. }
  350. #endregion
  351. #region 5.获取所有的dict_type
  352. $poi_type_row = DictType::find()->select('id as station_type_id,type_name as station_type_name')
  353. ->where(['parent_id' => 403])
  354. ->asArray()
  355. ->all();
  356. foreach ($poi_type_row as $key => $value) {
  357. $poi_type_all[$value['station_type_id']] = $value;
  358. }
  359. #endregion
  360. #region 6.将详情扔回$rows
  361. foreach ($rows as $area_key => $area_vel) {
  362. $range_one = [];
  363. //扔入区域数据
  364. if (count($area_vel['range']) != 0) {
  365. foreach ($area_vel['range'] as $range_key => $range_vel) {
  366. if (isset($parent_area_arr[$range_vel])) {
  367. $range_one[$range_key] = $parent_area_arr[$range_vel];
  368. $range_one[$range_key]['storage_type'] = 'formal';
  369. } else {
  370. echo $range_vel;
  371. }
  372. }
  373. }
  374. if ($area_vel['station_type'] == 401) {
  375. $station_one = $area_vel['station'];
  376. $station_one['station_type'] = 401;
  377. $station_one['storage_type'] = 'audit';
  378. $range_one[] = $station_one;
  379. $station_one = [];
  380. } else {
  381. $station_one = $area_vel['station'];
  382. }
  383. //扔入详情
  384. $poi_type_one = [];
  385. if (count($area_vel['poi_type']) != 0) {
  386. foreach ($area_vel['poi_type'] as $poi_type_key => $poi_type_vel) {
  387. if (isset($poi_type_all[$poi_type_vel])) {
  388. $poi_type_one[$poi_type_key] = $poi_type_all[$poi_type_vel];
  389. } else {
  390. echo $poi_type_vel;
  391. }
  392. }
  393. }
  394. $rows[$area_key]['range'] = $range_one;
  395. $rows[$area_key]['station'] = $station_one;
  396. $rows[$area_key]['poi_type'] = $poi_type_one;
  397. }
  398. #endregion
  399. #region 7.获取分页
  400. $total_row = self::find()
  401. ->from('base_area_audit as a')
  402. ->leftJoin('base_area_view as v', 'a.parent_id = v.area_id')
  403. ->where($sql_where)
  404. ->orderBy(['a.poi_type1' => SORT_ASC, 'v.area_level' => SORT_ASC])
  405. ->count();
  406. $page_arr = $base_area->getPage($total_row, $page_size, $current_page);
  407. #endregion
  408. $data['rows'] = $rows;
  409. $data['page_arr'] = $page_arr;
  410. $data['page']['page_size'] = $page_size;
  411. $data['page']['current_page'] = $current_page;
  412. $data['page']['total_row'] = $total_row;
  413. $data['page']['total_page'] = ceil($total_row / $page_size);
  414. return $data;
  415. }
  416. /**
  417. * Function Description:审核站点的展示信息
  418. * Function Name: getShowStationInfo
  419. * @param int $station_id 站点id
  420. *
  421. * @return array
  422. *
  423. * @author 张帅
  424. */
  425. public function getShowStationInfo($station_id)
  426. {
  427. #region 1.数据库获取详情
  428. $station_info_db = self::find()
  429. ->select('a.area_name,a.poi_type1,a.poi_type2,a.parent_id,a.longitude,a.latitude,a.address,v.area_name as parent_name,v.parent_area_id_list,v.parent_area_name_list,a.check_status,a.check_log')
  430. ->from('base_area_audit as a')
  431. ->leftJoin('base_area_view as v', 'a.parent_id = v.area_id')
  432. ->where([
  433. 'and',
  434. ['=', 'a.id', $station_id],
  435. ['=', 'a.cancel_flag', 0]
  436. ])
  437. ->asArray()
  438. ->one();
  439. #endregion
  440. #region 2.整理数据
  441. $station_info = [];
  442. $station_info['station_id'] = $station_id;//站点id
  443. $station_info['station_name'] = $station_info_db['area_name'];//站点名称
  444. //审核状态
  445. $station_info['check_status'] = $station_info_db['check_status'];
  446. if ($station_info['check_status'] == 0) {
  447. $station_info['check_status'] = '待审核';
  448. } elseif ($station_info['check_status'] == 1) {
  449. $station_info['check_status'] = '已通过';
  450. } else {
  451. $station_info['check_status'] = '已驳回';
  452. }
  453. //是否输出经纬度等信息
  454. if ($station_info_db['poi_type1'] == 402) {
  455. $station_info['longitude'] = $station_info_db['longitude'];
  456. $station_info['latitude'] = $station_info_db['latitude'];
  457. $station_info['address'] = $station_info_db['address'];
  458. }
  459. //审核日志
  460. $station_info['check_log'] = substr($station_info_db['check_log'], 1, -1);
  461. $station_info['check_log'] = str_replace('}{', '<br>', $station_info['check_log']);
  462. $station_info['check_log'] = str_replace('|', '&nbsp;&nbsp;', $station_info['check_log']);
  463. //poi类型
  464. if ($station_info_db['poi_type2'] != '0') {
  465. $poi_type_arr = substr($station_info_db['poi_type2'], 1, -1);
  466. $poi_type_arr = explode('}{', $poi_type_arr);
  467. #region 获取poi类型的名称
  468. $poi_type_arr = DictType::find()
  469. ->select('id as station_type_id,type_name as station_type_name')
  470. ->where([
  471. 'and',
  472. ['in', 'id', $poi_type_arr]
  473. ])->asArray()->all();
  474. #endregion
  475. } else {
  476. $poi_type_arr = [];
  477. }
  478. $station_info['poi_type_arr'] = $poi_type_arr;
  479. //父节点数组
  480. $rang_list_arr = [];
  481. if (!empty($station_info_db['parent_area_id_list'])) {
  482. $station_parent_id_list_arr = substr($station_info_db['parent_area_id_list'], 1, -1);
  483. $station_parent_id_list_arr = explode('}{', $station_parent_id_list_arr);
  484. $station_parent_name_list_arr = substr($station_info_db['parent_area_name_list'], 1, -1);
  485. $station_parent_name_list_arr = explode('}{', $station_parent_name_list_arr);
  486. foreach ($station_parent_id_list_arr as $key => $value) {
  487. $rang_list_arr[$key]['area_id'] = $value;
  488. $rang_list_arr[$key]['area_name'] = $station_parent_name_list_arr[$key];
  489. }
  490. }
  491. //将父节点拼入
  492. if ($station_info_db['parent_id'] != 0) {
  493. $range_one['area_id'] = $station_info_db['parent_id'];
  494. $range_one['area_name'] = $station_info_db['parent_name'];
  495. $rang_list_arr[] = $range_one;
  496. }
  497. $station_info['range_arr'] = $rang_list_arr;
  498. return $station_info;
  499. }
  500. /**
  501. * Function Description:获取区域/站点详情及配置包
  502. * Function Name: getStationInfo
  503. * @param int $station_id 站点id
  504. *
  505. * @return array
  506. *
  507. * @author 张帅
  508. */
  509. public function getStationInfo($station_id)
  510. {
  511. #region 1.数据库获取详情
  512. $station_info_db = self::find()
  513. ->select('a.area_name,a.poi_type1,a.poi_type2,a.parent_id,a.longitude,a.latitude,a.address,v.parent_area_id_list,a.check_status,a.check_log')
  514. ->from('base_area_audit as a')
  515. ->leftJoin('base_area_view as v', 'a.parent_id = v.area_id')
  516. ->where([
  517. 'and',
  518. ['=', 'a.id', $station_id],
  519. ['=', 'a.cancel_flag', 0]
  520. ])
  521. ->asArray()
  522. ->one();
  523. #endregion
  524. #region 2.整理数据
  525. $station_info = [];
  526. $station_info['station_id'] = $station_id;//站点id
  527. $station_info['station_name'] = $station_info_db['area_name'];//站点名称
  528. //审核状态
  529. $station_info['check_status'] = $station_info_db['check_status'];
  530. if ($station_info['check_status'] == 0) {
  531. $station_info['check_status'] = '待审核';
  532. } elseif ($station_info['check_status'] == 1) {
  533. $station_info['check_status'] = '已通过';
  534. } else {
  535. $station_info['check_status'] = '已驳回';
  536. }
  537. //审核日志
  538. $station_info['check_log'] = substr($station_info_db['check_log'], 1, -1);
  539. $station_info['check_log'] = str_replace('}{', '<br>', $station_info['check_log']);
  540. $station_info['check_log'] = str_replace('|', '&nbsp;&nbsp;', $station_info['check_log']);
  541. //是否输出经纬度等信息
  542. if ($station_info_db['poi_type1'] == 402) {
  543. $station_info['longitude'] = $station_info_db['longitude'];
  544. $station_info['latitude'] = $station_info_db['latitude'];
  545. $station_info['address'] = $station_info_db['address'];
  546. }
  547. //poi类型
  548. if ($station_info_db['poi_type2'] != '0') {
  549. $poi_type_arr = substr($station_info_db['poi_type2'], 1, -1);
  550. $poi_type_arr = explode('}{', $poi_type_arr);
  551. } else {
  552. $poi_type_arr = [];
  553. }
  554. $station_info['poi_type_arr'] = $poi_type_arr;
  555. //父节点数组
  556. $station_parent_list_arr = [];
  557. if (!empty($station_info_db['parent_area_id_list'])) {
  558. $station_parent_list_arr = substr($station_info_db['parent_area_id_list'], 1, -1);
  559. $station_parent_list_arr = explode('}{', $station_parent_list_arr);
  560. $station_info['range_arr'] = $station_parent_list_arr;
  561. }
  562. //将父节点拼入
  563. if ($station_info_db['parent_id'] != 0) {
  564. $station_info['range_arr'][] = $station_info_db['parent_id'];
  565. $station_parent_list_arr[] = $station_info_db['parent_id'];
  566. }
  567. //父节点查询项
  568. if (count($station_parent_list_arr) > 0) {
  569. $rang_list = BaseArea::find()
  570. ->select('id as area_id,area_name,parent_id')
  571. ->where([
  572. 'and',
  573. ['in', 'parent_id', $station_parent_list_arr],
  574. ['=', 'cancel_flag', 0],
  575. ['=', 'poi_type1', 401]
  576. ])
  577. ->asArray()
  578. ->all();
  579. $rang_list_arr = [];
  580. foreach ($rang_list as $rang_key => $range_vel) {
  581. $rang_list_arr[$range_vel['parent_id']][$range_vel['area_id']]['area_id'] = $range_vel['area_id'];
  582. $rang_list_arr[$range_vel['parent_id']][$range_vel['area_id']]['area_name'] = $range_vel['area_name'];
  583. }
  584. $station_info['rang_list_arr'] = $rang_list_arr;
  585. } else {
  586. $station_info['range_arr'] = [];
  587. $station_info['rang_list_arr'] = [];
  588. }
  589. return $station_info;
  590. }
  591. /**
  592. * Function Description:修改站点
  593. * Function Name: updateStation
  594. * @param int $station_id 站点id
  595. * @param string $station_name 站点名称
  596. * @param string $longitude 经度
  597. * @param string $latitude 纬度
  598. * @param string $range 区域
  599. * @param string $address 地址
  600. * @param string $poi_type poi类型
  601. *
  602. * @return mixed
  603. *
  604. * @author 张帅
  605. */
  606. public function updateStation($station_id, $station_name, $longitude, $latitude, $range, $address, $poi_type)
  607. {
  608. #region 获取用户信息
  609. //获取cookies
  610. $cookies = Yii::$app->request->cookies;
  611. //账号权限
  612. $user_id = $cookies->getValue('user_id');
  613. #endregion
  614. #region 1.value表数据
  615. $value = [
  616. 'UPDATE_USER_ID' => $user_id,
  617. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  618. 'AREA_NAME' => $station_name,
  619. 'PARENT_ID' => $range,
  620. 'POI_TYPE2' => $poi_type,
  621. 'LONGITUDE' => $longitude,
  622. 'LATITUDE' => $latitude,
  623. 'ADDRESS' => $address
  624. ];
  625. #endregion
  626. $transaction = Yii::$app->db->beginTransaction();
  627. try {
  628. //修改base_area_audit表
  629. $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
  630. $base_area_audit_one->attributes = $value;
  631. $res = $base_area_audit_one->update();
  632. if (!$res) {
  633. throw new Exception('输入数据不符合格式');
  634. }
  635. $transaction->commit();
  636. $json['code'] = '0';
  637. $json['info'] = '修改站点成功';
  638. } catch (Exception $e) {
  639. # 回滚事务
  640. $transaction->rollback();
  641. $json['code'] = '1';
  642. $json['info'] = $e->getMessage();
  643. }
  644. return $json;
  645. }
  646. /**
  647. * Function Description:修改区域
  648. * Function Name: updateRange
  649. * @param int $station_id 站点id
  650. * @param string $station_name 站点名称
  651. * @param string $range 区域
  652. * @param string $poi_type poi类型
  653. *
  654. * @return mixed
  655. *
  656. * @author 张帅
  657. */
  658. public function updateRange($station_id, $station_name, $range, $poi_type)
  659. {
  660. #region 获取用户信息
  661. //获取cookies
  662. $cookies = Yii::$app->request->cookies;
  663. //账号权限
  664. $user_id = $cookies->getValue('user_id');
  665. #endregion
  666. #region 1.value表数据
  667. $value = [
  668. 'UPDATE_USER_ID' => $user_id,
  669. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  670. 'AREA_NAME' => $station_name,
  671. 'PARENT_ID' => $range,
  672. 'POI_TYPE2' => $poi_type
  673. ];
  674. #endregion
  675. $transaction = Yii::$app->db->beginTransaction();
  676. try {
  677. //修改base_area_audit表
  678. $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
  679. $base_area_audit_one->attributes = $value;
  680. $res = $base_area_audit_one->update();
  681. if (!$res) {
  682. throw new Exception('审核出错');
  683. }
  684. $transaction->commit();
  685. $json['code'] = '0';
  686. $json['info'] = '审核区域成功';
  687. } catch (Exception $e) {
  688. # 回滚事务
  689. $transaction->rollback();
  690. $json['code'] = '1';
  691. $json['info'] = $e->getMessage();
  692. }
  693. return $json;
  694. }
  695. /**
  696. * Function Description:审核区域
  697. * Function Name: checkRange
  698. * @param int $station_id 站点id
  699. * @param int $check_status 审核状态
  700. * @param string $audit_text 审核说明
  701. *
  702. * @return mixed
  703. *
  704. * @author 张帅
  705. */
  706. public function checkRange($station_id, $check_status, $audit_text)
  707. {
  708. #region 获取用户信息
  709. //获取cookies
  710. $cookies = Yii::$app->request->cookies;
  711. //账号权限
  712. $user_id = $cookies->getValue('user_id');
  713. $user_rule = $cookies->getValue('ht_user_role');
  714. if ($user_rule != 0 && $user_rule != 1 ) {
  715. $json['code'] = '1';
  716. $json['info'] = '无权限';
  717. return $json;
  718. }
  719. $user_info = BaseUser::find()
  720. ->select('user_name,true_name')
  721. ->where(['id' => $user_id, 'cancel_flag' => 0])
  722. ->asArray()
  723. ->one();
  724. //$user_name = $user_info['user_name'];
  725. $true_name = $user_info['true_name'];
  726. #endregion
  727. $base_area = new BaseArea();
  728. #region 1.获取站点详情
  729. $station_info = self::find()
  730. ->select('area_name,parent_id,poi_type2,check_status,check_log')
  731. ->where(['id' => $station_id, 'cancel_flag' => 0])
  732. ->asArray()
  733. ->one();
  734. #endregion
  735. $station_name = $station_info['area_name'];//区域名称
  736. $range = $station_info['parent_id'];//所属区域
  737. $poi_type = $station_info['poi_type2'];//区域类型
  738. $check_log = $station_info['check_log'];//日志
  739. $area_id = 0;
  740. #region 2.插入正式数据表
  741. if ($check_status == 1) {
  742. $result = $base_area->addRange($station_name, $range, $poi_type);
  743. if ($result['code'] != '0') {
  744. $json['code'] = '1';
  745. $json['info'] = '网络原因,请稍后重试';
  746. return $json;
  747. } else {
  748. $area_id = $result['area_id'];
  749. }
  750. }
  751. #endregion
  752. #region 3.修改审核表
  753. if ($check_status == 1) {
  754. $new_log = '{' . date('Y/m//d H:i:s', time()) . '|审核通过,审核说明:' . $audit_text . '。审核人:' . $true_name . '}';
  755. } else {
  756. $new_log = '{' . date('Y/m//d H:i:s', time()) . '|审核不通过,审核说明:' . $audit_text . '。审核人:' . $true_name . '}';
  757. }
  758. $value = [
  759. 'UPDATE_USER_ID' => $user_id,
  760. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  761. 'CHECK_STATUS' => $check_status,
  762. 'CHECK_LOG' => $check_log . $new_log,
  763. 'TRUE_AREA' => $area_id
  764. ];
  765. #endregion
  766. #endregion
  767. $transaction = Yii::$app->db->beginTransaction();
  768. try {
  769. //修改base_area_audit表
  770. $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
  771. $base_area_audit_one->attributes = $value;
  772. $res = $base_area_audit_one->update();
  773. if (!$res) {
  774. throw new Exception('输入数据不符合格式');
  775. }
  776. $transaction->commit();
  777. $json['code'] = '0';
  778. $json['info'] = '审核区域成功';
  779. } catch (Exception $e) {
  780. # 回滚事务
  781. $transaction->rollback();
  782. $json['code'] = '1';
  783. $json['info'] = $e->getMessage();
  784. }
  785. return $json;
  786. }
  787. /**
  788. * Function Description:审核站点
  789. * Function Name: checkStation
  790. * @param int $station_id 站点id
  791. * @param int $check_status 审核状态
  792. * @param string $audit_text 审核说明
  793. *
  794. * @return mixed
  795. *
  796. * @author 张帅
  797. */
  798. public function checkStation($station_id, $check_status, $audit_text)
  799. {
  800. #region 获取用户信息
  801. //获取cookies
  802. $cookies = Yii::$app->request->cookies;
  803. //账号权限
  804. $user_id = $cookies->getValue('user_id');
  805. $user_rule = $cookies->getValue('ht_user_role');
  806. if ($user_rule != 0 && $user_rule != 1 ) {
  807. $json['code'] = '1';
  808. $json['info'] = '无权限';
  809. return $json;
  810. }
  811. $user_info = BaseUser::find()
  812. ->select('user_name,true_name')
  813. ->where(['id' => $user_id, 'cancel_flag' => 0])
  814. ->asArray()
  815. ->one();
  816. //$user_name = $user_info['user_name'];
  817. $true_name = $user_info['true_name'];
  818. #endregion
  819. $base_resource = new BaseResource();
  820. #region 1.获取站点详情
  821. $station_info = self::find()
  822. ->select('area_name,parent_id,poi_type2,check_status,check_log,longitude,latitude,address')
  823. ->where(['id' => $station_id, 'cancel_flag' => 0])
  824. ->asArray()
  825. ->one();
  826. #endregion
  827. $station_name = $station_info['area_name'];//区域名称
  828. $range = $station_info['parent_id'];//所属区域
  829. $poi_type = $station_info['poi_type2'];//区域类型
  830. $longitude = $station_info['longitude'];//经度
  831. $latitude = $station_info['latitude'];//纬度
  832. $address = $station_info['address'];//地址
  833. $check_log = $station_info['check_log'];//日志
  834. $area_id = 0;
  835. #region 2.插入正式数据表
  836. if ($check_status == 1) {
  837. $result = $base_resource->addStation($station_name, $longitude, $latitude, $range, $address, $poi_type);
  838. if ($result['code'] != '0') {
  839. $json['code'] = '1';
  840. $json['info'] = '网络原因,请稍后重试';
  841. return $json;
  842. } else {
  843. $area_id = $result['area_id'];
  844. }
  845. }
  846. #endregion
  847. #region 3.修改审核表
  848. if ($check_status == 1) {
  849. $new_log = '{' . date('Y/m//d H:i:s', time()) . '|审核通过,审核说明:' . $audit_text . '。审核人:' . $true_name . '}';
  850. } else {
  851. $new_log = '{' . date('Y/m//d H:i:s', time()) . '|审核不通过,审核说明:' . $audit_text . '。审核人:' . $true_name . '}';
  852. }
  853. $value = [
  854. 'UPDATE_USER_ID' => $user_id,
  855. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  856. 'CHECK_STATUS' => $check_status,
  857. 'CHECK_LOG' => $check_log . $new_log,
  858. 'TRUE_AREA' => $area_id
  859. ];
  860. #endregion
  861. #endregion
  862. $transaction = Yii::$app->db->beginTransaction();
  863. try {
  864. //修改base_area_audit表
  865. $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
  866. $base_area_audit_one->attributes = $value;
  867. $res = $base_area_audit_one->update();
  868. if (!$res) {
  869. throw new Exception('输入数据不符合格式');
  870. }
  871. $transaction->commit();
  872. $json['code'] = '0';
  873. $json['info'] = '审核站点成功';
  874. } catch (Exception $e) {
  875. # 回滚事务
  876. $transaction->rollback();
  877. $json['code'] = '1';
  878. $json['info'] = $e->getMessage();
  879. }
  880. return $json;
  881. }
  882. /**
  883. * Function Description:删除站点
  884. * Function Name: deleteStation
  885. * @param $station_id
  886. *
  887. * @return mixed
  888. *
  889. * @author 张帅
  890. */
  891. public function deleteStation($station_id)
  892. {
  893. #region 获取用户信息
  894. //获取cookies
  895. $cookies = Yii::$app->request->cookies;
  896. //账号权限
  897. $user_id = $cookies->getValue('user_id');
  898. #endregion
  899. #region 1.删除站点
  900. $transaction = Yii::$app->db->beginTransaction();
  901. try {
  902. //2.修改base_area表
  903. $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
  904. $base_area_audit_one->attributes = ['CANCEL_FLAG' => '1', 'UPDATE_USER_ID' => $user_id, 'UPDATE_TIME' => date('Y-m-d H:i:s', time())];
  905. $res = $base_area_audit_one->update();
  906. if (!$res) {
  907. throw new Exception('删除出错');
  908. }
  909. $transaction->commit();
  910. $json['code'] = '0';
  911. $json['info'] = '删除站点成功';
  912. } catch (Exception $e) {
  913. # 回滚事务
  914. $transaction->rollback();
  915. $json['code'] = '1';
  916. $json['info'] = $e->getMessage();
  917. }
  918. #endregion
  919. return $json;
  920. }
  921. /**
  922. * Function Description:重新申请站点
  923. * Function Name: reapplyStation
  924. * @param int $station_id 站点id
  925. * @param string $station_name 站点名称
  926. * @param string $longitude 经度
  927. * @param string $latitude 纬度
  928. * @param string $range 区域
  929. * @param string $address 地址
  930. * @param string $poi_type poi类型
  931. * @param string $audit_text 申请理由
  932. *
  933. * @return mixed
  934. *
  935. * @author 张帅
  936. */
  937. public function reapplyStation($station_id, $station_name, $longitude, $latitude, $range, $address, $poi_type, $audit_text)
  938. {
  939. #region 获取用户信息
  940. //获取cookies
  941. $cookies = Yii::$app->request->cookies;
  942. //账号权限
  943. $user_id = $cookies->getValue('user_id');
  944. $user_info = BaseUser::find()
  945. ->select('user_name,true_name')
  946. ->where(['id' => $user_id, 'cancel_flag' => 0])
  947. ->asArray()
  948. ->one();
  949. //$user_name = $user_info['user_name'];
  950. $true_name = $user_info['true_name'];
  951. #endregion
  952. #region 1.获取站点详情
  953. $station_info = self::find()
  954. ->select('check_log')
  955. ->where(['id' => $station_id, 'cancel_flag' => 0])
  956. ->asArray()
  957. ->one();
  958. #endregion
  959. $check_log = $station_info['check_log'];
  960. $new_log = '{' . date('Y/m//d H:i:s', time()) . '|提交审核,申请理由:' . $audit_text . '。申请人:' . $true_name . '}';
  961. #region 1.value表数据
  962. $value = [
  963. 'CREATE_USER_ID' => $user_id,
  964. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  965. 'UPDATE_USER_ID' => $user_id,
  966. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  967. 'AREA_NAME' => $station_name,
  968. 'PARENT_ID' => $range,
  969. 'POI_TYPE2' => $poi_type,
  970. 'LONGITUDE' => $longitude,
  971. 'LATITUDE' => $latitude,
  972. 'ADDRESS' => $address,
  973. 'CHECK_STATUS' => 0,
  974. 'CHECK_LOG' => $check_log . $new_log
  975. ];
  976. #endregion
  977. $transaction = Yii::$app->db->beginTransaction();
  978. try {
  979. //修改base_area_audit表
  980. $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
  981. $base_area_audit_one->attributes = $value;
  982. $res = $base_area_audit_one->update();
  983. if (!$res) {
  984. throw new Exception('输入数据不符合格式');
  985. }
  986. $transaction->commit();
  987. $json['code'] = '0';
  988. $json['info'] = '修改站点成功';
  989. } catch (Exception $e) {
  990. # 回滚事务
  991. $transaction->rollback();
  992. $json['code'] = '1';
  993. $json['info'] = $e->getMessage();
  994. }
  995. return $json;
  996. }
  997. /**
  998. * Function Description:重新申请区域
  999. * Function Name: reapplyRange
  1000. * @param int $station_id 站点id
  1001. * @param string $station_name 站点名称
  1002. * @param string $range 所属区域
  1003. * @param string $poi_type poi类型
  1004. * @param string $audit_text 申请理由
  1005. *
  1006. * @return mixed
  1007. *
  1008. * @author 张帅
  1009. */
  1010. public function reapplyRange($station_id, $station_name, $range, $poi_type, $audit_text)
  1011. {
  1012. #region 获取用户信息
  1013. //获取cookies
  1014. $cookies = Yii::$app->request->cookies;
  1015. //账号权限
  1016. $user_id = $cookies->getValue('user_id');
  1017. $user_info = BaseUser::find()
  1018. ->select('user_name,true_name')
  1019. ->where(['id' => $user_id, 'cancel_flag' => 0])
  1020. ->asArray()
  1021. ->one();
  1022. //$user_name = $user_info['user_name'];
  1023. $true_name = $user_info['true_name'];
  1024. #endregion
  1025. #region 1.获取区域详情
  1026. $station_info = self::find()
  1027. ->select('check_log')
  1028. ->where(['id' => $station_id, 'cancel_flag' => 0])
  1029. ->asArray()
  1030. ->one();
  1031. #endregion
  1032. $check_log = $station_info['check_log'];
  1033. $new_log = '{' . date('Y/m//d H:i:s', time()) . '|提交审核,申请理由:' . $audit_text . '。申请人:' . $true_name . '}';
  1034. #region 1.value表数据
  1035. $value = [
  1036. 'CREATE_USER_ID' => $user_id,
  1037. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  1038. 'UPDATE_USER_ID' => $user_id,
  1039. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  1040. 'AREA_NAME' => $station_name,
  1041. 'PARENT_ID' => $range,
  1042. 'POI_TYPE2' => $poi_type,
  1043. 'CHECK_STATUS' => 0,
  1044. 'CHECK_LOG' => $check_log . $new_log
  1045. ];
  1046. #endregion
  1047. $transaction = Yii::$app->db->beginTransaction();
  1048. try {
  1049. //修改base_area_audit表
  1050. $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
  1051. $base_area_audit_one->attributes = $value;
  1052. $res = $base_area_audit_one->update();
  1053. if (!$res) {
  1054. throw new Exception('输入数据不符合格式');
  1055. }
  1056. $transaction->commit();
  1057. $json['code'] = '0';
  1058. $json['info'] = '修改站点成功';
  1059. } catch (Exception $e) {
  1060. # 回滚事务
  1061. $transaction->rollback();
  1062. $json['code'] = '1';
  1063. $json['info'] = $e->getMessage();
  1064. }
  1065. return $json;
  1066. }
  1067. }