|
- <?php
-
- namespace backend\modules\motorcade\models;
-
- use backend\modules\zzcs\models\BaseResource;
- use Yii;
- use yii\base\Model;
- use yii\data\ActiveDataProvider;
- use backend\modules\motorcade\models\BaseDocument;
-
- /**
- * searchDocument represents the model behind the search form about `backend\modules\motorcade\models\BaseDocument`.
- */
- class searchDocument extends BaseDocument
- {
- public $searchDriver = null;
- public $searchBus = null;
- public $searchTab = 1;
- public $searchCheckbox = 0;
- public $searchDocOption = null; //
-
- public function init()
- {
-
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'PID', 'DOC_TYPE', 'DOC_ID', 'DOC_OPTION', 'RES_ID', 'IMG_OPTION', 'SEQ_ID', 'DOC_STATUS'], 'integer'],
- [['CREATE_TIME', 'UPDATE_TIME', 'IMG_URL', 'START_DATE', 'EXPIRE_DATE', 'NAME', 'VALUE', 'NOTE'], 'safe'],
- [['searchBus', 'searchDriver', 'searchTab', 'searchCheckbox', 'searchDocOption'], 'safe']
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function scenarios()
- {
- // bypass scenarios() implementation in the parent class
- return Model::scenarios();
- }
-
- /**
- * Creates data provider instance with search query applied
- *
- * @param array $params
- *
- * @return ActiveDataProvider
- */
- public function search($params, $type)
- {
- if ($type == 'driver')
- $query = BaseDocument::find()->joinWith('driver');
- else
- $query = BaseDocument::find()->joinWith('bus')->joinWith(['bus', 'bus.brand']);
-
- // add conditions that should always apply here
-
- $dataProvider = new ActiveDataProvider([
- 'query' => $query,
- 'pagination' => [
- 'pageSize' => 10,
- ],
- 'sort' => [
- 'attributes' => [
- 'EXPIRE_DATE',
- ],
- 'defaultOrder' =>
- [
- 'EXPIRE_DATE' => SORT_DESC,
- ],
- ],
- ]);
-
- $this->load($params);
-
- // grid filtering conditions
- $query->andFilterWhere([
- // 'ID' => $this->ID,
- // 'CREATE_USER_ID' => $this->CREATE_USER_ID,
- // 'UPDATE_USER_ID' => $this->UPDATE_USER_ID,
- // 'UPDATE_TIME' => $this->UPDATE_TIME,
- // 'PID' => $this->PID,
- // 'DOC_TYPE' => $this->DOC_TYPE,
- // 'DOC_ID' => $this->DOC_ID,
- // 'RES_ID' => $this->RES_ID,
- // 'IMG_OPTION' => $this->IMG_OPTION,
- // 'SEQ_ID' => $this->SEQ_ID,
- 'DOC_STATUS' => $this::STATUS_ID_ACTIVE,
- ]);
-
- // $query->andFilterWhere(['like', 'CREATE_TIME', $this->CREATE_TIME])
- // ->andFilterWhere(['like', 'IMG_URL', $this->IMG_URL])
- // ->andFilterWhere(['like', 'START_DATE', $this->START_DATE])
- // ->andFilterWhere(['like', 'EXPIRE_DATE', $this->EXPIRE_DATE])
- // ->andFilterWhere(['like', 'NAME', $this->NAME])
- // ->andFilterWhere(['like', 'VALUE', $this->VALUE])
- // ->andFilterWhere(['like', 'NOTE', $this->NOTE]);
-
- //30天预警
- if ($this->searchCheckbox) {
- $query->having("max(EXPIRE_DATE)<'" . date('Y-m-d', strtotime('+' . $this::WARNING_DATE . ' days')) . "'")
- ->andHaving("max(EXPIRE_DATE) >= '". date('Y-m-d'). "'");
- }else{
- $query->having("max(EXPIRE_DATE)<'" . date('Y-m-d', strtotime('+' . $this::WARNING_DATE . ' days')) . "'");
- }
-
- //自定义查询条件
- if ($type == 'driver'):
- $query->andFilterWhere(['or', ['like', 'DRIVER_NAME', $this->searchDriver], ['like', 'PHONE_NO', $this->searchDriver]]);
-
- elseif ($type == 'bus') :
- $query->andFilterWhere(['like', 'BUS_NO', $this->searchBus]);
- endif;
-
- //运营主体
- //自有司机或车辆
- if (Yii::$app->user->identity->MAIN_CORP_ID2 !== 0)
- $query->andFilterWhere(['and', ['in', 'MAIN_CORP_ID', [Yii::$app->user->identity->MAIN_CORP_ID2]],['in', 'ORG_ID', [Yii::$app->user->identity->ORG_ID]]]);
-
- $query->groupBy(['DOC_ID', 'DOC_TYPE']);
- return $dataProvider;
- }
-
- /**
- * User: wangxj
- *
- * 不同tab,所查询的类型不同
- *
- * @params $tab integer
- *
- * @return string
- */
- public static function getDocOption($tab, $type)
- {
- if ($type == 'bus') {
- switch ($tab):
- case 1:
- $result = self::LICENCE_XSZZB;
- break;
- case 2:
- $result = self::LICENCE_DLZB;
- break;
- case 3:
- $result = self::LICENCE_JQ;
- break;
- case 4:
- $result = self::LICENCE_SY;
- break;
- case 5:
- $result = self::LICENCE_ZW;
- break;
- case 6:
- $result = self::MAINTAIN;
- break;
- default:
- $result = self::LICENCE_XSZZB;
- endswitch;
- } else {
-
- switch ($tab):
- case 1:
- $result = self::LICENCE_DRIVER;
- break;
- case 2:
- $result = self::LICENCE_JOB;
- break;
- default:
- $result = self::LICENCE_DRIVER;
- endswitch;
- }
- return $result;
- }
- }
|