|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Yii;
- use yii\db\ActiveRecord;
- use yii\base\Exception;
-
- /**
- * This is the model class for table "base_area_audit".
- *
- * @property string $ID
- * @property integer $CANCEL_FLAG
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- * @property string $AREA_NAME
- * @property integer $PARENT_ID
- * @property integer $POI_TYPE1
- * @property string $POI_TYPE2
- * @property double $LONGITUDE
- * @property double $LATITUDE
- * @property string $ADDRESS
- * @property integer $CHECK_STATUS
- * @property string $CHECK_LOG
- * @property string $APPLY_NAME
- * @property string $APPLY_MAN
- * @property integer $TRUE_AREA
- */
- class BaseAreaAudit extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'base_area_audit';
- }
-
- /**
- * @return \yii\db\Connection the database connection used by this AR class.
- */
- public static function getDb()
- {
- return Yii::$app->get('db');
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'PARENT_ID', 'POI_TYPE1', 'CHECK_STATUS', 'TRUE_AREA'], 'integer'],
- [['UPDATE_TIME', 'AREA_NAME', 'POI_TYPE1', 'APPLY_NAME'], 'required'],
- [['LONGITUDE', 'LATITUDE'], 'number'],
- [['CHECK_LOG'], 'string'],
- [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
- [['AREA_NAME', 'POI_TYPE2', 'ADDRESS', 'APPLY_NAME', 'APPLY_MAN'], 'string', 'max' => 255],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
- 'CREATE_USER_ID' => '记录创建用户ID',
- 'CREATE_TIME' => '记录创建时间',
- 'UPDATE_USER_ID' => '记录最后更新用户ID',
- 'UPDATE_TIME' => '记录最后更新时间',
- 'AREA_NAME' => '站点或区域名称',
- 'PARENT_ID' => '父节点id',
- 'POI_TYPE1' => 'POI类型',
- 'POI_TYPE2' => 'POI类别',
- 'LONGITUDE' => '经度',
- 'LATITUDE' => '纬度',
- 'ADDRESS' => '地址',
- 'CHECK_STATUS' => '审核状态 0待审核 1.已通过 2.已驳回',
- 'CHECK_LOG' => '审核日志',
- 'APPLY_NAME' => '申请人账号',
- 'APPLY_MAN' => '申请人',
- 'TRUE_AREA' => '审核成功后真实的area_id',
- ];
- }
-
- /**
- * Function Description:提交站点审核数据
- * Function Name: addStation
- * @param string $station_name 站点名称
- * @param string $longitude 经度
- * @param string $latitude 纬度
- * @param string $range 区域
- * @param string $address 地址
- * @param string $poi_type poi类型
- * @param string $audit_text 申请原因
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function addStation($station_name, $longitude, $latitude, $range, $address, $poi_type, $audit_text)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- $user_info = BaseUser::find()
- ->select('user_name,true_name')
- ->where(['id' => $user_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- $user_name = $user_info['user_name'];
- $true_name = $user_info['true_name'];
- #endregion
-
- #region 1.获取要插入的数据
- $value = [
- 'CANCEL_FLAG' => 0,
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'AREA_NAME' => $station_name,
- 'PARENT_ID' => $range,
- 'POI_TYPE1' => 402,
- 'POI_TYPE2' => $poi_type,
- 'LONGITUDE' => $longitude,
- 'LATITUDE' => $latitude,
- 'ADDRESS' => $address,
- 'CHECK_STATUS' => 0,
- 'CHECK_LOG' => '{' . date('Y/m//d H:i:s', time()) . '|提交审核,申请理由:' . $audit_text . '。申请人:' . $true_name . '}',
- 'APPLY_NAME' => $user_name,
- 'APPLY_MAN' => $true_name
- ];
- #endregion
-
- try {
- //2.将数据存入base_area_audit表
- $this->attributes = $value;
- $res = $this->insert();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
-
- $json['code'] = '0';
- $json['info'] = '插入站点成功';
- } catch (Exception $e) {
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
- /**
- * Function Description:
- * Function Name: addRange
- * @param string $station_name 站点名称
- * @param string $range 区域
- * @param string $poi_type poi类型
- * @param string $audit_text 申请原因
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function addRange($station_name, $range, $poi_type, $audit_text)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- $user_info = BaseUser::find()
- ->select('user_name,true_name')
- ->where(['id' => $user_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- $user_name = $user_info['user_name'];
- $true_name = $user_info['true_name'];
- #endregion
-
- if ($range == -1) {
- $range = 0;
- }
- #region 1.获取要插入的数据
- $value = [
- 'CANCEL_FLAG' => 0,
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'AREA_NAME' => $station_name,
- 'PARENT_ID' => $range,
- 'POI_TYPE1' => 401,
- 'POI_TYPE2' => $poi_type,
- 'CHECK_STATUS' => 0,
- 'CHECK_LOG' => '{' . date('Y/m//d H:i:s', time()) . '|提交审核,申请理由:' . $audit_text . '。申请人:' . $true_name . '}',
- 'APPLY_NAME' => $user_name,
- 'APPLY_MAN' => $true_name
- ];
- #endregion
- try {
- //2.将数据存入base_area_audit表
- $this->attributes = $value;
- $res = $this->insert();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
-
- $json['code'] = '0';
- $json['info'] = '插入站点成功';
- } catch (Exception $e) {
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
-
- /**
- * Function Description:审核区域/站点列表
- * Function Name: getStationList
- * @param int $user_id 用户id
- * @param int $check_status 审核状态
- * @param int $station_type 站点类型
- * @param string $station_name 站点名称
- * @param int $poi_type POI类型
- * @param int $range 所属区域
- * @param int $page_size 每页数量
- * @param int $current_page 总页数
- * @param string $apply_name 申请人账号
- * @param string $apply_man 申请人
- * @param string $apply_no 申请编号
- *
- * @return mixed
- *
- * @author 张帅
- */
- 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 = '')
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $true_user_id = $cookies->getValue('user_id');
- $user_rule = $cookies->getValue('ht_user_role');
-
- if ($true_user_id != $user_id) {
- $json['code'] = '1';
- $json['info'] = '登录信息出错';
- return $json;
- }
-
- #endregion
-
- $base_area = new BaseArea();
-
- #region 1.查询条件
- $sql_where = [];
- $sql_where[] = 'and';
-
- //筛掉删除后的
- $sql_where[] = ['=', 'a.cancel_flag', 0];
- $sql_where[] = ['=', 'a.check_status', $check_status];
-
- //判断user_id
- if ($user_rule != 0 && $user_rule != 1 ) {
- $sql_where[] = ['=', 'a.create_user_id', $user_id];
- }
-
- //poi类别(区域/站点)
- if ($station_type != -1) {
- $sql_where[] = ['=', 'a.poi_type1', $station_type];
- }
-
- //poi名称
- if ($station_name != '') {
- $sql_where[] = ['like', 'a.area_name', $station_name];
- }
-
- //区域
- if ($range != -1) {
- $sql_where[] = ['or', ['=', 'a.parent_id', $range], ['like', 'v.parent_area_id_list', '{' . $range . '}']];
- }
-
- //poi类型
- if ($poi_type != -1) {
- $sql_where[] = ['like', 'a.poi_type2', $poi_type];
- }
-
- //申请账号
- if ($apply_name != '') {
- $sql_where[] = ['like', 'a.apply_name', $apply_name];
- }
-
- //申请人
- if ($apply_man != '') {
- $sql_where[] = ['like', 'a.apply_man', $apply_man];
- }
-
-
- //申请人
- if ($apply_no != '') {
- $sql_where[] = ['like', 'id', $apply_no];
- }
-
- $offset = ($current_page - 1) * $page_size;
- #endregion
-
- #region 2.查询数据
- $rows = self::find()
- ->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')
- ->from('base_area_audit as a')
- ->leftJoin('base_area_view as v', 'a.parent_id = v.area_id')
- ->where($sql_where)
- ->orderBy(['a.update_time'=>SORT_DESC,'a.poi_type1' => SORT_ASC, 'v.area_level' => SORT_ASC])
- ->offset($offset)
- ->limit($page_size)
- ->asArray()
- ->all();
- #endregion
-
- #region 3.整理数据
- $parent_area_id_arr = [];
- foreach ($rows as $key => $vel) {
- //站点/区域id
- $area_one['station_id'] = $vel['area_id'];
- //站点/区域类别
- $area_one['station_type'] = $vel['poi_type1'];
- //申请账号
- $area_one['apply_name'] = $vel['apply_name'];
- //申请人
- $area_one['apply_man'] = $vel['apply_man'];
- //申请时间
- $area_one['apply_time'] = $vel['update_time'];
- //区域 、站点
- if ($vel['parent_id'] != 0 && $vel['parent_area_id_list'] != '') {
- $parent_area_id_list = substr($vel['parent_area_id_list'] . "{" . $vel['parent_id'] . '}', 1, -1);
- } elseif ($vel['parent_id'] != 0) {
- $parent_area_id_list = $vel['parent_id'];
- } else {
- $parent_area_id_list = '';
- }
-
- if ($parent_area_id_list != '') {
- $area_one['range'] = explode('}{', $parent_area_id_list);
- } else {
- $area_one['range'] = [];
- }
- $area_one['station']['area_id'] = $vel['area_id'];
- $area_one['station']['area_name'] = $vel['area_name'];
-
- //区域/站点类型
- $poi_type_one = substr($vel['poi_type2'], 1, -1);
- if ($poi_type_one == '') {
- $area_one['poi_type'] = [];
- } else {
- $area_one['poi_type'] = explode('}{', $poi_type_one);
- }
-
- //获取所有的父节点id
- foreach ($area_one['range'] as $range_k => $range_v) {
- if (!isset($parent_area_id_arr[$range_v])) {
- $parent_area_id_arr[$range_v] = $range_v;
- }
- }
-
- $rows[$key] = $area_one;
- }
- #endregion
-
- #region 4.所有父节点的详情
- $parent_area_arr_row = self::find()->select('id as area_id,area_name,poi_type1 as station_type')
- ->from('base_area')
- ->where(['in', 'id', $parent_area_id_arr])
- ->asArray()
- ->all();
- foreach ($parent_area_arr_row as $key => $value) {
- $parent_area_arr[$value['area_id']] = $value;
- }
- #endregion
-
- #region 5.获取所有的dict_type
- $poi_type_row = DictType::find()->select('id as station_type_id,type_name as station_type_name')
- ->where(['parent_id' => 403])
- ->asArray()
- ->all();
- foreach ($poi_type_row as $key => $value) {
- $poi_type_all[$value['station_type_id']] = $value;
- }
- #endregion
-
- #region 6.将详情扔回$rows
- foreach ($rows as $area_key => $area_vel) {
- $range_one = [];
- //扔入区域数据
- if (count($area_vel['range']) != 0) {
- foreach ($area_vel['range'] as $range_key => $range_vel) {
- if (isset($parent_area_arr[$range_vel])) {
- $range_one[$range_key] = $parent_area_arr[$range_vel];
- $range_one[$range_key]['storage_type'] = 'formal';
- } else {
- echo $range_vel;
- }
- }
- }
-
- if ($area_vel['station_type'] == 401) {
- $station_one = $area_vel['station'];
- $station_one['station_type'] = 401;
- $station_one['storage_type'] = 'audit';
- $range_one[] = $station_one;
- $station_one = [];
- } else {
- $station_one = $area_vel['station'];
- }
-
- //扔入详情
- $poi_type_one = [];
- if (count($area_vel['poi_type']) != 0) {
- foreach ($area_vel['poi_type'] as $poi_type_key => $poi_type_vel) {
- if (isset($poi_type_all[$poi_type_vel])) {
- $poi_type_one[$poi_type_key] = $poi_type_all[$poi_type_vel];
- } else {
- echo $poi_type_vel;
- }
- }
- }
-
- $rows[$area_key]['range'] = $range_one;
- $rows[$area_key]['station'] = $station_one;
- $rows[$area_key]['poi_type'] = $poi_type_one;
- }
- #endregion
-
- #region 7.获取分页
- $total_row = self::find()
- ->from('base_area_audit as a')
- ->leftJoin('base_area_view as v', 'a.parent_id = v.area_id')
- ->where($sql_where)
- ->orderBy(['a.poi_type1' => SORT_ASC, 'v.area_level' => SORT_ASC])
- ->count();
-
- $page_arr = $base_area->getPage($total_row, $page_size, $current_page);
- #endregion
-
- $data['rows'] = $rows;
- $data['page_arr'] = $page_arr;
- $data['page']['page_size'] = $page_size;
- $data['page']['current_page'] = $current_page;
- $data['page']['total_row'] = $total_row;
- $data['page']['total_page'] = ceil($total_row / $page_size);
-
- return $data;
-
- }
-
- /**
- * Function Description:审核站点的展示信息
- * Function Name: getShowStationInfo
- * @param int $station_id 站点id
- *
- * @return array
- *
- * @author 张帅
- */
- public function getShowStationInfo($station_id)
- {
- #region 1.数据库获取详情
- $station_info_db = self::find()
- ->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')
- ->from('base_area_audit as a')
- ->leftJoin('base_area_view as v', 'a.parent_id = v.area_id')
- ->where([
- 'and',
- ['=', 'a.id', $station_id],
- ['=', 'a.cancel_flag', 0]
- ])
- ->asArray()
- ->one();
- #endregion
-
- #region 2.整理数据
- $station_info = [];
- $station_info['station_id'] = $station_id;//站点id
- $station_info['station_name'] = $station_info_db['area_name'];//站点名称
-
- //审核状态
- $station_info['check_status'] = $station_info_db['check_status'];
- if ($station_info['check_status'] == 0) {
- $station_info['check_status'] = '待审核';
- } elseif ($station_info['check_status'] == 1) {
- $station_info['check_status'] = '已通过';
- } else {
- $station_info['check_status'] = '已驳回';
- }
- //是否输出经纬度等信息
- if ($station_info_db['poi_type1'] == 402) {
- $station_info['longitude'] = $station_info_db['longitude'];
- $station_info['latitude'] = $station_info_db['latitude'];
- $station_info['address'] = $station_info_db['address'];
- }
- //审核日志
- $station_info['check_log'] = substr($station_info_db['check_log'], 1, -1);
- $station_info['check_log'] = str_replace('}{', '<br>', $station_info['check_log']);
- $station_info['check_log'] = str_replace('|', ' ', $station_info['check_log']);
-
- //poi类型
- if ($station_info_db['poi_type2'] != '0') {
-
- $poi_type_arr = substr($station_info_db['poi_type2'], 1, -1);
- $poi_type_arr = explode('}{', $poi_type_arr);
-
- #region 获取poi类型的名称
- $poi_type_arr = DictType::find()
- ->select('id as station_type_id,type_name as station_type_name')
- ->where([
- 'and',
- ['in', 'id', $poi_type_arr]
- ])->asArray()->all();
- #endregion
- } else {
- $poi_type_arr = [];
- }
- $station_info['poi_type_arr'] = $poi_type_arr;
-
- //父节点数组
- $rang_list_arr = [];
- if (!empty($station_info_db['parent_area_id_list'])) {
- $station_parent_id_list_arr = substr($station_info_db['parent_area_id_list'], 1, -1);
- $station_parent_id_list_arr = explode('}{', $station_parent_id_list_arr);
-
- $station_parent_name_list_arr = substr($station_info_db['parent_area_name_list'], 1, -1);
- $station_parent_name_list_arr = explode('}{', $station_parent_name_list_arr);
-
- foreach ($station_parent_id_list_arr as $key => $value) {
- $rang_list_arr[$key]['area_id'] = $value;
- $rang_list_arr[$key]['area_name'] = $station_parent_name_list_arr[$key];
- }
- }
- //将父节点拼入
- if ($station_info_db['parent_id'] != 0) {
- $range_one['area_id'] = $station_info_db['parent_id'];
- $range_one['area_name'] = $station_info_db['parent_name'];
- $rang_list_arr[] = $range_one;
- }
-
- $station_info['range_arr'] = $rang_list_arr;
- return $station_info;
- }
-
- /**
- * Function Description:获取区域/站点详情及配置包
- * Function Name: getStationInfo
- * @param int $station_id 站点id
- *
- * @return array
- *
- * @author 张帅
- */
- public function getStationInfo($station_id)
- {
- #region 1.数据库获取详情
- $station_info_db = self::find()
- ->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')
- ->from('base_area_audit as a')
- ->leftJoin('base_area_view as v', 'a.parent_id = v.area_id')
- ->where([
- 'and',
- ['=', 'a.id', $station_id],
- ['=', 'a.cancel_flag', 0]
- ])
- ->asArray()
- ->one();
- #endregion
-
- #region 2.整理数据
- $station_info = [];
- $station_info['station_id'] = $station_id;//站点id
- $station_info['station_name'] = $station_info_db['area_name'];//站点名称
-
- //审核状态
- $station_info['check_status'] = $station_info_db['check_status'];
- if ($station_info['check_status'] == 0) {
- $station_info['check_status'] = '待审核';
- } elseif ($station_info['check_status'] == 1) {
- $station_info['check_status'] = '已通过';
- } else {
- $station_info['check_status'] = '已驳回';
- }
- //审核日志
- $station_info['check_log'] = substr($station_info_db['check_log'], 1, -1);
- $station_info['check_log'] = str_replace('}{', '<br>', $station_info['check_log']);
- $station_info['check_log'] = str_replace('|', ' ', $station_info['check_log']);
-
- //是否输出经纬度等信息
- if ($station_info_db['poi_type1'] == 402) {
- $station_info['longitude'] = $station_info_db['longitude'];
- $station_info['latitude'] = $station_info_db['latitude'];
- $station_info['address'] = $station_info_db['address'];
- }
-
- //poi类型
- if ($station_info_db['poi_type2'] != '0') {
- $poi_type_arr = substr($station_info_db['poi_type2'], 1, -1);
- $poi_type_arr = explode('}{', $poi_type_arr);
- } else {
- $poi_type_arr = [];
- }
- $station_info['poi_type_arr'] = $poi_type_arr;
-
- //父节点数组
- $station_parent_list_arr = [];
- if (!empty($station_info_db['parent_area_id_list'])) {
- $station_parent_list_arr = substr($station_info_db['parent_area_id_list'], 1, -1);
- $station_parent_list_arr = explode('}{', $station_parent_list_arr);
- $station_info['range_arr'] = $station_parent_list_arr;
- }
- //将父节点拼入
- if ($station_info_db['parent_id'] != 0) {
- $station_info['range_arr'][] = $station_info_db['parent_id'];
- $station_parent_list_arr[] = $station_info_db['parent_id'];
- }
- //父节点查询项
- if (count($station_parent_list_arr) > 0) {
- $rang_list = BaseArea::find()
- ->select('id as area_id,area_name,parent_id')
- ->where([
- 'and',
- ['in', 'parent_id', $station_parent_list_arr],
- ['=', 'cancel_flag', 0],
- ['=', 'poi_type1', 401]
- ])
- ->asArray()
- ->all();
-
- $rang_list_arr = [];
- foreach ($rang_list as $rang_key => $range_vel) {
- $rang_list_arr[$range_vel['parent_id']][$range_vel['area_id']]['area_id'] = $range_vel['area_id'];
- $rang_list_arr[$range_vel['parent_id']][$range_vel['area_id']]['area_name'] = $range_vel['area_name'];
- }
- $station_info['rang_list_arr'] = $rang_list_arr;
- } else {
- $station_info['range_arr'] = [];
- $station_info['rang_list_arr'] = [];
- }
- return $station_info;
- }
-
- /**
- * Function Description:修改站点
- * Function Name: updateStation
- * @param int $station_id 站点id
- * @param string $station_name 站点名称
- * @param string $longitude 经度
- * @param string $latitude 纬度
- * @param string $range 区域
- * @param string $address 地址
- * @param string $poi_type poi类型
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function updateStation($station_id, $station_name, $longitude, $latitude, $range, $address, $poi_type)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- #endregion
-
- #region 1.value表数据
- $value = [
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'AREA_NAME' => $station_name,
- 'PARENT_ID' => $range,
- 'POI_TYPE2' => $poi_type,
- 'LONGITUDE' => $longitude,
- 'LATITUDE' => $latitude,
- 'ADDRESS' => $address
- ];
- #endregion
-
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //修改base_area_audit表
- $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
- $base_area_audit_one->attributes = $value;
- $res = $base_area_audit_one->update();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '修改站点成功';
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
- /**
- * Function Description:修改区域
- * Function Name: updateRange
- * @param int $station_id 站点id
- * @param string $station_name 站点名称
- * @param string $range 区域
- * @param string $poi_type poi类型
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function updateRange($station_id, $station_name, $range, $poi_type)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- #endregion
-
- #region 1.value表数据
- $value = [
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'AREA_NAME' => $station_name,
- 'PARENT_ID' => $range,
- 'POI_TYPE2' => $poi_type
- ];
-
- #endregion
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //修改base_area_audit表
- $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
- $base_area_audit_one->attributes = $value;
- $res = $base_area_audit_one->update();
- if (!$res) {
- throw new Exception('审核出错');
- }
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '审核区域成功';
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
- /**
- * Function Description:审核区域
- * Function Name: checkRange
- * @param int $station_id 站点id
- * @param int $check_status 审核状态
- * @param string $audit_text 审核说明
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function checkRange($station_id, $check_status, $audit_text)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- $user_rule = $cookies->getValue('ht_user_role');
- if ($user_rule != 0 && $user_rule != 1 ) {
- $json['code'] = '1';
- $json['info'] = '无权限';
- return $json;
- }
- $user_info = BaseUser::find()
- ->select('user_name,true_name')
- ->where(['id' => $user_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- //$user_name = $user_info['user_name'];
- $true_name = $user_info['true_name'];
- #endregion
-
- $base_area = new BaseArea();
- #region 1.获取站点详情
- $station_info = self::find()
- ->select('area_name,parent_id,poi_type2,check_status,check_log')
- ->where(['id' => $station_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- #endregion
-
- $station_name = $station_info['area_name'];//区域名称
- $range = $station_info['parent_id'];//所属区域
- $poi_type = $station_info['poi_type2'];//区域类型
- $check_log = $station_info['check_log'];//日志
-
- $area_id = 0;
- #region 2.插入正式数据表
- if ($check_status == 1) {
- $result = $base_area->addRange($station_name, $range, $poi_type);
- if ($result['code'] != '0') {
- $json['code'] = '1';
- $json['info'] = '网络原因,请稍后重试';
- return $json;
- } else {
- $area_id = $result['area_id'];
- }
- }
- #endregion
-
- #region 3.修改审核表
- if ($check_status == 1) {
- $new_log = '{' . date('Y/m//d H:i:s', time()) . '|审核通过,审核说明:' . $audit_text . '。审核人:' . $true_name . '}';
- } else {
- $new_log = '{' . date('Y/m//d H:i:s', time()) . '|审核不通过,审核说明:' . $audit_text . '。审核人:' . $true_name . '}';
- }
- $value = [
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'CHECK_STATUS' => $check_status,
- 'CHECK_LOG' => $check_log . $new_log,
- 'TRUE_AREA' => $area_id
- ];
- #endregion
-
- #endregion
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //修改base_area_audit表
- $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
- $base_area_audit_one->attributes = $value;
- $res = $base_area_audit_one->update();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '审核区域成功';
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
- /**
- * Function Description:审核站点
- * Function Name: checkStation
- * @param int $station_id 站点id
- * @param int $check_status 审核状态
- * @param string $audit_text 审核说明
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function checkStation($station_id, $check_status, $audit_text)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- $user_rule = $cookies->getValue('ht_user_role');
- if ($user_rule != 0 && $user_rule != 1 ) {
- $json['code'] = '1';
- $json['info'] = '无权限';
- return $json;
- }
- $user_info = BaseUser::find()
- ->select('user_name,true_name')
- ->where(['id' => $user_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- //$user_name = $user_info['user_name'];
- $true_name = $user_info['true_name'];
- #endregion
-
- $base_resource = new BaseResource();
- #region 1.获取站点详情
- $station_info = self::find()
- ->select('area_name,parent_id,poi_type2,check_status,check_log,longitude,latitude,address')
- ->where(['id' => $station_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- #endregion
- $station_name = $station_info['area_name'];//区域名称
- $range = $station_info['parent_id'];//所属区域
- $poi_type = $station_info['poi_type2'];//区域类型
- $longitude = $station_info['longitude'];//经度
- $latitude = $station_info['latitude'];//纬度
- $address = $station_info['address'];//地址
- $check_log = $station_info['check_log'];//日志
-
- $area_id = 0;
-
- #region 2.插入正式数据表
- if ($check_status == 1) {
- $result = $base_resource->addStation($station_name, $longitude, $latitude, $range, $address, $poi_type);
- if ($result['code'] != '0') {
- $json['code'] = '1';
- $json['info'] = '网络原因,请稍后重试';
- return $json;
- } else {
- $area_id = $result['area_id'];
- }
- }
- #endregion
-
- #region 3.修改审核表
- if ($check_status == 1) {
- $new_log = '{' . date('Y/m//d H:i:s', time()) . '|审核通过,审核说明:' . $audit_text . '。审核人:' . $true_name . '}';
- } else {
- $new_log = '{' . date('Y/m//d H:i:s', time()) . '|审核不通过,审核说明:' . $audit_text . '。审核人:' . $true_name . '}';
- }
- $value = [
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'CHECK_STATUS' => $check_status,
- 'CHECK_LOG' => $check_log . $new_log,
- 'TRUE_AREA' => $area_id
- ];
- #endregion
-
- #endregion
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //修改base_area_audit表
- $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
- $base_area_audit_one->attributes = $value;
- $res = $base_area_audit_one->update();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '审核站点成功';
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
- /**
- * Function Description:删除站点
- * Function Name: deleteStation
- * @param $station_id
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function deleteStation($station_id)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- #endregion
-
- #region 1.删除站点
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //2.修改base_area表
- $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
- $base_area_audit_one->attributes = ['CANCEL_FLAG' => '1', 'UPDATE_USER_ID' => $user_id, 'UPDATE_TIME' => date('Y-m-d H:i:s', time())];
- $res = $base_area_audit_one->update();
- if (!$res) {
- throw new Exception('删除出错');
- }
-
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '删除站点成功';
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- #endregion
-
- return $json;
- }
-
- /**
- * Function Description:重新申请站点
- * Function Name: reapplyStation
- * @param int $station_id 站点id
- * @param string $station_name 站点名称
- * @param string $longitude 经度
- * @param string $latitude 纬度
- * @param string $range 区域
- * @param string $address 地址
- * @param string $poi_type poi类型
- * @param string $audit_text 申请理由
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function reapplyStation($station_id, $station_name, $longitude, $latitude, $range, $address, $poi_type, $audit_text)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- $user_info = BaseUser::find()
- ->select('user_name,true_name')
- ->where(['id' => $user_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- //$user_name = $user_info['user_name'];
- $true_name = $user_info['true_name'];
- #endregion
-
- #region 1.获取站点详情
- $station_info = self::find()
- ->select('check_log')
- ->where(['id' => $station_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- #endregion
-
- $check_log = $station_info['check_log'];
- $new_log = '{' . date('Y/m//d H:i:s', time()) . '|提交审核,申请理由:' . $audit_text . '。申请人:' . $true_name . '}';
-
- #region 1.value表数据
- $value = [
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'AREA_NAME' => $station_name,
- 'PARENT_ID' => $range,
- 'POI_TYPE2' => $poi_type,
- 'LONGITUDE' => $longitude,
- 'LATITUDE' => $latitude,
- 'ADDRESS' => $address,
- 'CHECK_STATUS' => 0,
- 'CHECK_LOG' => $check_log . $new_log
- ];
- #endregion
-
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //修改base_area_audit表
- $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
- $base_area_audit_one->attributes = $value;
- $res = $base_area_audit_one->update();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '修改站点成功';
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
- /**
- * Function Description:重新申请区域
- * Function Name: reapplyRange
- * @param int $station_id 站点id
- * @param string $station_name 站点名称
- * @param string $range 所属区域
- * @param string $poi_type poi类型
- * @param string $audit_text 申请理由
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function reapplyRange($station_id, $station_name, $range, $poi_type, $audit_text)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- $user_info = BaseUser::find()
- ->select('user_name,true_name')
- ->where(['id' => $user_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- //$user_name = $user_info['user_name'];
- $true_name = $user_info['true_name'];
- #endregion
-
- #region 1.获取区域详情
- $station_info = self::find()
- ->select('check_log')
- ->where(['id' => $station_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- #endregion
-
- $check_log = $station_info['check_log'];
- $new_log = '{' . date('Y/m//d H:i:s', time()) . '|提交审核,申请理由:' . $audit_text . '。申请人:' . $true_name . '}';
-
- #region 1.value表数据
- $value = [
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'AREA_NAME' => $station_name,
- 'PARENT_ID' => $range,
- 'POI_TYPE2' => $poi_type,
- 'CHECK_STATUS' => 0,
- 'CHECK_LOG' => $check_log . $new_log
- ];
- #endregion
-
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //修改base_area_audit表
- $base_area_audit_one = self::findOne(['id' => $station_id, 'cancel_flag' => 0]);
- $base_area_audit_one->attributes = $value;
- $res = $base_area_audit_one->update();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '修改站点成功';
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
- }
|