'search'], [['BUS_ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'BUS_TYPE_RES_ID', 'BRAND_ID', 'MAIN_CORP_ID', 'BUS_STATE', 'SEAT_TYPE', 'BUS_COLOR', 'FUEL_FORM', 'MAX_COUNT', 'BUS_BELONG'], 'integer', 'on' => 'add_bus'], [['BUS_NO', 'BRAND_ID', 'FUEL_FORM', 'BUS_TYPE_RES_ID', 'SEAT_TYPE', 'MAX_COUNT', 'BUS_BELONG'], 'required', 'on' => 'add_bus'], [['BUS_NO'], 'ValidateBusNo', 'on' => 'add_bus'], [['BUY_DATE', 'REGISTER_TIME'], 'required', 'on' => 'add_bus'], [['BUS_LICENSE', 'MPG'], 'safe', 'on' => 'add_bus'], [['ORG_ID'], 'checkOrgID','skipOnEmpty' => false, 'skipOnError' => false,'on'=>'add_bus'], ]; } /** * @Author wanglg * @Desc车牌号验证,相同公司相同车队同一辆车只能出现一次 * @param $attribute * @return bool */ public function ValidateBusNo($attribute){ $res = self::findOne(['BUS_NO' => $this->$attribute, 'CANCEL_FLAG' => 0, 'MAIN_CORP_ID' => Yii::$app->user->identity->MAIN_CORP_ID2, 'ORG_ID' => Yii::$app->user->identity->ORG_ID]); if($res){ $this->addError($attribute, '车牌号重复。'); } return true; } //检测多条件下org_id 是否为空 public function checkOrgID($attribute, $params) { if ($this->BUS_BELONG == 525 && $this->ORG_ID == '') { $this->addError($attribute, '请选择所属车队'); } else { return true; } } public function attributeLabels() { return [ 'is_my' => '自有或外部', 'BUS_NO' => '车牌号', 'BRAND_ID' => '品牌', 'FUEL_FORM' => '燃料形式', 'BUS_TYPE_RES_ID' => '座位数', 'SEAT_TYPE' => '座位类型', 'MAX_COUNT' => '核载数', 'BUY_DATE' => '购车日期', 'REGISTER_TIME' => '注册日期', 'BUS_BELONG' => '车辆所属', 'BUS_LICENSE' => '型号', 'ORG_ID' =>'所属车队', ]; } /** * @inheritdoc */ public function scenarios() { // bypass scenarios() implementation in the parent class return [ 'add_bus' => ['BUS_LICENSE', 'BUS_BELONG', 'MAIN_CORP_ID', 'SEAT_DESC', 'SEAT_COUNT', 'BUY_DATE', 'REGISTER_TIME', 'BUS_ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'BUS_TYPE_RES_ID', 'BRAND_ID', 'MAIN_CORP_ID', 'ORG_ID', 'BUS_STATE', 'SEAT_TYPE', 'BUS_COLOR', 'FUEL_FORM', 'MAX_COUNT', 'BUS_NO', 'BRAND_ID', 'FUEL_FORM', 'BUS_TYPE_RES_ID', 'SEAT_TYPE', 'MAX_COUNT', 'MPG'], 'search' => ['is_my', 'is_new', 'BUS_NO', 'BRAND_ID', 'ORG_ID', 'BUS_BELONG'], ]; } /** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $table = BaseBus::tableName(); $query = BaseBus::find()->joinWith('brand')->joinWith('org'); // add conditions that should always apply here $dataProvider = new ActiveDataProvider([ 'query' => $query, ]); $this->load($params); // if (!$this->validate()) { // uncomment the following line if you do not want to return any records when validation fails // $query->where('0=1'); // return $dataProvider; // } // grid filtering conditions $query->andFilterWhere([ 'BUS_ID' => $this->BUS_ID, 'CREATE_USER_ID' => $this->CREATE_USER_ID, 'UPDATE_USER_ID' => $this->UPDATE_USER_ID, 'UPDATE_TIME' => $this->UPDATE_TIME, $table . '.CANCEL_FLAG' => 0, 'BUS_TYPE_RES_ID' => $this->BUS_TYPE_RES_ID, 'BRAND_ID' => $this->BRAND_ID, $table . '.MAIN_CORP_ID' => $this->login_user->MAIN_CORP_ID2, 'ORG_ID' => $this->ORG_ID, 'SEAT_COUNT' => $this->SEAT_COUNT, 'BUS_STATE' => $this->BUS_STATE, 'SEAT_TYPE' => $this->SEAT_TYPE, 'BUS_COLOR' => $this->BUS_COLOR, 'FUEL_FORM' => $this->FUEL_FORM, ]); $query->andFilterWhere(['like', 'CREATE_TIME', $this->CREATE_TIME]) ->andFilterWhere(['like', 'BUS_NO', $this->BUS_NO]) ->andFilterWhere(['like', 'SEAT_DESC', $this->SEAT_DESC]) ->andFilterWhere(['like', 'BUY_DATE', $this->BUY_DATE]) ->andFilterWhere(['like', 'BUS_LICENSE', $this->BUS_LICENSE]) ->andFilterWhere(['like', 'DRIVER_COUNT', $this->DRIVER_COUNT]) ->andFilterWhere(['like', 'TOUR_COUNT', $this->TOUR_COUNT]) ->andFilterWhere(['like', 'EXTRA_COUNT', $this->EXTRA_COUNT]) ->andFilterWhere(['like', 'MPG', $this->MPG]) ->andFilterWhere(['like', 'COST', $this->COST]) ->andFilterWhere(['like', 'BUS_IMG_PATH', $this->BUS_IMG_PATH]) ->andFilterWhere(['like', 'BUS_IMG_TYPE', $this->BUS_IMG_TYPE]) ->andFilterWhere(['like', 'REGISTER_TIME', $this->REGISTER_TIME]) ->andFilterWhere(['like', 'BUS_IMG_PATH_ORI', $this->BUS_IMG_PATH_ORI]); return $dataProvider; } public static function getBusCompany() { $data = (new Query()) ->select(['s.id', 'supplier_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]) ->all(); return $data; } public static function getSeatType() { $data = (new Query()) ->select(['id', 'type_name']) ->from('dict_type') ->where(['parent_id' => '71']) ->all(); return $data; } public static function getModifySeatType($tmp_seat_type) { $data = (new Query()) ->select(['type_name']) ->from('dict_type') ->where(['id' => $tmp_seat_type]) ->one(); return $data; } public static function getModifySeatCount($tmp_seat_count) { $data = (new Query()) ->select(['res_name']) ->from('base_resource') ->where(['res_id' => $tmp_seat_count, 'cancel_flag' => '0']) ->one(); return $data; } // 获取保险类型 public static function getBaoxianType() { $data = (new Query()) ->select(['id', 'type_name']) ->from('dict_type') ->where(['parent_id' => '511']) ->all(); return $data; } // 获取保养公司 public static function getBaoyangCompany() { $data = BaseResource::findAll(['RES_TYPE_ID' => 520, 'CANCEL_FLAG' => 0]); return $data; } // 获取保险公司 public static function getBaoxianCompany() { $data = BaseResource::findAll(['RES_TYPE_ID' => 516, 'CANCEL_FLAG' => 0]); return $data; } public function getBusInfo() { $documents = BaseBus::findOne(['CANCEL_FLAG' => 0, 'BUS_ID' => $this->BUS_ID = $_REQUEST['bus_id']]); return $documents; } public function getMaintain($id) { $document = BaseDocument::findAll(['CANCEL_FLAG' => 0, 'DOC_ID' => $id]); return $document; } // public function getPicture() // { // // $result = [ // 506 => [new BaseDocument(), new BaseDocument()], // 507 => [new BaseDocument(), new BaseDocument()], // 509 => [new BaseDocument(), new BaseDocument()], // 510 => [new BaseDocument(), new BaseDocument()], // ]; // //以506 507 509 510为数组元素返回 506 507为车辆行驶证 509 510为道路运输证 511为保单 // $documents = BaseDocument::findAll(['CANCEL_FLAG' => 0, 'DOC_TYPE' => BaseDocument::BUS, 'DOC_ID' => $this->BUS_ID = $_REQUEST['bus_id'], 'DOC_STATUS' => 0, 'DOC_OPTION' => [506, 507]]); // if (count($documents) > 0) { // foreach ($documents as $document) { // if ($document->DOC_OPTION == '506') { // if ($document->IMG_OPTION == BaseDocument::IMG_FRONT) { // $result[506][0] = $document; // $result[506][0]['is_new'] = 1; // } else { // $result[506][1] = $document; // $result[506][1]['is_new'] = 1; // } // if ($document->DOC_OPTION == '507') { // if ($document->IMG_OPTION == BaseDocument::IMG_FRONT) { // $result[507][0] = $document; // $result[507][0]['is_new'] = 1; // } else { // $result[507][1] = $document; // $result[507][1]['is_new'] = 1; // } // } // } // $documents1 = BaseDocument::findAll(['CANCEL_FLAG' => 0, 'DOC_TYPE' => BaseDocument::BUS, 'DOC_ID' => $this->BUS_ID = $_REQUEST['bus_id'], 'DOC_STATUS' => 0, 'DOC_OPTION' => [509, 510]]); // if (count($documents1) > 0) { // foreach ($documents1 as $document1) { // if ($document1->DOC_OPTION == '509') { // if ($document1->IMG_OPTION == BaseDocument::IMG_FRONT) { // $result[509][0] = $document1; // $result[509][0]['is_new'] = 1; // } else { // $result[509][1] = $document1; // $result[509][1]['is_new'] = 1; // } // if ($document1->DOC_OPTION == '510') { // if ($document1->IMG_OPTION == BaseDocument::IMG_FRONT) { // $result[510][0] = $document1; // $result[510][0]['is_new'] = 1; // } else { // $result[510][1] = $document1; // $result[510][1]['is_new'] = 1; // } // } // } // return $result; // } // } // } // } // } // // 获取订单所属用户 // public function getDoc() // { // //同样第一个参数指定关联的子表模型类名 // // // return $this->hasMany(BaseDocument::className(), ['bus_id' => 'doc_id']); // } }