|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use backend\modules\motorcade\models\BusReport;
- use Yii;
- use yii\base\Exception;
- use yii\db\ActiveRecord;
- use backend\modules\zzcs\models\DictType;
- use yii\db\Query;
-
- /**
- * This is the model class for table "base_resource".
- *
- * @property integer $ID
- * @property integer $RES_ID
- * @property string $RES_NAME
- * @property integer $PARENT_ID
- * @property integer $CANCEL_FLAG
- * @property integer $IF_DISABLED
- * @property integer $RES_TYPE_ID
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- * @property integer $AREA_ID
- * @property string $TOP_ORG_ID
- */
- class BaseResource extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'base_resource';
- }
-
- /**
- * @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 [
- [['RES_ID', 'PARENT_ID', 'CANCEL_FLAG', 'IF_DISABLED', 'RES_TYPE_ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'AREA_ID'], 'integer'],
- [['RES_NAME'], 'string', 'max' => 200],
- [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
- [['TOP_ORG_ID'], 'string', 'max' => 100],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'RES_ID' => '资源ID',
- 'RES_NAME' => '资源名称',
- 'PARENT_ID' => '父级资源ID,若无父级资源,则为0',
- 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
- 'IF_DISABLED' => '组织机构当前是否已作废,0未作废,1已作废',
- 'RES_TYPE_ID' => '资源类别,DICT_TYPE.ID',
- 'CREATE_USER_ID' => '代下单用户ID,BASE_USER.ID,用户A代替用户B下单,则MAIN_CREATE_USER_ID=A,CREATE_USER_ID=B',
- 'CREATE_TIME' => '订单创建时间,订单创建日期距2016-01-01的天数,算法用',
- 'UPDATE_USER_ID' => '记录最后更新用户ID',
- 'UPDATE_TIME' => '记录最后更新时间',
- 'AREA_ID' => '站点应用POI',
- 'TOP_ORG_ID' => 'Top Org 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类型
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function addStation($station_name, $longitude, $latitude, $range, $address, $poi_type)
- {
- #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;
- }
- #endregion
-
- $base_area = new BaseArea();
-
- //1.获取base_area最大的id
- $max_area_id = $base_area::find()->max('id');
-
- //2.获取base_resource最大的id
- $max_res_id = self::find()->max('res_id');
-
- //3.比较大小 选择用的id
- $id = max($max_area_id, $max_res_id);
- $id++;
-
- #region base_area表数据
- $base_area_values = [
- 'ID' => $id,
- 'PARENT_ID' => $range,
- '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()),
- 'CANCEL_FLAG' => 0,
- 'AREA_NAME' => $station_name,
- 'POI_TYPE1' => 402,
- 'POI_TYPE2' => $poi_type
- ];
- #endregion
-
- #region base_resource表数据
- $base_resource_values = [
- 'RES_ID' => $id,
- 'RES_NAME' => $station_name,
- 'CANCEL_FLAG' => '0',
- 'IF_DISABLED' => '0',
- 'RES_TYPE_ID' => '24',
- '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_ID' => $id
- ];
- #endregion
-
- #region base_resource_property表数据
- $base_resource_property_values = [
- [
- '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()),
- 'CANCEL_FLAG' => 0,
- 'RES_ID' => $id,
- 'TYPE_ID' => 212,
- 'PROPERTY' => $longitude,
- ],
- [
- '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()),
- 'CANCEL_FLAG' => 0,
- 'RES_ID' => $id,
- 'TYPE_ID' => 213,
- 'PROPERTY' => $latitude,
- ],
- [
- '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()),
- 'CANCEL_FLAG' => 0,
- 'RES_ID' => $id,
- 'TYPE_ID' => 279,
- 'PROPERTY' => $address,
- ]
- ];
- #endregion
-
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //4.将数据存入base_area表
- $base_area->attributes = $base_area_values;
- $res = $base_area->insert();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
-
- //5.将数据存入base_resource表
- $this->attributes = $base_resource_values;
- $res = $this->insert();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
-
- //6.将数据存入base_resource_property表
- $res = Yii::$app->db->createCommand()->batchInsert('base_resource_property',
- ['CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_USER_ID', 'UPDATE_TIME', 'CANCEL_FLAG', 'RES_ID', 'TYPE_ID', 'PROPERTY'],
- $base_resource_property_values)->execute();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
-
- //7.更新base_area_view
- $sql = 'call SP_MAKE_BASE_AREA_VIEW()';
- $res = Yii::$app->db->createCommand($sql)->execute();
- if (false === $res) {
- throw new Exception('输入数据不符合格式');
- }
-
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '添加站点成功';
- $json['area_id'] = $id;
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- $json['code'] = '1';
- $json['info'] = $e->getMessage();
- }
- return $json;
- }
-
- /**
- * 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');
- $user_rule = $cookies->getValue('ht_user_role');
- if ($user_rule != 0 && $user_rule != 1) {
- $json['code'] = '1';
- $json['info'] = '无权限';
- return $json;
- }
- #endregion
-
-
-
- #region base_area表数据
- $base_area_values = [
- 'PARENT_ID' => $range,
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'AREA_NAME' => $station_name,
- 'POI_TYPE2' => $poi_type
- ];
- #endregion
-
- #region 判断$range是否改变
- $base_area_one = BaseArea::findOne(['id' => $station_id, 'cancel_flag' => 0]);
- $old_range = $base_area_one->PARENT_ID;
- #endregion
-
- #region base_resource表数据
- $base_resource_values = [
- 'RES_NAME' => $station_name,
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- ];
- if($old_range!=$range){
- $base_resource_values['AREA_ID'] = $range;
- }
- #endregion
-
- #region base_resource_property表数据
- $base_resource_property_values = [
- 212 => [
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'PROPERTY' => $longitude,
- ],
- 213 => [
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'PROPERTY' => $latitude,
- ],
- 279 => [
- 'UPDATE_USER_ID' => $user_id,
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'PROPERTY' => $address,
- ]
- ];
- #endregion
-
- $transaction = Yii::$app->db->beginTransaction();
- try {
- //1.修改base_area表
- $base_area_one = BaseArea::findOne(['id' => $station_id, 'cancel_flag' => 0]);
- $base_area_one->attributes = $base_area_values;
- $res = $base_area_one->update();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
- //2.修改base_resource表
- $base_resource_one = self::findOne(['res_id' => $station_id, 'cancel_flag' => 0]);
- $base_resource_one->attributes = $base_resource_values;
- $res = $base_resource_one->update();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
-
- //3.修改base_resource_property表
- foreach ($base_resource_property_values as $key => $vel) {
- $base_resource_property_one = BaseResourceProperty::findOne(['res_id' => $station_id, 'cancel_flag' => 0, 'type_id' => $key]);
- $base_resource_property_one->attributes = $vel;
- $res = $base_resource_property_one->update();
- if (!$res) {
- throw new Exception('输入数据不符合格式');
- }
- }
-
- //4.更新base_area_view
- $sql = 'call SP_MAKE_BASE_AREA_VIEW()';
- $res = Yii::$app->db->createCommand($sql)->execute();
- if (false === $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: getStationInfo
- * @param int $station_id 站点id
- *
- * @return array|bool
- *
- * @author 张帅
- */
- public function getStationInfo($station_id)
- {
- #region 1.判断base_area表id与base_resource表id是否一致
- //base_area表id
- $area_name = BaseArea::find()->select('area_name')
- ->where(['id' => $station_id])
- ->asArray()
- ->one();
- $area_name = $area_name['area_name'];
- //base_resource表id
- $res_name = self::find()->select('res_name')
- ->where(['res_id' => $station_id])
- ->asArray()
- ->one();
- if ($res_name == null) {
- return false;
- }
- $res_name = $res_name['res_name'];
- if ($area_name != $res_name) {
- return false;
- }
- #endregion
-
- #region 2.数据库获取详情
- $station_info_db = self::find()
- ->select('a.area_name,a.poi_type2,v.parent_area_id_list,p.type_id,p.property')
- ->from('base_area as a')
- ->leftJoin('base_area_view as v', 'a.id = v.area_id')
- ->leftJoin('base_resource_property as p', 'a.id = p.res_id')
- ->where([
- 'and',
- ['=', 'a.id', $station_id],
- ['in', 'p.type_id', [212, 213, 279]],
- ['=', 'a.cancel_flag', 0],
- ['=', 'p.cancel_flag', 0],
- ])
- ->asArray()
- ->all();
- #endregion
-
- #region 3.整理数据
- $station_info = [];
- foreach ($station_info_db as $key => $vel) {
- if (!isset($station_info['station_id'])) {
- $station_info['station_id'] = $station_id;//站点id
- $station_info['station_name'] = $vel['area_name'];//站点名称
- //poi类型
- if ($vel['poi_type2'] != '0') {
- $poi_type_arr = substr($vel['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 = substr($vel['parent_area_id_list'], 1, -1);
- $station_parent_list_arr = explode('}{', $station_parent_list_arr);
- $station_info['range_arr'] = $station_parent_list_arr;
- #region 查询下拉列表
- $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;
- #endregion
- }
- //经度
- if ($vel['type_id'] == 212) {
- $station_info['longitude'] = $vel['property'];
- }
- //纬度
- if ($vel['type_id'] == 213) {
- $station_info['latitude'] = $vel['property'];
- }
- //地址
- if ($vel['type_id'] == 279) {
- $station_info['address'] = $vel['property'];
- }
- }
- #endregion
- return $station_info;
- // echo '<pre>';
- // print_r($station_info);die;
- }
-
- /**
- * Function Description:获取展示的站点详情
- * Function Name: getShowStationInfo
- * @param int $station_id 站点id
- *
- * @return array|bool
- *
- * @author 张帅
- */
- public function getShowStationInfo($station_id)
- {
- #region 1.判断base_area表id与base_resource表id是否一致
- //base_area表id
- $area_name = BaseArea::find()->select('area_name')
- ->where(['id' => $station_id])
- ->asArray()
- ->one();
- $area_name = $area_name['area_name'];
- //base_resource表id
- $res_name = self::find()->select('res_name')
- ->where(['res_id' => $station_id])
- ->asArray()
- ->one();
- if ($res_name == null) {
- return false;
- }
- $res_name = $res_name['res_name'];
- if ($area_name != $res_name) {
- return false;
- }
- #endregion
-
- #region 2.数据库获取详情
- $station_info_db = self::find()
- ->select('a.area_name,a.poi_type2,v.parent_area_id_list,v.parent_area_name_list,p.type_id,p.property')
- ->from('base_area as a')
- ->leftJoin('base_area_view as v', 'a.id = v.area_id')
- ->leftJoin('base_resource_property as p', 'a.id = p.res_id')
- ->where([
- 'and',
- ['=', 'a.id', $station_id],
- ['in', 'p.type_id', [212, 213, 279]],
- ['=', 'a.cancel_flag', 0],
- ['=', 'p.cancel_flag', 0],
- ])
- ->asArray()
- ->all();
- #endregion
-
- #region 3.整理数据
- $station_info = [];
- foreach ($station_info_db as $key => $vel) {
- if (!isset($station_info['station_id'])) {
- $station_info['station_id'] = $station_id;//站点id
- $station_info['station_name'] = $vel['area_name'];//站点名称
- //poi类型
- if ($vel['poi_type2'] != '0') {
-
- $poi_type_arr = substr($vel['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($vel['parent_area_id_list'])) {
- $station_parent_id_list_arr = substr($vel['parent_area_id_list'], 1, -1);
- $station_parent_id_list_arr = explode('}{', $station_parent_id_list_arr);
-
- $station_parent_name_list_arr = substr($vel['parent_area_name_list'], 1, -1);
- $station_parent_name_list_arr = explode('}{', $station_parent_name_list_arr);
-
- foreach ($station_parent_id_list_arr as $key1 => $value) {
- $rang_list_arr[$key1]['area_id'] = $value;
- $rang_list_arr[$key1]['area_name'] = $station_parent_name_list_arr[$key1];
- }
- }
- #endregion
- $station_info['range_arr'] = $rang_list_arr;
- }
- //经度
- if ($vel['type_id'] == 212) {
- $station_info['longitude'] = $vel['property'];
- }
- //纬度
- if ($vel['type_id'] == 213) {
- $station_info['latitude'] = $vel['property'];
- }
- //地址
- if ($vel['type_id'] == 279) {
- $station_info['address'] = $vel['property'];
- }
- }
- #endregion
-
- return $station_info;
- }
-
- /**
- * Function Description:修改品牌姓名
- * Function Name: baseUpdateBrand
- * @param $res_id
- * @param $res_name
- *
- * @return mixed
- *
- * @author 温依莅
- */
- public function baseUpdateBrand($res_id, $res_name)
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
- if ($res_name == '') {
- $json["code"] = '1';
- $json["info"] = '品牌名不能为空';
- return $json;
- }
-
- try {
- //判断是否存在res_name相同的选项,如果存在
- $temp = BaseResource::find()->where(['res_type_id' => 134, 'res_name' => $res_name])->one();
- if (!is_null($temp)) {
- $json["code"] = '1';
- $json["info"] = '该品牌名已存在';
- return $json;
- }
- //判断是否存在res_id的数据
- $brand = self::find()->where(['res_type_id' => 134, 'res_id' => $res_id, 'cancel_flag' => 0])->one();
- if (!is_null($brand)) {
- $brand->RES_NAME = $res_name;
- $brand->UPDATE_TIME = date('Y-m-d H:i:s', time());
- $brand->UPDATE_USER_ID = $user_id;
- if (!$brand->update()) {
- throw new Exception($brand->getErrors());
- }
-
- } else {
- $json["code"] = '1';
- $json["info"] = '获取品牌失败';
- return $json;
- }
- } catch (\Exception $e) {
- $json["code"] = '1';
- $json["info"] = '品牌修改失败';
- $json["error_info"] = $e->getMessage();
- return $json;
- }
- $json["code"] = '0';
- $json["info"] = '品牌修改成功';
- return $json;
- }
-
- /**
- * Function Description:品牌删除
- * Function Name: baseDeleteBrand
- * @param int $res_id
- *
- * @return mixed
- *
- * @author 温依莅
- */
- public function baseDeleteBrand($res_id)
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
- try {
- //判断是否存在res_id的数据
- $brand = self::find()->where(['res_type_id' => 134, 'res_id' => $res_id, 'cancel_flag' => 0])->one();
- if (!is_null($brand)) {
- $brand->CANCEL_FLAG = 1;
- $brand->UPDATE_TIME = date('Y-m-d H:i:s', time());
- $brand->UPDATE_USER_ID = $user_id;
- if (!$brand->update()) {
- throw new Exception($brand->getErrors());
- }
-
- } else {
- $json["code"] = '1';
- $json["info"] = '获取品牌失败';
- return $json;
- }
- } catch (\Exception $e) {
- $json["code"] = '1';
- $json["info"] = '品牌删除失败';
- $json["error_info"] = $e->getMessage();
- return $json;
- }
- $json["code"] = '0';
- $json["info"] = '品牌删除成功';
- return $json;
- }
-
- /**
- * Function Description:车型增加
- * Function Name: carSortAdd
- * @param string $car_sort_name
- * @param int $car_seat_num
- *
- * @return mixed
- *
- * @author 温依莅
- */
- public function carSortAdd($car_sort_name, $car_seat_num)
- {
- if (!$car_sort_name || !$car_seat_num || !is_numeric($car_seat_num)) {
- $json["code"] = '1';
- $json["info"] = '参数不正确';
- return $json;
- }
- $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
- $seat_name = $car_seat_num . '座';
- //-----开始增加车型判断逻辑
- $transaction = Yii::$app->db->beginTransaction();
- //根据 座位类型名称 和 客座数 判断base_resource表是否已有该数据
- $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();
- //1如果已经有该车型数据
- try {
- if (!is_null($temp)) {
- $carSort = BaseResource::find()->where(['res_id' => $temp['res_id']])->one();
- #1.1如果cancel_flag==0,返回已存在
- if ($carSort->CANCEL_FLAG == 0) {
- $json["code"] = '1';
- $json["info"] = '已存在该车型,请勿重复添加';
- return $json;
- }
- #1.2如果cancel_flag==1,则把相应的base_resource行的cancel_flag设置为0
- $carSort->CANCEL_FLAG = 0;
- $carSort->UPDATE_TIME = date('Y-m-d H:i:s', time());
- $carSort->UPDATE_USER_ID = $user_id;
- if (!$carSort->update()) {
- throw new Exception($carSort->getErrors());
- }
- #1.X 这里对base_resource_matrix做一个判断是否已有该车型res_id的有效数据,如果有,不做任何处理;如果没有,插入相应信息
- } else {
- //2如果base_resource没有该数据
- $dict = DictType::find()->where(['type_name' => $car_sort_name, 'parent_id' => 71])->one();
- //根据座位类型名称,判断dict_type是否有该座位类型
- if (!is_null($dict)) {
- #2.1如果dict_type有该座位类型,则对base_resource和base_resource_matrix表插入数据
- #2.1.1根据得到的dict_type的id,对base_resource表插入后,获取新的res_id
- $new_res_id = BaseResource::find()->max('res_id') + 1;
- $parent_id = $dict->ID;
- $values = [
- 'RES_ID' => $new_res_id,
- 'RES_NAME' => $seat_name,
- 'CREATE_USER_ID' => $user_id,
- 'CANCEL_FLAG' => 0,
- 'PARENT_ID' => $parent_id,
- 'RES_TYPE_ID' => 69,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- ];
- $new_car = new BaseResource;
- $new_car->attributes = $values;
- if (!$new_car->insert()) {
- throw new Exception($new_car->getErrors());
- }
- #2.1.2根据新的base_resource的res_id和客座人数 再对base_resource_matrix表插入数据
- //需要出入的数据拼成数组matrix
- $matrix = [
- [
- 'RES_ID' => $new_car->RES_ID,
- 'CANCEL_FLAG' => 0,
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'POS_X' => 1,
- 'POS_Y' => 1,
- 'POS_TYPE' => 104,
- 'POS_SEQ_ID' => 0,
- 'POS_NAME' => '司机座',
- ],
- [
- 'RES_ID' => $new_car->RES_ID,
- 'CANCEL_FLAG' => 0,
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'POS_X' => 4,
- 'POS_Y' => 1,
- 'POS_TYPE' => 105,
- 'POS_SEQ_ID' => 0,
- 'POS_NAME' => '导游座',
- ]
- ];
- for ($i = 1; $i <= $car_seat_num; $i++) {
- $y = ceil($i / 4) + 1;//y坐标
- $x = $i % 4 == 0 ? 4 : $i % 4;//x坐标
- $matrix[] = [
- 'RES_ID' => $new_car->RES_ID,
- 'CANCEL_FLAG' => 0,
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'POS_X' => $x,
- 'POS_Y' => $y,
- 'POS_TYPE' => $parent_id,
- 'POS_SEQ_ID' => $i,
- 'POS_NAME' => 'N' . $i,
- ];
- }
- //6.将数据存入base_resource_property表
- $res = Yii::$app->db->createCommand()->batchInsert('base_resource_matrix',
- ['RES_ID', 'CANCEL_FLAG', 'CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_TIME', 'POS_X', 'POS_Y', 'POS_TYPE', 'POS_SEQ_ID', 'POS_NAME'],
- $matrix)->execute();
- if (!$res) {
- throw new Exception('base_resource_matrix插入出错');
- }
- } else {
- #2.2如果dict_type没有该座位类型,则对dict_type,base_resource,base_resource_matrix表插入数据
- #2.2.1对dict_type表插入,获取新的id
- $new_dict_id = DictType::find()->max('id') + 1;
- $values = [
- 'ID' => $new_dict_id,
- 'TYPE_NAME' => $car_sort_name,
- 'PARENT_ID' => 71,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time())
- ];
- $new_dict = new DictType();
- $new_dict->attributes = $values;
- if (!$new_dict->insert()) {
- throw new Exception($new_dict->getErrors());
- }
- #2.2.2根据新的dict_type的id,对base_resource表插入后,获取新的res_id
- $new_res_id = BaseResource::find()->max('res_id') + 1;
- $parent_id = $new_dict->ID;
- $values = [
- 'RES_ID' => $new_res_id,
- 'RES_NAME' => $seat_name,
- 'CREATE_USER_ID' => $user_id,
- 'CANCEL_FLAG' => 0,
- 'PARENT_ID' => $parent_id,
- 'RES_TYPE_ID' => 69,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- ];
- $new_car = new BaseResource;
- $new_car->attributes = $values;
- if (!$new_car->insert()) {
- throw new Exception($new_car->getErrors());
- }
- #2.2.3根据新的base_resource的res_id和客座人数 再对base_resource_matrix表插入数据
- $matrix = [
- [
- 'RES_ID' => $new_car->RES_ID,
- 'CANCEL_FLAG' => 0,
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'POS_X' => 1,
- 'POS_Y' => 1,
- 'POS_TYPE' => 104,
- 'POS_SEQ_ID' => 0,
- 'POS_NAME' => '司机座',
- ],
- [
- 'RES_ID' => $new_car->RES_ID,
- 'CANCEL_FLAG' => 0,
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'POS_X' => 4,
- 'POS_Y' => 1,
- 'POS_TYPE' => 105,
- 'POS_SEQ_ID' => 0,
- 'POS_NAME' => '导游座',
- ]
- ];
- for ($i = 1; $i <= $car_seat_num; $i++) {
- $y = ceil($i / 4) + 1;//y坐标
- $x = $i % 4 == 0 ? 4 : $i % 4;//x坐标
- $matrix[] = [
- 'RES_ID' => $new_car->RES_ID,
- 'CANCEL_FLAG' => 0,
- 'CREATE_USER_ID' => $user_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s', time()),
- 'UPDATE_TIME' => date('Y-m-d H:i:s', time()),
- 'POS_X' => $x,
- 'POS_Y' => $y,
- 'POS_TYPE' => $parent_id,
- 'POS_SEQ_ID' => $i,
- 'POS_NAME' => 'N' . $i,
- ];
- }
- //数据插入base_resource_matrix表
- $res = Yii::$app->db->createCommand()->batchInsert('base_resource_matrix',
- ['RES_ID', 'CANCEL_FLAG', 'CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_TIME', 'POS_X', 'POS_Y', 'POS_TYPE', 'POS_SEQ_ID', 'POS_NAME'],
- $matrix)->execute();
- if (!$res) {
- throw new Exception('base_resource_matrix插入出错2');
- }
- }
-
- }
-
- $transaction->commit();
- $json['code'] = '0';
- $json['info'] = '添加车型成功';
- return $json;
-
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollBack();
- $json['code'] = '1';
- $json["info"] = '车型添加失败';
- $json['error_info'] = $e->getMessage();
- return $json;
- }
- }
-
- /**
- * Function Description:车型删除
- * Function Name: baseDeleteCar
- * @param int $res_id
- *
- * @return mixed
- *
- * @author 温依莅
- */
- public function baseDeleteCar($res_id)
- {
- $user_id = Yii::$app->request->cookies->getValue('user_id', 0);
- try {
- //判断是否存在res_id的数据
- $carSort = self::find()->where(['res_type_id' => 69, 'res_id' => $res_id, 'cancel_flag' => 0])->one();
- if (!is_null($carSort)) {
- $carSort->CANCEL_FLAG = 1;
- $carSort->UPDATE_TIME = date('Y-m-d H:i:s', time());
- $carSort->UPDATE_USER_ID = $user_id;
- if (!$carSort->update()) {
- throw new Exception($carSort->getErrors());
- }
-
- } else {
- $json["code"] = '1';
- $json["info"] = '获取车型失败';
- return $json;
- }
- } catch (\Exception $e) {
- $json["code"] = '1';
- $json["info"] = '车型删除失败';
- $json["error_info"] = $e->getMessage();
- return $json;
- }
- $json["code"] = '0';
- $json["info"] = '车型删除成功';
- return $json;
- }
- /*
- * by luocj
- * edit wangxj
- * 根据base_supplier表和base_supplier_purchase表获取车队列表数据,不根据base_resource
- */
- // 获取车队信息
- public function getBusCompany()
- {
- $obj = new BusReport;
- $main_corp = $obj->getUserMainCorp();
- $main_corp_sql = "and main_corp_id = " . $main_corp;
- // $sql = "SELECT res_name,res_id FROM base_resource WHERE res_type_id = 18 AND cancel_flag = 0";
- // $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";
- $data = (new Query())
- ->select('s.id as res_id,supplier_name as res_name')
- ->from('base_supplier s')
- ->leftJoin('base_supplier_purchase p', 's.id = p.supplier_id and p.cancel_flag = 0 and product_type = 259')
- ->where(['s.cancel_flag' => '0', 's.main_corp_id' => Yii::$app->user->identity->MAIN_CORP_ID2])
- // ->where(['cancel_flag' => '0', '(select res_type_id from base_resource where res_id = base_supplier.id)' => '18','main_corp_id'=>$main_corp])
- ->all();
- // $data = Yii::$app->db->createCommand($sql)->queryAll();
- return ['model' => $this, 'data' => $data];
- }
-
- // 获取品牌
- public function getBrand()
- {
- $data = (new Query())
- ->select('res_name,res_id')
- ->from('base_resource')
- ->where(['res_type_id' => '134', 'cancel_flag' => '0'])
- ->all();
- return ['model' => $this, 'data' => $data];
- }
-
- // 获取座位类型
- public function getSeatType()
- {
- $sql = "SELECT id,type_name FROM dict_type WHERE parent_id = 71";
- $data = Yii::$app->db->createCommand($sql)->queryAll();
- return ['model' => $this, 'data' => $data];
- }
-
- // 获取图片类型
- public function getPicType()
- {
- $sql = "SELECT id,type_name FROM dict_type WHERE parent_id = 149";
- $data = Yii::$app->db->createCommand($sql)->queryAll();
- return ['model' => $this, 'data' => $data];
- }
-
- // 获取座位类型后获取车座数
- public function getSeatCount($seat_type)
- {
- $sql = "select res_id,res_name from base_resource b where res_type_id = 69 and parent_id = $seat_type";
- $data = Yii::$app->db->createCommand($sql)->queryAll();
- return ['model' => $this, 'data' => $data];
- }
-
- // 获取燃料形式
- public function getFuel()
- {
- $sql = "SELECT id,type_name FROM dict_type WHERE parent_id = 485";
- $data = Yii::$app->db->createCommand($sql)->queryAll();
- return ['model' => $this, 'data' => $data];
- }
-
- // 获取颜色
- public function getColor()
- {
- $sql = "SELECT res_id,res_name FROM base_resource WHERE res_type_id = 338 AND cancel_flag =0";
- $data = Yii::$app->db->createCommand($sql)->queryAll();
- return ['model' => $this, 'data' => $data];
- }
-
- // 获取车辆信息
- public function getBusList($bus_no, $bus_company, $bus_supply, $brand)
- {
- $obj = new BusReport;
- $main_corp = $obj->getUserMainCorp();
- $main_corp_sql = "and main_corp_id = " . $main_corp;
-
- $sql = "select bus_id,bus_no,(select res_name from base_resource where brand_id = res_id) as brand_name,seat_desc,
- (select res_name from base_resource where org_id = res_id) as car_company,org_id,buy_date
- 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";
- $total = sizeof(Yii::$app->db->createCommand($sql)->queryAll());
- return ['model' => $this, 'sql' => $sql, 'total' => $total];
- }
-
- // 获取车辆详情信息
- public function getBusDetail($bus_id)
- {
- $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,
- (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,
- 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'";
- $data = yii::$app->db->createcommand($sql)->queryall();
- return ['model' => $this, 'data' => $data];
- }
-
- // 删除车辆
- public function cancelBus($bus_id)
- {
- try {
- $sql = "update base_bus set cancel_flag = '1' where bus_id = $bus_id";
- $data = Yii::$app->db->createCommand($sql)->query();
- if (!$data) {
- $json = array();
- $json["code"] = "2";
- $json["info"] = "删除车辆信息失败!";
- return json_encode($json);
- }
- } catch (\Exception $e) {
- $json = array();
- $json["code"] = "1";
- $json["info"] = "删除车辆信息失败!";
- return json_encode($json);
- }
- $json = array();
- $json["code"] = "0";
- $json["info"] = "删除车辆信息成功!";
- return json_encode($json);
- }
-
- // 删除司机
- public function cancelDriver($driver_id)
- {
- try {
- $sql = "update base_driver set cancel_flag = '1' where driver_id = $driver_id";
- $data = Yii::$app->db->createCommand($sql)->query();
- if (!$data) {
- $json = array();
- $json["code"] = "2";
- $json["info"] = "删除司机信息失败!";
- return json_encode($json);
- }
- } catch (\Exception $e) {
- $json = array();
- $json["code"] = "1";
- $json["info"] = "删除司机信息失败!";
- return json_encode($json);
- }
- $json = array();
- $json["code"] = "0";
- $json["info"] = "删除司机信息成功!";
- return json_encode($json);
- }
-
- // 获取司机列表
- public function getDriverList($sex, $name, $driver_number, $phone_no, $license_no, $bus_supply, $bus_company)
- {
- $obj = new BusReport;
- $main_corp = $obj->getUserMainCorp();
- $main_corp_sql = "and base_driver.main_corp_id = " . $main_corp;
-
- $sql = "SELECT driver_name,driver_id,driver_number,org_id,
- (SELECT res_name FROM base_resource WHERE org_id = res_id) AS bus_company,phone_no,license_no,if(sex=2,'女','男') AS sex
- FROM base_driver WHERE cancel_flag = 0 and if('$sex'='-1',0=0,sex='$sex') and if('$name'='-1',0=0,DRIVER_ID = '$name')
- 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%')
- and if('$bus_company'='-1',0=0,ORG_ID='$bus_company') $main_corp_sql";
- $total = sizeof(Yii::$app->db->createCommand($sql)->queryAll());
- return ['sql' => $sql, 'total' => $total];
- }
-
- //获取司机姓名,用于检索
- public function getDriver()
- {
- $obj = new BusReport;
- $main_corp = $obj->getUserMainCorp();
- $main_corp_sql = "and (select main_corp_id from base_user e where base_driver.create_user_id = e.id limit 1) = " . $main_corp;
-
- $sql = "SELECT driver_name,driver_id FROM base_driver WHERE cancel_flag =0 $main_corp_sql";
- $data = yii::$app->db->createcommand($sql)->queryall();
- return ['data' => $data];
- }
-
- //获取area
- public function getArea($ara_id = 0)
- {
- $sql = "select area_name,area_id from base_area_view where parent_area_id = '$ara_id'";
- $data = yii::$app->db->createcommand($sql)->queryall();
- return ['data' => $data];
- }
-
- //获取用户所属车队
- public function getUserCompany()
- {
- $model = Yii::$app->user->id;
- $bus_company_sql = "select org_id from base_user where id = '$model'";
- $bus_company_do = Yii::$app->db->createCommand($bus_company_sql)->queryOne();
- $user_bus_company = $bus_company_do['org_id'];
- return ['data' => $user_bus_company];
- }
-
- /**
- * User: wangxj
- *
- * 获取该对象res_name中的数字部分
- *
- */
- public function getResNum()
- {
- $pattern = '/\d*/';
- if (preg_match($pattern, $this->RES_NAME, $number)) {
- return $number[0];
- } else {
- return 0;
- }
- }
-
- /**
- * 获取站点详情
- * @param $param
- */
- static function getTailorStationInfo($post)
- {
- $res_id = $post;
- $check_area = "SELECT
- ifnull(area_id, 0) as area_id
- FROM
- base_resource
- WHERE
- res_id = " . $res_id;
- $area = Yii::$app->db->createCommand($check_area)->queryAll();
- if ($area[0]['area_id'] == 0) {
- $json['code'] = '1';
- $json['info'] = '该站点无应用POI,请先配置应用POI!';
- return $json;
- }
-
- //获取站点信息详情
- $station_info = "SELECT
- a.res_id,
- a.res_name,
- IFNULL(concat(b.parent_area_id_list,'{',b.area_id,'}'),'') AS parent_area_id_list,
- IFNULL(concat(b.parent_area_name_list,'{',b.area_name,'}'),'') AS parent_area_name_list,
- IFNULL(
- (
- SELECT
- group_concat(res_id)
- FROM
- base_resource
- WHERE
- res_type_id = 79
- AND cancel_flag = 0
- AND parent_id = a.res_id
- ),
- 0
- ) AS checkport_res_id,
- IFNULL(
- (
- SELECT
- group_concat(res_name)
- FROM
- base_resource
- WHERE
- res_type_id = 79
- AND cancel_flag = 0
- AND parent_id = a.res_id
- ),
- ''
- ) AS checkport_res_name
- FROM
- base_resource a
- LEFT JOIN base_area_view b ON a.area_id = b.area_id
- WHERE
- a.cancel_flag = 0
- AND a.res_id = " . $res_id;
- $res_info = Yii::$app->db->createCommand($station_info)->queryAll();//场站详情
- $res_info = $res_info[0];
- $res_info['parent_area_id_list'] = substr($res_info['parent_area_id_list'], 1, -1);
- $res_info['parent_area_name_list'] = substr($res_info['parent_area_name_list'], 1, -1);
- $res_info['parent_area_id_list'] = explode("}{", $res_info['parent_area_id_list']);//应用POI站点id数组
- $res_info['parent_area_name_list'] = explode("}{", $res_info['parent_area_name_list']);//应用POI站点name数组
- $res_info['checkport_res_id'] = explode(",", $res_info['checkport_res_id']);//检票口id数组
- $res_info['checkport_res_name'] = explode(",", $res_info['checkport_res_name']);//检票口name数组
- //规整返回前端的站点数据
- $res = array();
- $res['res_id'] = $res_info['res_id'];
- $res['res_name'] = $res_info['res_name'];
- foreach ($res_info['parent_area_id_list'] as $k => $v) {
- $res['parent_area'][$k]['id'] = $v;
- $res['parent_area'][$k]['name'] = $res_info['parent_area_name_list'][$k];
- }
- foreach ($res_info['checkport_res_id'] as $k => $v) {
- $res['check_port'][$k]['id'] = $v;
- $res['check_port'][$k]['name'] = $res_info['checkport_res_name'][$k];
- }
- $res['inout_type'] = array(
- 0 => array(
- 'id' => '108',
- 'name' => '上'
- ),
- 1 => array(
- 'id' => '109',
- 'name' => '上下'
- ),
- 2 => array(
- 'id' => '110',
- 'name' => '下'
- )
- );
-
- $json['code'] = '0';
- $json['info'] = '返回数据成功';
- $json['res_info'] = $res;
- return $json;
- }
-
- /**
- * 获取全部站点
- * @param $param
- */
- static function getLineStation()
- {
- $sql = "SELECT
- res_id,
- res_name
- FROM
- base_resource
- WHERE
- res_type_id = 24
- AND cancel_flag = 0
- ";
- $res_list = Yii::$app->db->createCommand($sql)->queryAll();
- $json['code'] = '0';
- $json['info'] = '返回数据成功';
- $json['data'] = $res_list;
- return $json;
- }
-
- /**
- * Function Description:根据res_id获取poi
- * Function Name: getAreaByRes
- * @param $res_id
- *
- * @return array|false
- *
- * @author 冒炎
- */
- public function getAreaByRes($res_id){
- if($res_id == ''){
- $res_id = 0;
- }
- $sql = "SELECT
- ifnull(area_id, 0) as area_id
- FROM
- base_resource
- WHERE
- res_id = " . $res_id;
- $area = Yii::$app->db->createCommand($sql)->queryOne();//场站列表
- return $area;
- }
-
- /**
- * Function Description:获取站点信息详情
- * Function Name: getStationsByres
- * @param $res_id
- *
- * @return array
- *
- * @author 冒炎
- */
- public function getStationsByres($res_id){
- $sql = "SELECT
- a.res_id,
- a.res_name,
- IFNULL(concat(b.parent_area_id_list,'{',b.area_id,'}'),'') AS parent_area_id_list,
- IFNULL(concat(b.parent_area_name_list,'{',b.area_name,'}'),'') AS parent_area_name_list,
- IFNULL(
- (
- SELECT
- group_concat(res_id)
- FROM
- base_resource
- WHERE
- res_type_id = 79
- AND cancel_flag = 0
- AND parent_id = a.res_id
- ),
- 0
- ) AS checkport_res_id,
- IFNULL(
- (
- SELECT
- group_concat(res_name)
- FROM
- base_resource
- WHERE
- res_type_id = 79
- AND cancel_flag = 0
- AND parent_id = a.res_id
- ),
- ''
- ) AS checkport_res_name
- FROM
- base_resource a
- LEFT JOIN base_area_view b ON a.area_id = b.area_id
- WHERE
- a.cancel_flag = 0
- AND a.res_id = " . $res_id;
- $res_info = Yii::$app->db->createCommand($sql)->queryOne();//场站详情
- return $res_info;
- }
-
-
- /**
- * Function Description:根据名字获取站点
- * Function Name: getLineStationByRes
- * @param $res_name
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 冒炎
- */
- public function getLineStationByRes($res_name){
- $select = [
- 'res_id',
- 'res_name'
- ];
- $where = ['and',['=','res_type_id',24],['=','cancel_flag',0],['like','res_name',$res_name]];
- $list = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->asArray()
- ->all();
-
- return $list;
- }
- }
|