|
- <?php
-
- namespace backend\modules\motorcade\models;
-
- use yii\base\Model;
- use yii\data\ActiveDataProvider;
-
- /**
- * searchOrderFinance represents the model behind the search form about `backend\modules\motorcade\models\BusOrderFinance`.
- */
- class searchOrderFinance extends BusOrderFinance
- {
- public $client_type; //客户类型
- public $depart_name; //客户名称
- public $end_status_name;//结算状态
- public $bus_supplier_id; //车辆车队
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'USE_BUS_ORG_ID', 'END_STATUS'], 'integer'],
- [['CREATE_TIME', 'UPDATE_TIME', 'DATE_FROM', 'DATE_TO', 'client_type', 'bus_supplier_id'], 'safe'],
- [['BUS_COST', 'LOSE_COST'], 'number'],
- ];
- }
-
- /**
- * @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)
- {
- $query = searchOrderFinance::find();
-
- // add conditions that should always apply here
-
- $dataProvider = new ActiveDataProvider([
- 'query' => $query,
- 'pagination' => [
- 'pagesize' => 15
- ],
- 'sort' => false,
- ]);
-
- $this->load($params);
-
- $query->joinWith('user')->joinWith('endType as endType');
- if ($this->FINANCE_TYPE) {
- $query->joinWith('supplier');
- } else {
- $query->joinWith('department');
- }
-
- $query->addSelect([
- "bus_order_finance.ID", "DATE_FROM", "DATE_TO", "BUS_COST",
- $this->FINANCE_TYPE ? "SUPPLIER_NAME as depart_name" : "depart_name",
- "USE_BUS_ORG_ID", "bus_order_finance.CREATE_TIME", "END_STATUS", "endType.TYPE_NAME as end_status_name"]);
-
- if (is_array($this->USE_BUS_ORG_ID)) {
- if ($this->client_type === '') {
- $this->USE_BUS_ORG_ID = $this->USE_BUS_ORG_ID[0];
- } elseif ($this->client_type == BusOrder::CLIENT_TYPE_COMPANY) {
- //如果没有值,只查询出所有的 企业
- if ($this->USE_BUS_ORG_ID[1] == '') {
- $query->andFilterWhere(['depart_type' => BusOrder::CLIENT_TYPE_COMPANY]);
- }
- $this->USE_BUS_ORG_ID = $this->USE_BUS_ORG_ID[1];
- } elseif ($this->client_type == BusOrder::CLIENT_TYPE_PERSONAL) {
- //如果没有值,只查询出所有的 个人
- if ($this->USE_BUS_ORG_ID[2] == '') {
- $query->andFilterWhere(['depart_type' => BusOrder::CLIENT_TYPE_PERSONAL]);
- }
- $this->USE_BUS_ORG_ID = $this->USE_BUS_ORG_ID[2];
- }
- }elseif($this->USE_BUS_ORG_ID != ''){
- $query->andFilterWhere(['USE_BUS_ORG_ID' => $this->USE_BUS_ORG_ID]);
- }
- // grid filtering conditions
- $query->andFilterWhere([
- 'bus_order_finance.CANCEL_FLAG' => 0,
- 'bus_order_finance.USE_BUS_ORG_ID' => $this->USE_BUS_ORG_ID,
- 'END_STATUS' => $this->END_STATUS,
- 'FINANCE_TYPE' => $this->FINANCE_TYPE,
- 'base_user.MAIN_CORP_ID2' => $this->login_user->MAIN_CORP_ID2
- ]);
-
- $query->andFilterWhere(['like', 'bus_order_finance.ID', $this->ID]);
- $query->orderBy('CREATE_TIME DESC');
- return $dataProvider;
- }
-
- public function attributeLabels()
- {
- return array_merge(
- parent::attributeLabels(),
- [
- 'client_type' => '客 户',
- 'depart_name' => '客户',
- 'end_status_name' => '结算状态',
- ]);
- }
- }
|