Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

180 строки
5.6 KiB

  1. <?php
  2. namespace backend\modules\motorcade\models;
  3. use backend\modules\zzcs\models\BaseResource;
  4. use Yii;
  5. use yii\base\Model;
  6. use yii\data\ActiveDataProvider;
  7. use backend\modules\motorcade\models\BaseDocument;
  8. /**
  9. * searchDocument represents the model behind the search form about `backend\modules\motorcade\models\BaseDocument`.
  10. */
  11. class searchDocument extends BaseDocument
  12. {
  13. public $searchDriver = null;
  14. public $searchBus = null;
  15. public $searchTab = 1;
  16. public $searchCheckbox = 0;
  17. public $searchDocOption = null; //
  18. public function init()
  19. {
  20. }
  21. /**
  22. * @inheritdoc
  23. */
  24. public function rules()
  25. {
  26. return [
  27. [['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'],
  28. [['CREATE_TIME', 'UPDATE_TIME', 'IMG_URL', 'START_DATE', 'EXPIRE_DATE', 'NAME', 'VALUE', 'NOTE'], 'safe'],
  29. [['searchBus', 'searchDriver', 'searchTab', 'searchCheckbox', 'searchDocOption'], 'safe']
  30. ];
  31. }
  32. /**
  33. * @inheritdoc
  34. */
  35. public function scenarios()
  36. {
  37. // bypass scenarios() implementation in the parent class
  38. return Model::scenarios();
  39. }
  40. /**
  41. * Creates data provider instance with search query applied
  42. *
  43. * @param array $params
  44. *
  45. * @return ActiveDataProvider
  46. */
  47. public function search($params, $type)
  48. {
  49. if ($type == 'driver')
  50. $query = BaseDocument::find()->joinWith('driver');
  51. else
  52. $query = BaseDocument::find()->joinWith('bus')->joinWith(['bus', 'bus.brand']);
  53. // add conditions that should always apply here
  54. $dataProvider = new ActiveDataProvider([
  55. 'query' => $query,
  56. 'pagination' => [
  57. 'pageSize' => 10,
  58. ],
  59. 'sort' => [
  60. 'attributes' => [
  61. 'EXPIRE_DATE',
  62. ],
  63. 'defaultOrder' =>
  64. [
  65. 'EXPIRE_DATE' => SORT_DESC,
  66. ],
  67. ],
  68. ]);
  69. $this->load($params);
  70. // grid filtering conditions
  71. $query->andFilterWhere([
  72. // 'ID' => $this->ID,
  73. // 'CREATE_USER_ID' => $this->CREATE_USER_ID,
  74. // 'UPDATE_USER_ID' => $this->UPDATE_USER_ID,
  75. // 'UPDATE_TIME' => $this->UPDATE_TIME,
  76. // 'PID' => $this->PID,
  77. // 'DOC_TYPE' => $this->DOC_TYPE,
  78. // 'DOC_ID' => $this->DOC_ID,
  79. // 'RES_ID' => $this->RES_ID,
  80. // 'IMG_OPTION' => $this->IMG_OPTION,
  81. // 'SEQ_ID' => $this->SEQ_ID,
  82. 'DOC_STATUS' => $this::STATUS_ID_ACTIVE,
  83. ]);
  84. // $query->andFilterWhere(['like', 'CREATE_TIME', $this->CREATE_TIME])
  85. // ->andFilterWhere(['like', 'IMG_URL', $this->IMG_URL])
  86. // ->andFilterWhere(['like', 'START_DATE', $this->START_DATE])
  87. // ->andFilterWhere(['like', 'EXPIRE_DATE', $this->EXPIRE_DATE])
  88. // ->andFilterWhere(['like', 'NAME', $this->NAME])
  89. // ->andFilterWhere(['like', 'VALUE', $this->VALUE])
  90. // ->andFilterWhere(['like', 'NOTE', $this->NOTE]);
  91. //30天预警
  92. if ($this->searchCheckbox) {
  93. $query->having("max(EXPIRE_DATE)<'" . date('Y-m-d', strtotime('+' . $this::WARNING_DATE . ' days')) . "'")
  94. ->andHaving("max(EXPIRE_DATE) >= '". date('Y-m-d'). "'");
  95. }else{
  96. $query->having("max(EXPIRE_DATE)<'" . date('Y-m-d', strtotime('+' . $this::WARNING_DATE . ' days')) . "'");
  97. }
  98. //自定义查询条件
  99. if ($type == 'driver'):
  100. $query->andFilterWhere(['or', ['like', 'DRIVER_NAME', $this->searchDriver], ['like', 'PHONE_NO', $this->searchDriver]]);
  101. elseif ($type == 'bus') :
  102. $query->andFilterWhere(['like', 'BUS_NO', $this->searchBus]);
  103. endif;
  104. //运营主体
  105. //自有司机或车辆
  106. if (Yii::$app->user->identity->MAIN_CORP_ID2 !== 0)
  107. $query->andFilterWhere(['and', ['in', 'MAIN_CORP_ID', [Yii::$app->user->identity->MAIN_CORP_ID2]],['in', 'ORG_ID', [Yii::$app->user->identity->ORG_ID]]]);
  108. $query->groupBy(['DOC_ID', 'DOC_TYPE']);
  109. return $dataProvider;
  110. }
  111. /**
  112. * User: wangxj
  113. *
  114. * 不同tab,所查询的类型不同
  115. *
  116. * @params $tab integer
  117. *
  118. * @return string
  119. */
  120. public static function getDocOption($tab, $type)
  121. {
  122. if ($type == 'bus') {
  123. switch ($tab):
  124. case 1:
  125. $result = self::LICENCE_XSZZB;
  126. break;
  127. case 2:
  128. $result = self::LICENCE_DLZB;
  129. break;
  130. case 3:
  131. $result = self::LICENCE_JQ;
  132. break;
  133. case 4:
  134. $result = self::LICENCE_SY;
  135. break;
  136. case 5:
  137. $result = self::LICENCE_ZW;
  138. break;
  139. case 6:
  140. $result = self::MAINTAIN;
  141. break;
  142. default:
  143. $result = self::LICENCE_XSZZB;
  144. endswitch;
  145. } else {
  146. switch ($tab):
  147. case 1:
  148. $result = self::LICENCE_DRIVER;
  149. break;
  150. case 2:
  151. $result = self::LICENCE_JOB;
  152. break;
  153. default:
  154. $result = self::LICENCE_DRIVER;
  155. endswitch;
  156. }
  157. return $result;
  158. }
  159. }