Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

303 wiersze
11 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\BaseBus;
  8. use yii\db\Query;
  9. /**
  10. * BusSearch represents the model behind the search form about `backend\modules\motorcade\models\BaseBus`.
  11. * @property string $BUS_BELONG
  12. */
  13. class BusSearch extends BaseBus
  14. {
  15. public $is_my = 1;
  16. // 判断是否新车,图片显示判断用
  17. public $is_new = 0;
  18. /**
  19. * @inheritdoc
  20. */
  21. public function rules()
  22. {
  23. return [
  24. [['is_my', 'is_new', 'BUS_NO', 'BRAND_ID', 'ORG_ID', 'BUS_BELONG'], 'safe', 'on' => 'search'],
  25. [['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'],
  26. [['BUS_NO', 'BRAND_ID', 'FUEL_FORM', 'BUS_TYPE_RES_ID', 'SEAT_TYPE', 'MAX_COUNT', 'BUS_BELONG'], 'required', 'on' => 'add_bus'],
  27. [['BUS_NO'], 'ValidateBusNo', 'on' => 'add_bus'],
  28. [['BUY_DATE', 'REGISTER_TIME'], 'required', 'on' => 'add_bus'],
  29. [['BUS_LICENSE', 'MPG'], 'safe', 'on' => 'add_bus'],
  30. [['ORG_ID'], 'checkOrgID','skipOnEmpty' => false, 'skipOnError' => false,'on'=>'add_bus'],
  31. ];
  32. }
  33. /**
  34. * @Author wanglg
  35. * @Desc车牌号验证,相同公司相同车队同一辆车只能出现一次
  36. * @param $attribute
  37. * @return bool
  38. */
  39. public function ValidateBusNo($attribute){
  40. $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]);
  41. if($res){
  42. $this->addError($attribute, '车牌号重复。');
  43. }
  44. return true;
  45. }
  46. //检测多条件下org_id 是否为空
  47. public function checkOrgID($attribute, $params)
  48. {
  49. if ($this->BUS_BELONG == 525 && $this->ORG_ID == '') {
  50. $this->addError($attribute, '请选择所属车队');
  51. } else {
  52. return true;
  53. }
  54. }
  55. public function attributeLabels()
  56. {
  57. return [
  58. 'is_my' => '自有或外部',
  59. 'BUS_NO' => '车牌号',
  60. 'BRAND_ID' => '品牌',
  61. 'FUEL_FORM' => '燃料形式',
  62. 'BUS_TYPE_RES_ID' => '座位数',
  63. 'SEAT_TYPE' => '座位类型',
  64. 'MAX_COUNT' => '核载数',
  65. 'BUY_DATE' => '购车日期',
  66. 'REGISTER_TIME' => '注册日期',
  67. 'BUS_BELONG' => '车辆所属',
  68. 'BUS_LICENSE' => '型号',
  69. 'ORG_ID' =>'所属车队',
  70. ];
  71. }
  72. /**
  73. * @inheritdoc
  74. */
  75. public function scenarios()
  76. {
  77. // bypass scenarios() implementation in the parent class
  78. return [
  79. 'add_bus' => ['BUS_LICENSE', 'BUS_BELONG', 'MAIN_CORP_ID', 'SEAT_DESC', 'SEAT_COUNT', 'BUY_DATE',
  80. 'REGISTER_TIME', 'BUS_ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'BUS_TYPE_RES_ID',
  81. 'BRAND_ID', 'MAIN_CORP_ID', 'ORG_ID', 'BUS_STATE', 'SEAT_TYPE', 'BUS_COLOR', 'FUEL_FORM', 'MAX_COUNT',
  82. 'BUS_NO', 'BRAND_ID', 'FUEL_FORM', 'BUS_TYPE_RES_ID', 'SEAT_TYPE', 'MAX_COUNT', 'MPG'],
  83. 'search' => ['is_my', 'is_new', 'BUS_NO', 'BRAND_ID', 'ORG_ID', 'BUS_BELONG'],
  84. ];
  85. }
  86. /**
  87. * Creates data provider instance with search query applied
  88. *
  89. * @param array $params
  90. *
  91. * @return ActiveDataProvider
  92. */
  93. public function search($params)
  94. {
  95. $table = BaseBus::tableName();
  96. $query = BaseBus::find()->joinWith('brand')->joinWith('org');
  97. // add conditions that should always apply here
  98. $dataProvider = new ActiveDataProvider([
  99. 'query' => $query,
  100. ]);
  101. $this->load($params);
  102. // if (!$this->validate()) {
  103. // uncomment the following line if you do not want to return any records when validation fails
  104. // $query->where('0=1');
  105. // return $dataProvider;
  106. // }
  107. // grid filtering conditions
  108. $query->andFilterWhere([
  109. 'BUS_ID' => $this->BUS_ID,
  110. 'CREATE_USER_ID' => $this->CREATE_USER_ID,
  111. 'UPDATE_USER_ID' => $this->UPDATE_USER_ID,
  112. 'UPDATE_TIME' => $this->UPDATE_TIME,
  113. $table . '.CANCEL_FLAG' => 0,
  114. 'BUS_TYPE_RES_ID' => $this->BUS_TYPE_RES_ID,
  115. 'BRAND_ID' => $this->BRAND_ID,
  116. $table . '.MAIN_CORP_ID' => $this->login_user->MAIN_CORP_ID2,
  117. 'ORG_ID' => $this->ORG_ID,
  118. 'SEAT_COUNT' => $this->SEAT_COUNT,
  119. 'BUS_STATE' => $this->BUS_STATE,
  120. 'SEAT_TYPE' => $this->SEAT_TYPE,
  121. 'BUS_COLOR' => $this->BUS_COLOR,
  122. 'FUEL_FORM' => $this->FUEL_FORM,
  123. ]);
  124. $query->andFilterWhere(['like', 'CREATE_TIME', $this->CREATE_TIME])
  125. ->andFilterWhere(['like', 'BUS_NO', $this->BUS_NO])
  126. ->andFilterWhere(['like', 'SEAT_DESC', $this->SEAT_DESC])
  127. ->andFilterWhere(['like', 'BUY_DATE', $this->BUY_DATE])
  128. ->andFilterWhere(['like', 'BUS_LICENSE', $this->BUS_LICENSE])
  129. ->andFilterWhere(['like', 'DRIVER_COUNT', $this->DRIVER_COUNT])
  130. ->andFilterWhere(['like', 'TOUR_COUNT', $this->TOUR_COUNT])
  131. ->andFilterWhere(['like', 'EXTRA_COUNT', $this->EXTRA_COUNT])
  132. ->andFilterWhere(['like', 'MPG', $this->MPG])
  133. ->andFilterWhere(['like', 'COST', $this->COST])
  134. ->andFilterWhere(['like', 'BUS_IMG_PATH', $this->BUS_IMG_PATH])
  135. ->andFilterWhere(['like', 'BUS_IMG_TYPE', $this->BUS_IMG_TYPE])
  136. ->andFilterWhere(['like', 'REGISTER_TIME', $this->REGISTER_TIME])
  137. ->andFilterWhere(['like', 'BUS_IMG_PATH_ORI', $this->BUS_IMG_PATH_ORI]);
  138. return $dataProvider;
  139. }
  140. public static function getBusCompany()
  141. {
  142. $data = (new Query())
  143. ->select(['s.id', 'supplier_name'])
  144. ->from('base_supplier s')
  145. ->leftJoin('base_supplier_purchase p', 's.id = p.supplier_id and p.cancel_flag = 0 and product_type = 259')
  146. ->where(['s.cancel_flag' => '0', 's.main_corp_id' => Yii::$app->user->identity->MAIN_CORP_ID2])
  147. ->all();
  148. return $data;
  149. }
  150. public static function getSeatType()
  151. {
  152. $data = (new Query())
  153. ->select(['id', 'type_name'])
  154. ->from('dict_type')
  155. ->where(['parent_id' => '71'])
  156. ->all();
  157. return $data;
  158. }
  159. public static function getModifySeatType($tmp_seat_type)
  160. {
  161. $data = (new Query())
  162. ->select(['type_name'])
  163. ->from('dict_type')
  164. ->where(['id' => $tmp_seat_type])
  165. ->one();
  166. return $data;
  167. }
  168. public static function getModifySeatCount($tmp_seat_count)
  169. {
  170. $data = (new Query())
  171. ->select(['res_name'])
  172. ->from('base_resource')
  173. ->where(['res_id' => $tmp_seat_count, 'cancel_flag' => '0'])
  174. ->one();
  175. return $data;
  176. }
  177. // 获取保险类型
  178. public static function getBaoxianType()
  179. {
  180. $data = (new Query())
  181. ->select(['id', 'type_name'])
  182. ->from('dict_type')
  183. ->where(['parent_id' => '511'])
  184. ->all();
  185. return $data;
  186. }
  187. // 获取保养公司
  188. public static function getBaoyangCompany()
  189. {
  190. $data = BaseResource::findAll(['RES_TYPE_ID' => 520, 'CANCEL_FLAG' => 0]);
  191. return $data;
  192. }
  193. // 获取保险公司
  194. public static function getBaoxianCompany()
  195. {
  196. $data = BaseResource::findAll(['RES_TYPE_ID' => 516, 'CANCEL_FLAG' => 0]);
  197. return $data;
  198. }
  199. public function getBusInfo()
  200. {
  201. $documents = BaseBus::findOne(['CANCEL_FLAG' => 0, 'BUS_ID' => $this->BUS_ID = $_REQUEST['bus_id']]);
  202. return $documents;
  203. }
  204. public function getMaintain($id)
  205. {
  206. $document = BaseDocument::findAll(['CANCEL_FLAG' => 0, 'DOC_ID' => $id]);
  207. return $document;
  208. }
  209. // public function getPicture()
  210. // {
  211. //
  212. // $result = [
  213. // 506 => [new BaseDocument(), new BaseDocument()],
  214. // 507 => [new BaseDocument(), new BaseDocument()],
  215. // 509 => [new BaseDocument(), new BaseDocument()],
  216. // 510 => [new BaseDocument(), new BaseDocument()],
  217. // ];
  218. // //以506 507 509 510为数组元素返回 506 507为车辆行驶证 509 510为道路运输证 511为保单
  219. // $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]]);
  220. // if (count($documents) > 0) {
  221. // foreach ($documents as $document) {
  222. // if ($document->DOC_OPTION == '506') {
  223. // if ($document->IMG_OPTION == BaseDocument::IMG_FRONT) {
  224. // $result[506][0] = $document;
  225. // $result[506][0]['is_new'] = 1;
  226. // } else {
  227. // $result[506][1] = $document;
  228. // $result[506][1]['is_new'] = 1;
  229. // }
  230. // if ($document->DOC_OPTION == '507') {
  231. // if ($document->IMG_OPTION == BaseDocument::IMG_FRONT) {
  232. // $result[507][0] = $document;
  233. // $result[507][0]['is_new'] = 1;
  234. // } else {
  235. // $result[507][1] = $document;
  236. // $result[507][1]['is_new'] = 1;
  237. // }
  238. // }
  239. // }
  240. // $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]]);
  241. // if (count($documents1) > 0) {
  242. // foreach ($documents1 as $document1) {
  243. // if ($document1->DOC_OPTION == '509') {
  244. // if ($document1->IMG_OPTION == BaseDocument::IMG_FRONT) {
  245. // $result[509][0] = $document1;
  246. // $result[509][0]['is_new'] = 1;
  247. // } else {
  248. // $result[509][1] = $document1;
  249. // $result[509][1]['is_new'] = 1;
  250. // }
  251. // if ($document1->DOC_OPTION == '510') {
  252. // if ($document1->IMG_OPTION == BaseDocument::IMG_FRONT) {
  253. // $result[510][0] = $document1;
  254. // $result[510][0]['is_new'] = 1;
  255. // } else {
  256. // $result[510][1] = $document1;
  257. // $result[510][1]['is_new'] = 1;
  258. // }
  259. // }
  260. // }
  261. // return $result;
  262. // }
  263. // }
  264. // }
  265. // }
  266. // }
  267. // // 获取订单所属用户
  268. // public function getDoc()
  269. // {
  270. // //同样第一个参数指定关联的子表模型类名
  271. // //
  272. // return $this->hasMany(BaseDocument::className(), ['bus_id' => 'doc_id']);
  273. // }
  274. }