Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

174 rader
5.8 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\base\Model;
  5. use yii\data\ActiveDataProvider;
  6. use backend\modules\zzcs\models\OperaBalanceHis;
  7. use backend\modules\zzcs\logic\BaseSupplierBalance;
  8. use common\models\BaseUserAuth;
  9. use yii\helpers\ArrayHelper;
  10. /**
  11. * OperaBalanceHisSearch represents the model behind the search form about `backend\modules\zzcs\models\OperaBalanceHis`.
  12. */
  13. class OperaBalanceHisSearch extends OperaBalanceHis
  14. {
  15. public $supplier_name;
  16. const PAY_STATUS_NAME = [1 => '待变动', 2 => '已变动', 3 => '已取消'];
  17. const PAY_TYPE_NAME = [1 => '扣款', 2 => '充值'];
  18. const DEDUCT_TYPE_YD = 1;
  19. const DEDUCT_TYPE_RZ = 2;
  20. const DEDUCT_TYPE_LD = 3;
  21. /**
  22. * @inheritdoc
  23. */
  24. public function rules()
  25. {
  26. return [
  27. [['id', 'supplier_id', 'order_id', 'pay_type', 'pay_status'], 'integer'],
  28. [['create_time', 'update_time', 'expect_time', 'pay_time', 'pay_reason', 'supplier_name'], 'safe'],
  29. [['balance_before', 'balance_after'], 'number'],
  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)
  48. {
  49. $model = new BaseSupplierBalance();
  50. $query = OperaBalanceHis::find();
  51. $query->joinWith(['baseSupplier'])->andFilterWhere(['and',['=','pay_status',2]]);
  52. $query->joinWith('orderMain', false);
  53. $where = $model->userRoleWhere('order_main');
  54. $query->andFilterWhere($where);
  55. // 酒店管理员只能查看酒店, 巴士只能看巴士
  56. // $product_where = $model -> productTypeWhere('order_main');
  57. // $query -> andFilterWhere($product_where);
  58. $dataProvider = new ActiveDataProvider([
  59. 'query' => $query,
  60. 'sort' => [
  61. 'defaultOrder' => [
  62. 'update_time' => SORT_DESC,
  63. 'create_time' => SORT_DESC,
  64. ],
  65. ],
  66. ]);
  67. if (isset($params['pay_time']) && $params['pay_time'] != '') {
  68. $query->andFilterWhere(['>=', 'pay_time', $params['pay_time'] . ' 00:00:00']);
  69. }else
  70. {
  71. $query->andFilterWhere(['>=', 'pay_time', date('Y-m-01') . ' 00:00:00']);
  72. }
  73. if (isset($params['end_time']) && $params['end_time'] != '') {
  74. $query->andFilterWhere(['<=', 'pay_time', $params['end_time'] . ' 23:59:59']);
  75. }else
  76. {
  77. $query->andFilterWhere(['<=', 'pay_time', date('Y-m-d') . ' 23:59:59']);
  78. }
  79. if (isset($params['supplier_id']) && $params['supplier_id'] != '') {
  80. $query->andFilterWhere(['=', 'supplier_id', $params['supplier_id']]);
  81. } else {
  82. $id = Yii::$app->request->get('id');
  83. if ($id)
  84. $query->andFilterWhere(['supplier_id' => $id]);
  85. }
  86. if (isset($params['order_id']) && $params['order_id'] != '') {
  87. $query->andFilterWhere(['=', 'opera_balance_his.order_id', $params['order_id']]);
  88. }
  89. // 查询扣款类型
  90. if (isset($params['pay_type']) && $params['pay_type'] != '') {
  91. $query->andFilterWhere(['=', 'pay_type', $params['pay_type']]);
  92. }
  93. return $dataProvider;
  94. }
  95. public function searchChannel($params)
  96. {
  97. $model = new BaseSupplierBalance();
  98. $query = ChannelBalanceHis::find();
  99. $query->joinWith(['baseSupplier'])->andFilterWhere(['and',['=','pay_status',2]]);
  100. $query->joinWith('orderMain', false);
  101. $where = $model->userRoleWhere('order_main');
  102. $query->andFilterWhere($where);
  103. // 酒店管理员只能查看酒店, 巴士只能看巴士
  104. // $product_where = $model -> productTypeWhere('order_main');
  105. // $query -> andFilterWhere($product_where);
  106. $dataProvider = new ActiveDataProvider([
  107. 'query' => $query,
  108. 'sort' => [
  109. 'defaultOrder' => [
  110. 'update_time' => SORT_DESC,
  111. 'create_time' => SORT_DESC,
  112. 'id' => SORT_DESC,
  113. ],
  114. ],
  115. ]);
  116. if (isset($params['pay_time']) && $params['pay_time'] != '') {
  117. $query->andFilterWhere(['>=', 'pay_time', $params['pay_time'] . ' 00:00:00']);
  118. }else
  119. {
  120. $query->andFilterWhere(['>=', 'pay_time', date('Y-m-01') . ' 00:00:00']);
  121. }
  122. if (isset($params['end_time']) && $params['end_time'] != '') {
  123. $query->andFilterWhere(['<=', 'pay_time', $params['end_time'] . ' 23:59:59']);
  124. }else
  125. {
  126. $query->andFilterWhere(['<=', 'pay_time', date('Y-m-d') . ' 23:59:59']);
  127. }
  128. if (isset($params['supplier_id']) && $params['supplier_id'] != '') {
  129. $query->andFilterWhere(['=', 'supplier_id', $params['supplier_id']]);
  130. } else {
  131. $id = Yii::$app->request->get('id');
  132. if ($id)
  133. $query->andFilterWhere(['supplier_id' => $id]);
  134. }
  135. if (isset($params['order_id']) && $params['order_id'] != '') {
  136. $query->andFilterWhere(['=', 'channel_balance_his.order_id', $params['order_id']]);
  137. }
  138. // 查询扣款类型
  139. if (isset($params['pay_type']) && $params['pay_type'] != '') {
  140. $query->andFilterWhere(['=', 'pay_type', $params['pay_type']]);
  141. }
  142. return $dataProvider;
  143. }
  144. public static function getSupplierList()
  145. {
  146. $model = new BaseSupplier();
  147. $data = $model->getSupplierList();
  148. $result = ArrayHelper::map($data, 'org_id', 'org_name');
  149. return $result;
  150. }
  151. }