|
- <?php
-
- namespace backend\modules\zzcs\controllers;
-
- use backend\modules\zzcs\models\BaseSupplier;
- use backend\modules\zzcs\models\ChannelBalanceHis;
- use Faker\Provider\Base;
- use Yii;
- use backend\modules\zzcs\models\OperaBalanceHis;
- use backend\modules\zzcs\models\OperaBalanceHisSearch;
- use yii\web\Controller;
- use yii\web\NotFoundHttpException;
- use yii\filters\VerbFilter;
- use backend\modules\zzcs\logic\BaseSupplierBalance;
-
- /**
- * DeductController implements the CRUD actions for OperaBalanceHis model.
- */
- class DeductController extends Controller
- {
- public $layout = '@backend/modules/zzcs/views/layouts/zzcs';
- public $enableCsrfValidation = false;
- public $url = '/resource/zzcs/upload/tourist/';
-
- /**
- * @inheritdoc
- */
- public function behaviors()
- {
- return [
- 'verbs' => [
- 'class' => VerbFilter::className(),
- 'actions' => [
- 'delete' => ['POST'],
- ],
- ],
- ];
- }
-
- /**
- * Lists all OperaBalanceHis models.
- * @return mixed
- */
- public function actionIndex()
- {
- $searchModel = new OperaBalanceHisSearch();
- $request = Yii::$app->request->get();
-
- if($request['type'] == 187) // 供应商
- {
- $list = BaseSupplierBalance::getSupplierListStatic();
- $dataProvider = $searchModel->search($request);
- }elseif ($request['type'] == 301) // 渠道商
- {
- $list = BaseSupplierBalance::getChannelListStatic();
- $dataProvider = $searchModel -> searchChannel($request);
- }
-
- return $this->render('index', [
- 'list' => $list,
- 'type' => $request['type'],
- 'searchModel' => $searchModel,
- 'dataProvider' => $dataProvider,
- ]);
- }
-
- /**
- * Displays a single OperaBalanceHis model.
- * @param integer $id
- * @return mixed
- */
- public function actionView($id)
- {
- return $this->render('view', [
- 'model' => $this->findModel($id),
- ]);
- }
-
- /**
- * Creates a new OperaBalanceHis model.
- * If creation is successful, the browser will be redirected to the 'view' page.
- * @return mixed
- */
- public function actionCreate()
- {
- $model = new OperaBalanceHis();
- if ($model->load(Yii::$app->request->post()) && Yii::$app->request->isPost) {
- $supplier_model = BaseSupplier::findOne(['ID' => $model->supplier_id, 'cancel_flag' => 0, 'DEDUCT_TYPE' => [1, 2, 3]]);
- $type = $supplier_model -> SUPPLIER_TYPE == 301 ? 2 : 1;
- if ($supplier_model) {
- $balance_before = $supplier_model->ACCOUNT_BALANCE;
- $balance_after = (float)$balance_before + (float)$model->change_value;
- $model->balance_before = $balance_before;
- $model->balance_after = $balance_after;
- $model->pay_status = 2; //已扣款
- $model->pay_type = 2; // 充值
- $model->create_time = $model->update_time = $supplier_model->UPDATE_TIME = $model->pay_time = $model->expect_time = date('Y-m-d H:i:s');
- $supplier_model->ACCOUNT_BALANCE = $balance_after;
- $beginTransaction = Yii::$app->db->beginTransaction();
- if ($model->save() && $supplier_model->save(false)) {
- $beginTransaction->commit();
- return $this->redirect(['index?id=' . $model->supplier_id.'&type='. $supplier_model -> SUPPLIER_TYPE]);
- } else {
- $beginTransaction->rollBack();
- }
- } else {
- return $this->redirect(['sum-index?type='.$type]);
- }
- } else {
- return $this->redirect(['sum-index?type=1']);
- }
- }
-
- public function actionCreateChannelRecord()
- {
- $model = new ChannelBalanceHis();
- if ($model->load(Yii::$app->request->post()) && Yii::$app->request->isPost) {
- $supplier_model = BaseSupplier::findOne(['ID' => $model->supplier_id, 'cancel_flag' => 0, 'DEDUCT_TYPE' => [1, 2, 3]]);
- $type = $supplier_model -> SUPPLIER_TYPE == 301 ? 2 : 1;
- if ($supplier_model) {
- $balance_before = $supplier_model -> ACCOUNT_BALANCE;
- $balance_after = (float)$balance_before + (float)$model->change_value;
- $model->balance_before = $balance_before;
- $model->balance_after = $balance_after;
- $model->pay_status = 2; //已扣款
- $model->pay_type = 2; // 充值
- $model->create_time = $model->update_time = $supplier_model->UPDATE_TIME = $model->pay_time = $model->expect_time = date('Y-m-d H:i:s');
- $supplier_model->ACCOUNT_BALANCE = $balance_after;
- $beginTransaction = Yii::$app->db->beginTransaction();
- if ($model->save() && $supplier_model->save(false)) {
- $beginTransaction->commit();
- return $this->redirect(['index?id=' . $model->supplier_id.'&type='. $supplier_model -> SUPPLIER_TYPE]);
- } else {
- $beginTransaction->rollBack();
- }
- } else {
- return $this->redirect(['sum-index?type='.$type]);
- }
- } else {
- return $this->redirect(['sum-index?type=1']);
- }
- }
-
- /**
- * Updates an existing OperaBalanceHis model.
- * If update is successful, the browser will be redirected to the 'view' page.
- * @param integer $id
- * @return mixed
- */
- public function actionUpdate($id)
- {
- $model = $this->findModel($id);
-
- if ($model->load(Yii::$app->request->post()) && $model->save()) {
- return $this->redirect(['view', 'id' => $model->id]);
- } else {
- return $this->render('update', [
- 'model' => $model,
- ]);
- }
- }
-
- /**
- * Deletes an existing OperaBalanceHis model.
- * If deletion is successful, the browser will be redirected to the 'index' page.
- * @param integer $id
- * @return mixed
- */
- public function actionDelete($id)
- {
- $this->findModel($id)->delete();
-
- return $this->redirect(['index']);
- }
-
- /**
- * Finds the OperaBalanceHis model based on its primary key value.
- * If the model is not found, a 404 HTTP exception will be thrown.
- * @param integer $id
- * @return OperaBalanceHis the loaded model
- * @throws NotFoundHttpException if the model cannot be found
- */
- protected function findModel($id)
- {
- if (($model = OperaBalanceHis::findOne($id)) !== null) {
- return $model;
- } else {
- throw new NotFoundHttpException('The requested page does not exist.');
- }
- }
-
- public function actionSumIndex()
- {
- $searchModel = new BaseSupplierBalance();
- $request = Yii::$app->request->get();
- $supplier = new BaseSupplier();
- // 判断参数type为2则是渠道商,否则为供应商
- if($request['type'] == 2)
- {
- // 渠道商
- $dataProvider = $searchModel -> searchChannel($request);
- $supplier_list = $supplier -> getChannelList();
- $type = 301; // 渠道商
- }else
- {
- // 供应商
- $dataProvider = $searchModel->search($request);
- $supplier_list = $supplier -> getSupplierList();
- $type = 187; // 供应商
- }
- return $this->render('sum-index', ['searchModel' => $searchModel, 'type' => $type, 'run_date' => $request['run_date'], 'end_date' => $request['end_date'], 'supplier_list' => $supplier_list, 'dataProvider' => $dataProvider]);
- }
-
- /**
- * @Author wanglg
- * @Desc 充值模态框
- */
- public function actionCreateRecordView()
- {
- $reqest = Yii::$app -> request -> get();
- if($reqest['type'] == 301) // 渠道商
- {
- $model = new ChannelBalanceHis();
- // $list = BaseSupplier::findAll(['cancel_flag' => 0, 'is_disabled' => 0, 'supplier_type' => 301]);
- $list = BaseSupplierBalance::getChannelListStatic();
- $action = '/zzcs/deduct/create-channel-record';
- $lable = '渠道商:';
- }else // 供应商
- {
- $model = new OperaBalanceHis();
- $list = BaseSupplierBalance::getSupplierListStatic();
- $action = '/zzcs/deduct/create';
- $lable = '供应商:';
- }
-
- return $this -> renderPartial('_recharge_modal', ['model' => $model, 'list' => $list, 'action' => $action, 'lable' => $lable]);
- }
-
- }
|