|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Yii;
- use yii\base\Model;
- use yii\data\ActiveDataProvider;
- use backend\modules\zzcs\models\OperaBalanceHis;
- use backend\modules\zzcs\logic\BaseSupplierBalance;
- use common\models\BaseUserAuth;
- use yii\helpers\ArrayHelper;
-
- /**
- * OperaBalanceHisSearch represents the model behind the search form about `backend\modules\zzcs\models\OperaBalanceHis`.
- */
- class OperaBalanceHisSearch extends OperaBalanceHis
- {
- public $supplier_name;
- const PAY_STATUS_NAME = [1 => '待变动', 2 => '已变动', 3 => '已取消'];
- const PAY_TYPE_NAME = [1 => '扣款', 2 => '充值'];
- const DEDUCT_TYPE_YD = 1;
- const DEDUCT_TYPE_RZ = 2;
- const DEDUCT_TYPE_LD = 3;
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'supplier_id', 'order_id', 'pay_type', 'pay_status'], 'integer'],
- [['create_time', 'update_time', 'expect_time', 'pay_time', 'pay_reason', 'supplier_name'], 'safe'],
- [['balance_before', 'balance_after'], '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)
- {
- $model = new BaseSupplierBalance();
- $query = OperaBalanceHis::find();
- $query->joinWith(['baseSupplier'])->andFilterWhere(['and',['=','pay_status',2]]);
- $query->joinWith('orderMain', false);
- $where = $model->userRoleWhere('order_main');
- $query->andFilterWhere($where);
- // 酒店管理员只能查看酒店, 巴士只能看巴士
- // $product_where = $model -> productTypeWhere('order_main');
- // $query -> andFilterWhere($product_where);
-
- $dataProvider = new ActiveDataProvider([
- 'query' => $query,
- 'sort' => [
- 'defaultOrder' => [
- 'update_time' => SORT_DESC,
- 'create_time' => SORT_DESC,
- ],
- ],
- ]);
-
- if (isset($params['pay_time']) && $params['pay_time'] != '') {
- $query->andFilterWhere(['>=', 'pay_time', $params['pay_time'] . ' 00:00:00']);
- }else
- {
- $query->andFilterWhere(['>=', 'pay_time', date('Y-m-01') . ' 00:00:00']);
- }
-
- if (isset($params['end_time']) && $params['end_time'] != '') {
- $query->andFilterWhere(['<=', 'pay_time', $params['end_time'] . ' 23:59:59']);
- }else
- {
- $query->andFilterWhere(['<=', 'pay_time', date('Y-m-d') . ' 23:59:59']);
- }
- if (isset($params['supplier_id']) && $params['supplier_id'] != '') {
- $query->andFilterWhere(['=', 'supplier_id', $params['supplier_id']]);
- } else {
- $id = Yii::$app->request->get('id');
- if ($id)
- $query->andFilterWhere(['supplier_id' => $id]);
- }
-
- if (isset($params['order_id']) && $params['order_id'] != '') {
- $query->andFilterWhere(['=', 'opera_balance_his.order_id', $params['order_id']]);
- }
-
- // 查询扣款类型
- if (isset($params['pay_type']) && $params['pay_type'] != '') {
- $query->andFilterWhere(['=', 'pay_type', $params['pay_type']]);
- }
- return $dataProvider;
- }
-
- public function searchChannel($params)
- {
- $model = new BaseSupplierBalance();
- $query = ChannelBalanceHis::find();
- $query->joinWith(['baseSupplier'])->andFilterWhere(['and',['=','pay_status',2]]);
- $query->joinWith('orderMain', false);
- $where = $model->userRoleWhere('order_main');
- $query->andFilterWhere($where);
-
- // 酒店管理员只能查看酒店, 巴士只能看巴士
- // $product_where = $model -> productTypeWhere('order_main');
- // $query -> andFilterWhere($product_where);
-
- $dataProvider = new ActiveDataProvider([
- 'query' => $query,
- 'sort' => [
- 'defaultOrder' => [
- 'update_time' => SORT_DESC,
- 'create_time' => SORT_DESC,
- 'id' => SORT_DESC,
- ],
- ],
- ]);
-
- if (isset($params['pay_time']) && $params['pay_time'] != '') {
- $query->andFilterWhere(['>=', 'pay_time', $params['pay_time'] . ' 00:00:00']);
- }else
- {
- $query->andFilterWhere(['>=', 'pay_time', date('Y-m-01') . ' 00:00:00']);
- }
-
- if (isset($params['end_time']) && $params['end_time'] != '') {
- $query->andFilterWhere(['<=', 'pay_time', $params['end_time'] . ' 23:59:59']);
- }else
- {
- $query->andFilterWhere(['<=', 'pay_time', date('Y-m-d') . ' 23:59:59']);
- }
-
- if (isset($params['supplier_id']) && $params['supplier_id'] != '') {
- $query->andFilterWhere(['=', 'supplier_id', $params['supplier_id']]);
- } else {
- $id = Yii::$app->request->get('id');
- if ($id)
- $query->andFilterWhere(['supplier_id' => $id]);
- }
- if (isset($params['order_id']) && $params['order_id'] != '') {
- $query->andFilterWhere(['=', 'channel_balance_his.order_id', $params['order_id']]);
- }
-
- // 查询扣款类型
- if (isset($params['pay_type']) && $params['pay_type'] != '') {
- $query->andFilterWhere(['=', 'pay_type', $params['pay_type']]);
- }
-
- return $dataProvider;
- }
-
- public static function getSupplierList()
- {
- $model = new BaseSupplier();
- $data = $model->getSupplierList();
- $result = ArrayHelper::map($data, 'org_id', 'org_name');
- return $result;
- }
-
-
- }
|