You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1352 line
52 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use backend\modules\motorcade\models\BusReport;
  4. use Yii;
  5. use yii\base\Exception;
  6. use yii\db\ActiveRecord;
  7. use backend\modules\zzcs\models\DictType;
  8. use yii\db\Query;
  9. /**
  10. * This is the model class for table "base_resource".
  11. *
  12. * @property integer $ID
  13. * @property integer $RES_ID
  14. * @property string $RES_NAME
  15. * @property integer $PARENT_ID
  16. * @property integer $CANCEL_FLAG
  17. * @property integer $IF_DISABLED
  18. * @property integer $RES_TYPE_ID
  19. * @property integer $CREATE_USER_ID
  20. * @property string $CREATE_TIME
  21. * @property integer $UPDATE_USER_ID
  22. * @property string $UPDATE_TIME
  23. * @property integer $AREA_ID
  24. * @property string $TOP_ORG_ID
  25. */
  26. class BaseResource extends ActiveRecord
  27. {
  28. /**
  29. * @inheritdoc
  30. */
  31. public static function tableName()
  32. {
  33. return 'base_resource';
  34. }
  35. /**
  36. * @return \yii\db\Connection the database connection used by this AR class.
  37. */
  38. public static function getDb()
  39. {
  40. return Yii::$app->get('db');
  41. }
  42. /**
  43. * @inheritdoc
  44. */
  45. public function rules()
  46. {
  47. return [
  48. [['RES_ID', 'PARENT_ID', 'CANCEL_FLAG', 'IF_DISABLED', 'RES_TYPE_ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'AREA_ID'], 'integer'],
  49. [['RES_NAME'], 'string', 'max' => 200],
  50. [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
  51. [['TOP_ORG_ID'], 'string', 'max' => 100],
  52. ];
  53. }
  54. /**
  55. * @inheritdoc
  56. */
  57. public function attributeLabels()
  58. {
  59. return [
  60. 'ID' => 'ID',
  61. 'RES_ID' => '资源ID',
  62. 'RES_NAME' => '资源名称',
  63. 'PARENT_ID' => '父级资源ID,若无父级资源,则为0',
  64. 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
  65. 'IF_DISABLED' => '组织机构当前是否已作废,0未作废,1已作废',
  66. 'RES_TYPE_ID' => '资源类别,DICT_TYPE.ID',
  67. 'CREATE_USER_ID' => '代下单用户ID,BASE_USER.ID,用户A代替用户B下单,则MAIN_CREATE_USER_ID=A,CREATE_USER_ID=B',
  68. 'CREATE_TIME' => '订单创建时间,订单创建日期距2016-01-01的天数,算法用',
  69. 'UPDATE_USER_ID' => '记录最后更新用户ID',
  70. 'UPDATE_TIME' => '记录最后更新时间',
  71. 'AREA_ID' => '站点应用POI',
  72. 'TOP_ORG_ID' => 'Top Org ID',
  73. ];
  74. }
  75. /**
  76. * Function Description:正式添加站点
  77. * Function Name: addStation
  78. * @param string $station_name 站点名称
  79. * @param string $longitude 经度
  80. * @param string $latitude 纬度
  81. * @param string $range 区域
  82. * @param string $address 地址
  83. * @param string $poi_type poi类型
  84. *
  85. * @return mixed
  86. *
  87. * @author 张帅
  88. */
  89. public function addStation($station_name, $longitude, $latitude, $range, $address, $poi_type)
  90. {
  91. #region 判断权限
  92. //获取cookies
  93. $cookies = Yii::$app->request->cookies;
  94. //账号权限
  95. $user_id = $cookies->getValue('user_id');
  96. $user_rule = $cookies->getValue('ht_user_role');
  97. if ($user_rule != 0 && $user_rule != 1) {
  98. $json['code'] = '1';
  99. $json['info'] = '无权限';
  100. return $json;
  101. }
  102. #endregion
  103. $base_area = new BaseArea();
  104. //1.获取base_area最大的id
  105. $max_area_id = $base_area::find()->max('id');
  106. //2.获取base_resource最大的id
  107. $max_res_id = self::find()->max('res_id');
  108. //3.比较大小 选择用的id
  109. $id = max($max_area_id, $max_res_id);
  110. $id++;
  111. #region base_area表数据
  112. $base_area_values = [
  113. 'ID' => $id,
  114. 'PARENT_ID' => $range,
  115. 'CREATE_USER_ID' => $user_id,
  116. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  117. 'UPDATE_USER_ID' => $user_id,
  118. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  119. 'CANCEL_FLAG' => 0,
  120. 'AREA_NAME' => $station_name,
  121. 'POI_TYPE1' => 402,
  122. 'POI_TYPE2' => $poi_type
  123. ];
  124. #endregion
  125. #region base_resource表数据
  126. $base_resource_values = [
  127. 'RES_ID' => $id,
  128. 'RES_NAME' => $station_name,
  129. 'CANCEL_FLAG' => '0',
  130. 'IF_DISABLED' => '0',
  131. 'RES_TYPE_ID' => '24',
  132. 'CREATE_USER_ID' => $user_id,
  133. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  134. 'UPDATE_USER_ID' => $user_id,
  135. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  136. 'AREA_ID' => $id
  137. ];
  138. #endregion
  139. #region base_resource_property表数据
  140. $base_resource_property_values = [
  141. [
  142. 'CREATE_USER_ID' => $user_id,
  143. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  144. 'UPDATE_USER_ID' => $user_id,
  145. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  146. 'CANCEL_FLAG' => 0,
  147. 'RES_ID' => $id,
  148. 'TYPE_ID' => 212,
  149. 'PROPERTY' => $longitude,
  150. ],
  151. [
  152. 'CREATE_USER_ID' => $user_id,
  153. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  154. 'UPDATE_USER_ID' => $user_id,
  155. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  156. 'CANCEL_FLAG' => 0,
  157. 'RES_ID' => $id,
  158. 'TYPE_ID' => 213,
  159. 'PROPERTY' => $latitude,
  160. ],
  161. [
  162. 'CREATE_USER_ID' => $user_id,
  163. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  164. 'UPDATE_USER_ID' => $user_id,
  165. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  166. 'CANCEL_FLAG' => 0,
  167. 'RES_ID' => $id,
  168. 'TYPE_ID' => 279,
  169. 'PROPERTY' => $address,
  170. ]
  171. ];
  172. #endregion
  173. $transaction = Yii::$app->db->beginTransaction();
  174. try {
  175. //4.将数据存入base_area表
  176. $base_area->attributes = $base_area_values;
  177. $res = $base_area->insert();
  178. if (!$res) {
  179. throw new Exception('输入数据不符合格式');
  180. }
  181. //5.将数据存入base_resource表
  182. $this->attributes = $base_resource_values;
  183. $res = $this->insert();
  184. if (!$res) {
  185. throw new Exception('输入数据不符合格式');
  186. }
  187. //6.将数据存入base_resource_property表
  188. $res = Yii::$app->db->createCommand()->batchInsert('base_resource_property',
  189. ['CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_USER_ID', 'UPDATE_TIME', 'CANCEL_FLAG', 'RES_ID', 'TYPE_ID', 'PROPERTY'],
  190. $base_resource_property_values)->execute();
  191. if (!$res) {
  192. throw new Exception('输入数据不符合格式');
  193. }
  194. //7.更新base_area_view
  195. $sql = 'call SP_MAKE_BASE_AREA_VIEW()';
  196. $res = Yii::$app->db->createCommand($sql)->execute();
  197. if (false === $res) {
  198. throw new Exception('输入数据不符合格式');
  199. }
  200. $transaction->commit();
  201. $json['code'] = '0';
  202. $json['info'] = '添加站点成功';
  203. $json['area_id'] = $id;
  204. } catch (Exception $e) {
  205. # 回滚事务
  206. $transaction->rollback();
  207. $json['code'] = '1';
  208. $json['info'] = $e->getMessage();
  209. }
  210. return $json;
  211. }
  212. /**
  213. * Function Description:修改站点
  214. * Function Name: updateStation
  215. * @param int $station_id 站点id
  216. * @param string $station_name 站点名称
  217. * @param string $longitude 经度
  218. * @param string $latitude 纬度
  219. * @param string $range 区域
  220. * @param string $address 地址
  221. * @param string $poi_type poi类型
  222. *
  223. * @return mixed
  224. *
  225. * @author 张帅
  226. */
  227. public function updateStation($station_id, $station_name, $longitude, $latitude, $range, $address, $poi_type)
  228. {
  229. #region 判断权限
  230. //获取cookies
  231. $cookies = Yii::$app->request->cookies;
  232. //账号权限
  233. $user_id = $cookies->getValue('user_id');
  234. $user_rule = $cookies->getValue('ht_user_role');
  235. if ($user_rule != 0 && $user_rule != 1) {
  236. $json['code'] = '1';
  237. $json['info'] = '无权限';
  238. return $json;
  239. }
  240. #endregion
  241. #region base_area表数据
  242. $base_area_values = [
  243. 'PARENT_ID' => $range,
  244. 'UPDATE_USER_ID' => $user_id,
  245. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  246. 'AREA_NAME' => $station_name,
  247. 'POI_TYPE2' => $poi_type
  248. ];
  249. #endregion
  250. #region 判断$range是否改变
  251. $base_area_one = BaseArea::findOne(['id' => $station_id, 'cancel_flag' => 0]);
  252. $old_range = $base_area_one->PARENT_ID;
  253. #endregion
  254. #region base_resource表数据
  255. $base_resource_values = [
  256. 'RES_NAME' => $station_name,
  257. 'UPDATE_USER_ID' => $user_id,
  258. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  259. ];
  260. if($old_range!=$range){
  261. $base_resource_values['AREA_ID'] = $range;
  262. }
  263. #endregion
  264. #region base_resource_property表数据
  265. $base_resource_property_values = [
  266. 212 => [
  267. 'UPDATE_USER_ID' => $user_id,
  268. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  269. 'PROPERTY' => $longitude,
  270. ],
  271. 213 => [
  272. 'UPDATE_USER_ID' => $user_id,
  273. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  274. 'PROPERTY' => $latitude,
  275. ],
  276. 279 => [
  277. 'UPDATE_USER_ID' => $user_id,
  278. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  279. 'PROPERTY' => $address,
  280. ]
  281. ];
  282. #endregion
  283. $transaction = Yii::$app->db->beginTransaction();
  284. try {
  285. //1.修改base_area表
  286. $base_area_one = BaseArea::findOne(['id' => $station_id, 'cancel_flag' => 0]);
  287. $base_area_one->attributes = $base_area_values;
  288. $res = $base_area_one->update();
  289. if (!$res) {
  290. throw new Exception('输入数据不符合格式');
  291. }
  292. //2.修改base_resource表
  293. $base_resource_one = self::findOne(['res_id' => $station_id, 'cancel_flag' => 0]);
  294. $base_resource_one->attributes = $base_resource_values;
  295. $res = $base_resource_one->update();
  296. if (!$res) {
  297. throw new Exception('输入数据不符合格式');
  298. }
  299. //3.修改base_resource_property表
  300. foreach ($base_resource_property_values as $key => $vel) {
  301. $base_resource_property_one = BaseResourceProperty::findOne(['res_id' => $station_id, 'cancel_flag' => 0, 'type_id' => $key]);
  302. $base_resource_property_one->attributes = $vel;
  303. $res = $base_resource_property_one->update();
  304. if (!$res) {
  305. throw new Exception('输入数据不符合格式');
  306. }
  307. }
  308. //4.更新base_area_view
  309. $sql = 'call SP_MAKE_BASE_AREA_VIEW()';
  310. $res = Yii::$app->db->createCommand($sql)->execute();
  311. if (false === $res) {
  312. throw new Exception('输入数据不符合格式');
  313. }
  314. $transaction->commit();
  315. $json['code'] = '0';
  316. $json['info'] = '修改站点成功';
  317. } catch (Exception $e) {
  318. # 回滚事务
  319. $transaction->rollback();
  320. $json['code'] = '1';
  321. $json['info'] = $e->getMessage();
  322. }
  323. return $json;
  324. }
  325. /**
  326. * Function Description:获取站点详情及配置数据
  327. * Function Name: getStationInfo
  328. * @param int $station_id 站点id
  329. *
  330. * @return array|bool
  331. *
  332. * @author 张帅
  333. */
  334. public function getStationInfo($station_id)
  335. {
  336. #region 1.判断base_area表id与base_resource表id是否一致
  337. //base_area表id
  338. $area_name = BaseArea::find()->select('area_name')
  339. ->where(['id' => $station_id])
  340. ->asArray()
  341. ->one();
  342. $area_name = $area_name['area_name'];
  343. //base_resource表id
  344. $res_name = self::find()->select('res_name')
  345. ->where(['res_id' => $station_id])
  346. ->asArray()
  347. ->one();
  348. if ($res_name == null) {
  349. return false;
  350. }
  351. $res_name = $res_name['res_name'];
  352. if ($area_name != $res_name) {
  353. return false;
  354. }
  355. #endregion
  356. #region 2.数据库获取详情
  357. $station_info_db = self::find()
  358. ->select('a.area_name,a.poi_type2,v.parent_area_id_list,p.type_id,p.property')
  359. ->from('base_area as a')
  360. ->leftJoin('base_area_view as v', 'a.id = v.area_id')
  361. ->leftJoin('base_resource_property as p', 'a.id = p.res_id')
  362. ->where([
  363. 'and',
  364. ['=', 'a.id', $station_id],
  365. ['in', 'p.type_id', [212, 213, 279]],
  366. ['=', 'a.cancel_flag', 0],
  367. ['=', 'p.cancel_flag', 0],
  368. ])
  369. ->asArray()
  370. ->all();
  371. #endregion
  372. #region 3.整理数据
  373. $station_info = [];
  374. foreach ($station_info_db as $key => $vel) {
  375. if (!isset($station_info['station_id'])) {
  376. $station_info['station_id'] = $station_id;//站点id
  377. $station_info['station_name'] = $vel['area_name'];//站点名称
  378. //poi类型
  379. if ($vel['poi_type2'] != '0') {
  380. $poi_type_arr = substr($vel['poi_type2'], 1, -1);
  381. $poi_type_arr = explode('}{', $poi_type_arr);
  382. } else {
  383. $poi_type_arr = [];
  384. }
  385. $station_info['poi_type_arr'] = $poi_type_arr;
  386. //父节点数组
  387. $station_parent_list_arr = substr($vel['parent_area_id_list'], 1, -1);
  388. $station_parent_list_arr = explode('}{', $station_parent_list_arr);
  389. $station_info['range_arr'] = $station_parent_list_arr;
  390. #region 查询下拉列表
  391. $rang_list = BaseArea::find()
  392. ->select('id as area_id,area_name,parent_id')
  393. ->where([
  394. 'and',
  395. ['in', 'parent_id', $station_parent_list_arr],
  396. ['=', 'cancel_flag', 0],
  397. ['=', 'poi_type1', 401]
  398. ])
  399. ->asArray()
  400. ->all();
  401. $rang_list_arr = [];
  402. foreach ($rang_list as $rang_key => $range_vel) {
  403. $rang_list_arr[$range_vel['parent_id']][$range_vel['area_id']]['area_id'] = $range_vel['area_id'];
  404. $rang_list_arr[$range_vel['parent_id']][$range_vel['area_id']]['area_name'] = $range_vel['area_name'];
  405. }
  406. $station_info['rang_list_arr'] = $rang_list_arr;
  407. #endregion
  408. }
  409. //经度
  410. if ($vel['type_id'] == 212) {
  411. $station_info['longitude'] = $vel['property'];
  412. }
  413. //纬度
  414. if ($vel['type_id'] == 213) {
  415. $station_info['latitude'] = $vel['property'];
  416. }
  417. //地址
  418. if ($vel['type_id'] == 279) {
  419. $station_info['address'] = $vel['property'];
  420. }
  421. }
  422. #endregion
  423. return $station_info;
  424. // echo '<pre>';
  425. // print_r($station_info);die;
  426. }
  427. /**
  428. * Function Description:获取展示的站点详情
  429. * Function Name: getShowStationInfo
  430. * @param int $station_id 站点id
  431. *
  432. * @return array|bool
  433. *
  434. * @author 张帅
  435. */
  436. public function getShowStationInfo($station_id)
  437. {
  438. #region 1.判断base_area表id与base_resource表id是否一致
  439. //base_area表id
  440. $area_name = BaseArea::find()->select('area_name')
  441. ->where(['id' => $station_id])
  442. ->asArray()
  443. ->one();
  444. $area_name = $area_name['area_name'];
  445. //base_resource表id
  446. $res_name = self::find()->select('res_name')
  447. ->where(['res_id' => $station_id])
  448. ->asArray()
  449. ->one();
  450. if ($res_name == null) {
  451. return false;
  452. }
  453. $res_name = $res_name['res_name'];
  454. if ($area_name != $res_name) {
  455. return false;
  456. }
  457. #endregion
  458. #region 2.数据库获取详情
  459. $station_info_db = self::find()
  460. ->select('a.area_name,a.poi_type2,v.parent_area_id_list,v.parent_area_name_list,p.type_id,p.property')
  461. ->from('base_area as a')
  462. ->leftJoin('base_area_view as v', 'a.id = v.area_id')
  463. ->leftJoin('base_resource_property as p', 'a.id = p.res_id')
  464. ->where([
  465. 'and',
  466. ['=', 'a.id', $station_id],
  467. ['in', 'p.type_id', [212, 213, 279]],
  468. ['=', 'a.cancel_flag', 0],
  469. ['=', 'p.cancel_flag', 0],
  470. ])
  471. ->asArray()
  472. ->all();
  473. #endregion
  474. #region 3.整理数据
  475. $station_info = [];
  476. foreach ($station_info_db as $key => $vel) {
  477. if (!isset($station_info['station_id'])) {
  478. $station_info['station_id'] = $station_id;//站点id
  479. $station_info['station_name'] = $vel['area_name'];//站点名称
  480. //poi类型
  481. if ($vel['poi_type2'] != '0') {
  482. $poi_type_arr = substr($vel['poi_type2'], 1, -1);
  483. $poi_type_arr = explode('}{', $poi_type_arr);
  484. #region 获取poi类型的名称
  485. $poi_type_arr = DictType::find()
  486. ->select('id as station_type_id,type_name as station_type_name')
  487. ->where([
  488. 'and',
  489. ['in', 'id', $poi_type_arr]
  490. ])->asArray()->all();
  491. #endregion
  492. } else {
  493. $poi_type_arr = [];
  494. }
  495. $station_info['poi_type_arr'] = $poi_type_arr;
  496. //父节点数组
  497. $rang_list_arr = [];
  498. if (!empty($vel['parent_area_id_list'])) {
  499. $station_parent_id_list_arr = substr($vel['parent_area_id_list'], 1, -1);
  500. $station_parent_id_list_arr = explode('}{', $station_parent_id_list_arr);
  501. $station_parent_name_list_arr = substr($vel['parent_area_name_list'], 1, -1);
  502. $station_parent_name_list_arr = explode('}{', $station_parent_name_list_arr);
  503. foreach ($station_parent_id_list_arr as $key1 => $value) {
  504. $rang_list_arr[$key1]['area_id'] = $value;
  505. $rang_list_arr[$key1]['area_name'] = $station_parent_name_list_arr[$key1];
  506. }
  507. }
  508. #endregion
  509. $station_info['range_arr'] = $rang_list_arr;
  510. }
  511. //经度
  512. if ($vel['type_id'] == 212) {
  513. $station_info['longitude'] = $vel['property'];
  514. }
  515. //纬度
  516. if ($vel['type_id'] == 213) {
  517. $station_info['latitude'] = $vel['property'];
  518. }
  519. //地址
  520. if ($vel['type_id'] == 279) {
  521. $station_info['address'] = $vel['property'];
  522. }
  523. }
  524. #endregion
  525. return $station_info;
  526. }
  527. /**
  528. * Function Description:修改品牌姓名
  529. * Function Name: baseUpdateBrand
  530. * @param $res_id
  531. * @param $res_name
  532. *
  533. * @return mixed
  534. *
  535. * @author 温依莅
  536. */
  537. public function baseUpdateBrand($res_id, $res_name)
  538. {
  539. $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
  540. if ($res_name == '') {
  541. $json["code"] = '1';
  542. $json["info"] = '品牌名不能为空';
  543. return $json;
  544. }
  545. try {
  546. //判断是否存在res_name相同的选项,如果存在
  547. $temp = BaseResource::find()->where(['res_type_id' => 134, 'res_name' => $res_name])->one();
  548. if (!is_null($temp)) {
  549. $json["code"] = '1';
  550. $json["info"] = '该品牌名已存在';
  551. return $json;
  552. }
  553. //判断是否存在res_id的数据
  554. $brand = self::find()->where(['res_type_id' => 134, 'res_id' => $res_id, 'cancel_flag' => 0])->one();
  555. if (!is_null($brand)) {
  556. $brand->RES_NAME = $res_name;
  557. $brand->UPDATE_TIME = date('Y-m-d H:i:s', time());
  558. $brand->UPDATE_USER_ID = $user_id;
  559. if (!$brand->update()) {
  560. throw new Exception($brand->getErrors());
  561. }
  562. } else {
  563. $json["code"] = '1';
  564. $json["info"] = '获取品牌失败';
  565. return $json;
  566. }
  567. } catch (\Exception $e) {
  568. $json["code"] = '1';
  569. $json["info"] = '品牌修改失败';
  570. $json["error_info"] = $e->getMessage();
  571. return $json;
  572. }
  573. $json["code"] = '0';
  574. $json["info"] = '品牌修改成功';
  575. return $json;
  576. }
  577. /**
  578. * Function Description:品牌删除
  579. * Function Name: baseDeleteBrand
  580. * @param int $res_id
  581. *
  582. * @return mixed
  583. *
  584. * @author 温依莅
  585. */
  586. public function baseDeleteBrand($res_id)
  587. {
  588. $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
  589. try {
  590. //判断是否存在res_id的数据
  591. $brand = self::find()->where(['res_type_id' => 134, 'res_id' => $res_id, 'cancel_flag' => 0])->one();
  592. if (!is_null($brand)) {
  593. $brand->CANCEL_FLAG = 1;
  594. $brand->UPDATE_TIME = date('Y-m-d H:i:s', time());
  595. $brand->UPDATE_USER_ID = $user_id;
  596. if (!$brand->update()) {
  597. throw new Exception($brand->getErrors());
  598. }
  599. } else {
  600. $json["code"] = '1';
  601. $json["info"] = '获取品牌失败';
  602. return $json;
  603. }
  604. } catch (\Exception $e) {
  605. $json["code"] = '1';
  606. $json["info"] = '品牌删除失败';
  607. $json["error_info"] = $e->getMessage();
  608. return $json;
  609. }
  610. $json["code"] = '0';
  611. $json["info"] = '品牌删除成功';
  612. return $json;
  613. }
  614. /**
  615. * Function Description:车型增加
  616. * Function Name: carSortAdd
  617. * @param string $car_sort_name
  618. * @param int $car_seat_num
  619. *
  620. * @return mixed
  621. *
  622. * @author 温依莅
  623. */
  624. public function carSortAdd($car_sort_name, $car_seat_num)
  625. {
  626. if (!$car_sort_name || !$car_seat_num || !is_numeric($car_seat_num)) {
  627. $json["code"] = '1';
  628. $json["info"] = '参数不正确';
  629. return $json;
  630. }
  631. $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
  632. $seat_name = $car_seat_num . '座';
  633. //-----开始增加车型判断逻辑
  634. $transaction = Yii::$app->db->beginTransaction();
  635. //根据 座位类型名称 和 客座数 判断base_resource表是否已有该数据
  636. $temp = BaseResource::find()->select(['a.res_id', 'a.res_name', 'b.id', 'b.type_name', 'a.cancel_flag'])->from('base_resource a')->leftJoin('dict_type as b', 'a.parent_id=b.id')->where(['a.res_name' => $seat_name, 'b.type_name' => $car_sort_name, 'a.res_type_id' => 69, 'b.parent_id' => 71])->asArray()->one();
  637. //1如果已经有该车型数据
  638. try {
  639. if (!is_null($temp)) {
  640. $carSort = BaseResource::find()->where(['res_id' => $temp['res_id']])->one();
  641. #1.1如果cancel_flag==0,返回已存在
  642. if ($carSort->CANCEL_FLAG == 0) {
  643. $json["code"] = '1';
  644. $json["info"] = '已存在该车型,请勿重复添加';
  645. return $json;
  646. }
  647. #1.2如果cancel_flag==1,则把相应的base_resource行的cancel_flag设置为0
  648. $carSort->CANCEL_FLAG = 0;
  649. $carSort->UPDATE_TIME = date('Y-m-d H:i:s', time());
  650. $carSort->UPDATE_USER_ID = $user_id;
  651. if (!$carSort->update()) {
  652. throw new Exception($carSort->getErrors());
  653. }
  654. #1.X 这里对base_resource_matrix做一个判断是否已有该车型res_id的有效数据,如果有,不做任何处理;如果没有,插入相应信息
  655. } else {
  656. //2如果base_resource没有该数据
  657. $dict = DictType::find()->where(['type_name' => $car_sort_name, 'parent_id' => 71])->one();
  658. //根据座位类型名称,判断dict_type是否有该座位类型
  659. if (!is_null($dict)) {
  660. #2.1如果dict_type有该座位类型,则对base_resource和base_resource_matrix表插入数据
  661. #2.1.1根据得到的dict_type的id,对base_resource表插入后,获取新的res_id
  662. $new_res_id = BaseResource::find()->max('res_id') + 1;
  663. $parent_id = $dict->ID;
  664. $values = [
  665. 'RES_ID' => $new_res_id,
  666. 'RES_NAME' => $seat_name,
  667. 'CREATE_USER_ID' => $user_id,
  668. 'CANCEL_FLAG' => 0,
  669. 'PARENT_ID' => $parent_id,
  670. 'RES_TYPE_ID' => 69,
  671. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  672. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  673. ];
  674. $new_car = new BaseResource;
  675. $new_car->attributes = $values;
  676. if (!$new_car->insert()) {
  677. throw new Exception($new_car->getErrors());
  678. }
  679. #2.1.2根据新的base_resource的res_id和客座人数 再对base_resource_matrix表插入数据
  680. //需要出入的数据拼成数组matrix
  681. $matrix = [
  682. [
  683. 'RES_ID' => $new_car->RES_ID,
  684. 'CANCEL_FLAG' => 0,
  685. 'CREATE_USER_ID' => $user_id,
  686. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  687. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  688. 'POS_X' => 1,
  689. 'POS_Y' => 1,
  690. 'POS_TYPE' => 104,
  691. 'POS_SEQ_ID' => 0,
  692. 'POS_NAME' => '司机座',
  693. ],
  694. [
  695. 'RES_ID' => $new_car->RES_ID,
  696. 'CANCEL_FLAG' => 0,
  697. 'CREATE_USER_ID' => $user_id,
  698. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  699. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  700. 'POS_X' => 4,
  701. 'POS_Y' => 1,
  702. 'POS_TYPE' => 105,
  703. 'POS_SEQ_ID' => 0,
  704. 'POS_NAME' => '导游座',
  705. ]
  706. ];
  707. for ($i = 1; $i <= $car_seat_num; $i++) {
  708. $y = ceil($i / 4) + 1;//y坐标
  709. $x = $i % 4 == 0 ? 4 : $i % 4;//x坐标
  710. $matrix[] = [
  711. 'RES_ID' => $new_car->RES_ID,
  712. 'CANCEL_FLAG' => 0,
  713. 'CREATE_USER_ID' => $user_id,
  714. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  715. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  716. 'POS_X' => $x,
  717. 'POS_Y' => $y,
  718. 'POS_TYPE' => $parent_id,
  719. 'POS_SEQ_ID' => $i,
  720. 'POS_NAME' => 'N' . $i,
  721. ];
  722. }
  723. //6.将数据存入base_resource_property表
  724. $res = Yii::$app->db->createCommand()->batchInsert('base_resource_matrix',
  725. ['RES_ID', 'CANCEL_FLAG', 'CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_TIME', 'POS_X', 'POS_Y', 'POS_TYPE', 'POS_SEQ_ID', 'POS_NAME'],
  726. $matrix)->execute();
  727. if (!$res) {
  728. throw new Exception('base_resource_matrix插入出错');
  729. }
  730. } else {
  731. #2.2如果dict_type没有该座位类型,则对dict_type,base_resource,base_resource_matrix表插入数据
  732. #2.2.1对dict_type表插入,获取新的id
  733. $new_dict_id = DictType::find()->max('id') + 1;
  734. $values = [
  735. 'ID' => $new_dict_id,
  736. 'TYPE_NAME' => $car_sort_name,
  737. 'PARENT_ID' => 71,
  738. 'CREATE_TIME' => date('Y-m-d H:i:s', time())
  739. ];
  740. $new_dict = new DictType();
  741. $new_dict->attributes = $values;
  742. if (!$new_dict->insert()) {
  743. throw new Exception($new_dict->getErrors());
  744. }
  745. #2.2.2根据新的dict_type的id,对base_resource表插入后,获取新的res_id
  746. $new_res_id = BaseResource::find()->max('res_id') + 1;
  747. $parent_id = $new_dict->ID;
  748. $values = [
  749. 'RES_ID' => $new_res_id,
  750. 'RES_NAME' => $seat_name,
  751. 'CREATE_USER_ID' => $user_id,
  752. 'CANCEL_FLAG' => 0,
  753. 'PARENT_ID' => $parent_id,
  754. 'RES_TYPE_ID' => 69,
  755. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  756. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  757. ];
  758. $new_car = new BaseResource;
  759. $new_car->attributes = $values;
  760. if (!$new_car->insert()) {
  761. throw new Exception($new_car->getErrors());
  762. }
  763. #2.2.3根据新的base_resource的res_id和客座人数 再对base_resource_matrix表插入数据
  764. $matrix = [
  765. [
  766. 'RES_ID' => $new_car->RES_ID,
  767. 'CANCEL_FLAG' => 0,
  768. 'CREATE_USER_ID' => $user_id,
  769. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  770. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  771. 'POS_X' => 1,
  772. 'POS_Y' => 1,
  773. 'POS_TYPE' => 104,
  774. 'POS_SEQ_ID' => 0,
  775. 'POS_NAME' => '司机座',
  776. ],
  777. [
  778. 'RES_ID' => $new_car->RES_ID,
  779. 'CANCEL_FLAG' => 0,
  780. 'CREATE_USER_ID' => $user_id,
  781. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  782. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  783. 'POS_X' => 4,
  784. 'POS_Y' => 1,
  785. 'POS_TYPE' => 105,
  786. 'POS_SEQ_ID' => 0,
  787. 'POS_NAME' => '导游座',
  788. ]
  789. ];
  790. for ($i = 1; $i <= $car_seat_num; $i++) {
  791. $y = ceil($i / 4) + 1;//y坐标
  792. $x = $i % 4 == 0 ? 4 : $i % 4;//x坐标
  793. $matrix[] = [
  794. 'RES_ID' => $new_car->RES_ID,
  795. 'CANCEL_FLAG' => 0,
  796. 'CREATE_USER_ID' => $user_id,
  797. 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
  798. 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
  799. 'POS_X' => $x,
  800. 'POS_Y' => $y,
  801. 'POS_TYPE' => $parent_id,
  802. 'POS_SEQ_ID' => $i,
  803. 'POS_NAME' => 'N' . $i,
  804. ];
  805. }
  806. //数据插入base_resource_matrix表
  807. $res = Yii::$app->db->createCommand()->batchInsert('base_resource_matrix',
  808. ['RES_ID', 'CANCEL_FLAG', 'CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_TIME', 'POS_X', 'POS_Y', 'POS_TYPE', 'POS_SEQ_ID', 'POS_NAME'],
  809. $matrix)->execute();
  810. if (!$res) {
  811. throw new Exception('base_resource_matrix插入出错2');
  812. }
  813. }
  814. }
  815. $transaction->commit();
  816. $json['code'] = '0';
  817. $json['info'] = '添加车型成功';
  818. return $json;
  819. } catch (Exception $e) {
  820. # 回滚事务
  821. $transaction->rollBack();
  822. $json['code'] = '1';
  823. $json["info"] = '车型添加失败';
  824. $json['error_info'] = $e->getMessage();
  825. return $json;
  826. }
  827. }
  828. /**
  829. * Function Description:车型删除
  830. * Function Name: baseDeleteCar
  831. * @param int $res_id
  832. *
  833. * @return mixed
  834. *
  835. * @author 温依莅
  836. */
  837. public function baseDeleteCar($res_id)
  838. {
  839. $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
  840. try {
  841. //判断是否存在res_id的数据
  842. $carSort = self::find()->where(['res_type_id' => 69, 'res_id' => $res_id, 'cancel_flag' => 0])->one();
  843. if (!is_null($carSort)) {
  844. $carSort->CANCEL_FLAG = 1;
  845. $carSort->UPDATE_TIME = date('Y-m-d H:i:s', time());
  846. $carSort->UPDATE_USER_ID = $user_id;
  847. if (!$carSort->update()) {
  848. throw new Exception($carSort->getErrors());
  849. }
  850. } else {
  851. $json["code"] = '1';
  852. $json["info"] = '获取车型失败';
  853. return $json;
  854. }
  855. } catch (\Exception $e) {
  856. $json["code"] = '1';
  857. $json["info"] = '车型删除失败';
  858. $json["error_info"] = $e->getMessage();
  859. return $json;
  860. }
  861. $json["code"] = '0';
  862. $json["info"] = '车型删除成功';
  863. return $json;
  864. }
  865. /*
  866. * by luocj
  867. * edit wangxj
  868. * 根据base_supplier表和base_supplier_purchase表获取车队列表数据,不根据base_resource
  869. */
  870. // 获取车队信息
  871. public function getBusCompany()
  872. {
  873. $obj = new BusReport;
  874. $main_corp = $obj->getUserMainCorp();
  875. $main_corp_sql = "and main_corp_id = " . $main_corp;
  876. // $sql = "SELECT res_name,res_id FROM base_resource WHERE res_type_id = 18 AND cancel_flag = 0";
  877. // $sql = "select id as res_id,supplier_name as res_name from base_supplier where cancel_flag = 0 and (select res_type_id from base_resource where res_id = base_supplier.id) = 18 $main_corp_sql";
  878. $data = (new Query())
  879. ->select('s.id as res_id,supplier_name as res_name')
  880. ->from('base_supplier s')
  881. ->leftJoin('base_supplier_purchase p', 's.id = p.supplier_id and p.cancel_flag = 0 and product_type = 259')
  882. ->where(['s.cancel_flag' => '0', 's.main_corp_id' => Yii::$app->user->identity->MAIN_CORP_ID2])
  883. // ->where(['cancel_flag' => '0', '(select res_type_id from base_resource where res_id = base_supplier.id)' => '18','main_corp_id'=>$main_corp])
  884. ->all();
  885. // $data = Yii::$app->db->createCommand($sql)->queryAll();
  886. return ['model' => $this, 'data' => $data];
  887. }
  888. // 获取品牌
  889. public function getBrand()
  890. {
  891. $data = (new Query())
  892. ->select('res_name,res_id')
  893. ->from('base_resource')
  894. ->where(['res_type_id' => '134', 'cancel_flag' => '0'])
  895. ->all();
  896. return ['model' => $this, 'data' => $data];
  897. }
  898. // 获取座位类型
  899. public function getSeatType()
  900. {
  901. $sql = "SELECT id,type_name FROM dict_type WHERE parent_id = 71";
  902. $data = Yii::$app->db->createCommand($sql)->queryAll();
  903. return ['model' => $this, 'data' => $data];
  904. }
  905. // 获取图片类型
  906. public function getPicType()
  907. {
  908. $sql = "SELECT id,type_name FROM dict_type WHERE parent_id = 149";
  909. $data = Yii::$app->db->createCommand($sql)->queryAll();
  910. return ['model' => $this, 'data' => $data];
  911. }
  912. // 获取座位类型后获取车座数
  913. public function getSeatCount($seat_type)
  914. {
  915. $sql = "select res_id,res_name from base_resource b where res_type_id = 69 and parent_id = $seat_type";
  916. $data = Yii::$app->db->createCommand($sql)->queryAll();
  917. return ['model' => $this, 'data' => $data];
  918. }
  919. // 获取燃料形式
  920. public function getFuel()
  921. {
  922. $sql = "SELECT id,type_name FROM dict_type WHERE parent_id = 485";
  923. $data = Yii::$app->db->createCommand($sql)->queryAll();
  924. return ['model' => $this, 'data' => $data];
  925. }
  926. // 获取颜色
  927. public function getColor()
  928. {
  929. $sql = "SELECT res_id,res_name FROM base_resource WHERE res_type_id = 338 AND cancel_flag =0";
  930. $data = Yii::$app->db->createCommand($sql)->queryAll();
  931. return ['model' => $this, 'data' => $data];
  932. }
  933. // 获取车辆信息
  934. public function getBusList($bus_no, $bus_company, $bus_supply, $brand)
  935. {
  936. $obj = new BusReport;
  937. $main_corp = $obj->getUserMainCorp();
  938. $main_corp_sql = "and main_corp_id = " . $main_corp;
  939. $sql = "select bus_id,bus_no,(select res_name from base_resource where brand_id = res_id) as brand_name,seat_desc,
  940. (select res_name from base_resource where org_id = res_id) as car_company,org_id,buy_date
  941. from base_bus where cancel_flag = 0 and if('$bus_no'='-1',0=0,bus_no like '%$bus_no%') and if('$bus_company'='-1',0=0,org_id = '$bus_company') and if('$brand'='-1',0=0,brand_id = '$brand') $main_corp_sql";
  942. $total = sizeof(Yii::$app->db->createCommand($sql)->queryAll());
  943. return ['model' => $this, 'sql' => $sql, 'total' => $total];
  944. }
  945. // 获取车辆详情信息
  946. public function getBusDetail($bus_id)
  947. {
  948. $sql = "select bus_id,bus_no,(select res_name from base_resource where org_id = res_id) as bus_company,org_id,seat_type,bus_type_res_id,fuel_form as fuel_form_id,
  949. (select res_name from base_resource where brand_id = res_id) as brand_name,bus_license,buy_date,seat_desc,driver_count,tour_count,extra_count,
  950. mpg,register_time,(select res_name from base_resource where bus_color = res_id) as bus_color,bus_color as bus_color_id,bus_img_path,bus_img_type,bus_img_path_ori,(select type_name from dict_type where id = fuel_form) as fuel_form from base_bus where cancel_flag = 0 and bus_id ='$bus_id'";
  951. $data = yii::$app->db->createcommand($sql)->queryall();
  952. return ['model' => $this, 'data' => $data];
  953. }
  954. // 删除车辆
  955. public function cancelBus($bus_id)
  956. {
  957. try {
  958. $sql = "update base_bus set cancel_flag = '1' where bus_id = $bus_id";
  959. $data = Yii::$app->db->createCommand($sql)->query();
  960. if (!$data) {
  961. $json = array();
  962. $json["code"] = "2";
  963. $json["info"] = "删除车辆信息失败!";
  964. return json_encode($json);
  965. }
  966. } catch (\Exception $e) {
  967. $json = array();
  968. $json["code"] = "1";
  969. $json["info"] = "删除车辆信息失败!";
  970. return json_encode($json);
  971. }
  972. $json = array();
  973. $json["code"] = "0";
  974. $json["info"] = "删除车辆信息成功!";
  975. return json_encode($json);
  976. }
  977. // 删除司机
  978. public function cancelDriver($driver_id)
  979. {
  980. try {
  981. $sql = "update base_driver set cancel_flag = '1' where driver_id = $driver_id";
  982. $data = Yii::$app->db->createCommand($sql)->query();
  983. if (!$data) {
  984. $json = array();
  985. $json["code"] = "2";
  986. $json["info"] = "删除司机信息失败!";
  987. return json_encode($json);
  988. }
  989. } catch (\Exception $e) {
  990. $json = array();
  991. $json["code"] = "1";
  992. $json["info"] = "删除司机信息失败!";
  993. return json_encode($json);
  994. }
  995. $json = array();
  996. $json["code"] = "0";
  997. $json["info"] = "删除司机信息成功!";
  998. return json_encode($json);
  999. }
  1000. // 获取司机列表
  1001. public function getDriverList($sex, $name, $driver_number, $phone_no, $license_no, $bus_supply, $bus_company)
  1002. {
  1003. $obj = new BusReport;
  1004. $main_corp = $obj->getUserMainCorp();
  1005. $main_corp_sql = "and base_driver.main_corp_id = " . $main_corp;
  1006. $sql = "SELECT driver_name,driver_id,driver_number,org_id,
  1007. (SELECT res_name FROM base_resource WHERE org_id = res_id) AS bus_company,phone_no,license_no,if(sex=2,'女','男') AS sex
  1008. FROM base_driver WHERE cancel_flag = 0 and if('$sex'='-1',0=0,sex='$sex') and if('$name'='-1',0=0,DRIVER_ID = '$name')
  1009. and if('$driver_number'='-1',0=0,DRIVER_NUMBER like'%$driver_number%')and if('$phone_no'='-1',0=0,PHONE_NO like'%$phone_no%')and if('$license_no'='-1',0=0,LICENSE_NO like'%$license_no%')
  1010. and if('$bus_company'='-1',0=0,ORG_ID='$bus_company') $main_corp_sql";
  1011. $total = sizeof(Yii::$app->db->createCommand($sql)->queryAll());
  1012. return ['sql' => $sql, 'total' => $total];
  1013. }
  1014. //获取司机姓名,用于检索
  1015. public function getDriver()
  1016. {
  1017. $obj = new BusReport;
  1018. $main_corp = $obj->getUserMainCorp();
  1019. $main_corp_sql = "and (select main_corp_id from base_user e where base_driver.create_user_id = e.id limit 1) = " . $main_corp;
  1020. $sql = "SELECT driver_name,driver_id FROM base_driver WHERE cancel_flag =0 $main_corp_sql";
  1021. $data = yii::$app->db->createcommand($sql)->queryall();
  1022. return ['data' => $data];
  1023. }
  1024. //获取area
  1025. public function getArea($ara_id = 0)
  1026. {
  1027. $sql = "select area_name,area_id from base_area_view where parent_area_id = '$ara_id'";
  1028. $data = yii::$app->db->createcommand($sql)->queryall();
  1029. return ['data' => $data];
  1030. }
  1031. //获取用户所属车队
  1032. public function getUserCompany()
  1033. {
  1034. $model = Yii::$app->user->id;
  1035. $bus_company_sql = "select org_id from base_user where id = '$model'";
  1036. $bus_company_do = Yii::$app->db->createCommand($bus_company_sql)->queryOne();
  1037. $user_bus_company = $bus_company_do['org_id'];
  1038. return ['data' => $user_bus_company];
  1039. }
  1040. /**
  1041. * User: wangxj
  1042. *
  1043. * 获取该对象res_name中的数字部分
  1044. *
  1045. */
  1046. public function getResNum()
  1047. {
  1048. $pattern = '/\d*/';
  1049. if (preg_match($pattern, $this->RES_NAME, $number)) {
  1050. return $number[0];
  1051. } else {
  1052. return 0;
  1053. }
  1054. }
  1055. /**
  1056. * 获取站点详情
  1057. * @param $param
  1058. */
  1059. static function getTailorStationInfo($post)
  1060. {
  1061. $res_id = $post;
  1062. $check_area = "SELECT
  1063. ifnull(area_id, 0) as area_id
  1064. FROM
  1065. base_resource
  1066. WHERE
  1067. res_id = " . $res_id;
  1068. $area = Yii::$app->db->createCommand($check_area)->queryAll();
  1069. if ($area[0]['area_id'] == 0) {
  1070. $json['code'] = '1';
  1071. $json['info'] = '该站点无应用POI,请先配置应用POI!';
  1072. return $json;
  1073. }
  1074. //获取站点信息详情
  1075. $station_info = "SELECT
  1076. a.res_id,
  1077. a.res_name,
  1078. IFNULL(concat(b.parent_area_id_list,'{',b.area_id,'}'),'') AS parent_area_id_list,
  1079. IFNULL(concat(b.parent_area_name_list,'{',b.area_name,'}'),'') AS parent_area_name_list,
  1080. IFNULL(
  1081. (
  1082. SELECT
  1083. group_concat(res_id)
  1084. FROM
  1085. base_resource
  1086. WHERE
  1087. res_type_id = 79
  1088. AND cancel_flag = 0
  1089. AND parent_id = a.res_id
  1090. ),
  1091. 0
  1092. ) AS checkport_res_id,
  1093. IFNULL(
  1094. (
  1095. SELECT
  1096. group_concat(res_name)
  1097. FROM
  1098. base_resource
  1099. WHERE
  1100. res_type_id = 79
  1101. AND cancel_flag = 0
  1102. AND parent_id = a.res_id
  1103. ),
  1104. ''
  1105. ) AS checkport_res_name
  1106. FROM
  1107. base_resource a
  1108. LEFT JOIN base_area_view b ON a.area_id = b.area_id
  1109. WHERE
  1110. a.cancel_flag = 0
  1111. AND a.res_id = " . $res_id;
  1112. $res_info = Yii::$app->db->createCommand($station_info)->queryAll();//场站详情
  1113. $res_info = $res_info[0];
  1114. $res_info['parent_area_id_list'] = substr($res_info['parent_area_id_list'], 1, -1);
  1115. $res_info['parent_area_name_list'] = substr($res_info['parent_area_name_list'], 1, -1);
  1116. $res_info['parent_area_id_list'] = explode("}{", $res_info['parent_area_id_list']);//应用POI站点id数组
  1117. $res_info['parent_area_name_list'] = explode("}{", $res_info['parent_area_name_list']);//应用POI站点name数组
  1118. $res_info['checkport_res_id'] = explode(",", $res_info['checkport_res_id']);//检票口id数组
  1119. $res_info['checkport_res_name'] = explode(",", $res_info['checkport_res_name']);//检票口name数组
  1120. //规整返回前端的站点数据
  1121. $res = array();
  1122. $res['res_id'] = $res_info['res_id'];
  1123. $res['res_name'] = $res_info['res_name'];
  1124. foreach ($res_info['parent_area_id_list'] as $k => $v) {
  1125. $res['parent_area'][$k]['id'] = $v;
  1126. $res['parent_area'][$k]['name'] = $res_info['parent_area_name_list'][$k];
  1127. }
  1128. foreach ($res_info['checkport_res_id'] as $k => $v) {
  1129. $res['check_port'][$k]['id'] = $v;
  1130. $res['check_port'][$k]['name'] = $res_info['checkport_res_name'][$k];
  1131. }
  1132. $res['inout_type'] = array(
  1133. 0 => array(
  1134. 'id' => '108',
  1135. 'name' => '上'
  1136. ),
  1137. 1 => array(
  1138. 'id' => '109',
  1139. 'name' => '上下'
  1140. ),
  1141. 2 => array(
  1142. 'id' => '110',
  1143. 'name' => '下'
  1144. )
  1145. );
  1146. $json['code'] = '0';
  1147. $json['info'] = '返回数据成功';
  1148. $json['res_info'] = $res;
  1149. return $json;
  1150. }
  1151. /**
  1152. * 获取全部站点
  1153. * @param $param
  1154. */
  1155. static function getLineStation()
  1156. {
  1157. $sql = "SELECT
  1158. res_id,
  1159. res_name
  1160. FROM
  1161. base_resource
  1162. WHERE
  1163. res_type_id = 24
  1164. AND cancel_flag = 0
  1165. ";
  1166. $res_list = Yii::$app->db->createCommand($sql)->queryAll();
  1167. $json['code'] = '0';
  1168. $json['info'] = '返回数据成功';
  1169. $json['data'] = $res_list;
  1170. return $json;
  1171. }
  1172. /**
  1173. * Function Description:根据res_id获取poi
  1174. * Function Name: getAreaByRes
  1175. * @param $res_id
  1176. *
  1177. * @return array|false
  1178. *
  1179. * @author 冒炎
  1180. */
  1181. public function getAreaByRes($res_id){
  1182. if($res_id == ''){
  1183. $res_id = 0;
  1184. }
  1185. $sql = "SELECT
  1186. ifnull(area_id, 0) as area_id
  1187. FROM
  1188. base_resource
  1189. WHERE
  1190. res_id = " . $res_id;
  1191. $area = Yii::$app->db->createCommand($sql)->queryOne();//场站列表
  1192. return $area;
  1193. }
  1194. /**
  1195. * Function Description:获取站点信息详情
  1196. * Function Name: getStationsByres
  1197. * @param $res_id
  1198. *
  1199. * @return array
  1200. *
  1201. * @author 冒炎
  1202. */
  1203. public function getStationsByres($res_id){
  1204. $sql = "SELECT
  1205. a.res_id,
  1206. a.res_name,
  1207. IFNULL(concat(b.parent_area_id_list,'{',b.area_id,'}'),'') AS parent_area_id_list,
  1208. IFNULL(concat(b.parent_area_name_list,'{',b.area_name,'}'),'') AS parent_area_name_list,
  1209. IFNULL(
  1210. (
  1211. SELECT
  1212. group_concat(res_id)
  1213. FROM
  1214. base_resource
  1215. WHERE
  1216. res_type_id = 79
  1217. AND cancel_flag = 0
  1218. AND parent_id = a.res_id
  1219. ),
  1220. 0
  1221. ) AS checkport_res_id,
  1222. IFNULL(
  1223. (
  1224. SELECT
  1225. group_concat(res_name)
  1226. FROM
  1227. base_resource
  1228. WHERE
  1229. res_type_id = 79
  1230. AND cancel_flag = 0
  1231. AND parent_id = a.res_id
  1232. ),
  1233. ''
  1234. ) AS checkport_res_name
  1235. FROM
  1236. base_resource a
  1237. LEFT JOIN base_area_view b ON a.area_id = b.area_id
  1238. WHERE
  1239. a.cancel_flag = 0
  1240. AND a.res_id = " . $res_id;
  1241. $res_info = Yii::$app->db->createCommand($sql)->queryOne();//场站详情
  1242. return $res_info;
  1243. }
  1244. /**
  1245. * Function Description:根据名字获取站点
  1246. * Function Name: getLineStationByRes
  1247. * @param $res_name
  1248. *
  1249. * @return array|\yii\db\ActiveRecord[]
  1250. *
  1251. * @author 冒炎
  1252. */
  1253. public function getLineStationByRes($res_name){
  1254. $select = [
  1255. 'res_id',
  1256. 'res_name'
  1257. ];
  1258. $where = ['and',['=','res_type_id',24],['=','cancel_flag',0],['like','res_name',$res_name]];
  1259. $list = self::find()
  1260. ->select($select)
  1261. ->from(self::tableName())
  1262. ->where($where)
  1263. ->asArray()
  1264. ->all();
  1265. return $list;
  1266. }
  1267. }