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

118 строки
3.9 KiB

  1. <?php
  2. namespace backend\modules\motorcade\models;
  3. use yii\base\Model;
  4. use yii\data\ActiveDataProvider;
  5. /**
  6. * searchOrderFinance represents the model behind the search form about `backend\modules\motorcade\models\BusOrderFinance`.
  7. */
  8. class searchOrderFinance extends BusOrderFinance
  9. {
  10. public $client_type; //客户类型
  11. public $depart_name; //客户名称
  12. public $end_status_name;//结算状态
  13. public $bus_supplier_id; //车辆车队
  14. /**
  15. * @inheritdoc
  16. */
  17. public function rules()
  18. {
  19. return [
  20. [['ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'USE_BUS_ORG_ID', 'END_STATUS'], 'integer'],
  21. [['CREATE_TIME', 'UPDATE_TIME', 'DATE_FROM', 'DATE_TO', 'client_type', 'bus_supplier_id'], 'safe'],
  22. [['BUS_COST', 'LOSE_COST'], 'number'],
  23. ];
  24. }
  25. /**
  26. * @inheritdoc
  27. */
  28. public function scenarios()
  29. {
  30. // bypass scenarios() implementation in the parent class
  31. return Model::scenarios();
  32. }
  33. /**
  34. * Creates data provider instance with search query applied
  35. *
  36. * @param array $params
  37. *
  38. * @return ActiveDataProvider
  39. */
  40. public function search($params)
  41. {
  42. $query = searchOrderFinance::find();
  43. // add conditions that should always apply here
  44. $dataProvider = new ActiveDataProvider([
  45. 'query' => $query,
  46. 'pagination' => [
  47. 'pagesize' => 15
  48. ],
  49. 'sort' => false,
  50. ]);
  51. $this->load($params);
  52. $query->joinWith('user')->joinWith('endType as endType');
  53. if ($this->FINANCE_TYPE) {
  54. $query->joinWith('supplier');
  55. } else {
  56. $query->joinWith('department');
  57. }
  58. $query->addSelect([
  59. "bus_order_finance.ID", "DATE_FROM", "DATE_TO", "BUS_COST",
  60. $this->FINANCE_TYPE ? "SUPPLIER_NAME as depart_name" : "depart_name",
  61. "USE_BUS_ORG_ID", "bus_order_finance.CREATE_TIME", "END_STATUS", "endType.TYPE_NAME as end_status_name"]);
  62. if (is_array($this->USE_BUS_ORG_ID)) {
  63. if ($this->client_type === '') {
  64. $this->USE_BUS_ORG_ID = $this->USE_BUS_ORG_ID[0];
  65. } elseif ($this->client_type == BusOrder::CLIENT_TYPE_COMPANY) {
  66. //如果没有值,只查询出所有的 企业
  67. if ($this->USE_BUS_ORG_ID[1] == '') {
  68. $query->andFilterWhere(['depart_type' => BusOrder::CLIENT_TYPE_COMPANY]);
  69. }
  70. $this->USE_BUS_ORG_ID = $this->USE_BUS_ORG_ID[1];
  71. } elseif ($this->client_type == BusOrder::CLIENT_TYPE_PERSONAL) {
  72. //如果没有值,只查询出所有的 个人
  73. if ($this->USE_BUS_ORG_ID[2] == '') {
  74. $query->andFilterWhere(['depart_type' => BusOrder::CLIENT_TYPE_PERSONAL]);
  75. }
  76. $this->USE_BUS_ORG_ID = $this->USE_BUS_ORG_ID[2];
  77. }
  78. }elseif($this->USE_BUS_ORG_ID != ''){
  79. $query->andFilterWhere(['USE_BUS_ORG_ID' => $this->USE_BUS_ORG_ID]);
  80. }
  81. // grid filtering conditions
  82. $query->andFilterWhere([
  83. 'bus_order_finance.CANCEL_FLAG' => 0,
  84. 'bus_order_finance.USE_BUS_ORG_ID' => $this->USE_BUS_ORG_ID,
  85. 'END_STATUS' => $this->END_STATUS,
  86. 'FINANCE_TYPE' => $this->FINANCE_TYPE,
  87. 'base_user.MAIN_CORP_ID2' => $this->login_user->MAIN_CORP_ID2
  88. ]);
  89. $query->andFilterWhere(['like', 'bus_order_finance.ID', $this->ID]);
  90. $query->orderBy('CREATE_TIME DESC');
  91. return $dataProvider;
  92. }
  93. public function attributeLabels()
  94. {
  95. return array_merge(
  96. parent::attributeLabels(),
  97. [
  98. 'client_type' => '客&nbsp;&nbsp;&nbsp;户',
  99. 'depart_name' => '客户',
  100. 'end_status_name' => '结算状态',
  101. ]);
  102. }
  103. }