Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

239 Zeilen
8.6 KiB

  1. <?php
  2. namespace backend\modules\zzcs\controllers;
  3. use backend\modules\zzcs\models\BaseSupplier;
  4. use backend\modules\zzcs\models\ChannelBalanceHis;
  5. use Faker\Provider\Base;
  6. use Yii;
  7. use backend\modules\zzcs\models\OperaBalanceHis;
  8. use backend\modules\zzcs\models\OperaBalanceHisSearch;
  9. use yii\web\Controller;
  10. use yii\web\NotFoundHttpException;
  11. use yii\filters\VerbFilter;
  12. use backend\modules\zzcs\logic\BaseSupplierBalance;
  13. /**
  14. * DeductController implements the CRUD actions for OperaBalanceHis model.
  15. */
  16. class DeductController extends Controller
  17. {
  18. public $layout = '@backend/modules/zzcs/views/layouts/zzcs';
  19. public $enableCsrfValidation = false;
  20. public $url = '/resource/zzcs/upload/tourist/';
  21. /**
  22. * @inheritdoc
  23. */
  24. public function behaviors()
  25. {
  26. return [
  27. 'verbs' => [
  28. 'class' => VerbFilter::className(),
  29. 'actions' => [
  30. 'delete' => ['POST'],
  31. ],
  32. ],
  33. ];
  34. }
  35. /**
  36. * Lists all OperaBalanceHis models.
  37. * @return mixed
  38. */
  39. public function actionIndex()
  40. {
  41. $searchModel = new OperaBalanceHisSearch();
  42. $request = Yii::$app->request->get();
  43. if($request['type'] == 187) // 供应商
  44. {
  45. $list = BaseSupplierBalance::getSupplierListStatic();
  46. $dataProvider = $searchModel->search($request);
  47. }elseif ($request['type'] == 301) // 渠道商
  48. {
  49. $list = BaseSupplierBalance::getChannelListStatic();
  50. $dataProvider = $searchModel -> searchChannel($request);
  51. }
  52. return $this->render('index', [
  53. 'list' => $list,
  54. 'type' => $request['type'],
  55. 'searchModel' => $searchModel,
  56. 'dataProvider' => $dataProvider,
  57. ]);
  58. }
  59. /**
  60. * Displays a single OperaBalanceHis model.
  61. * @param integer $id
  62. * @return mixed
  63. */
  64. public function actionView($id)
  65. {
  66. return $this->render('view', [
  67. 'model' => $this->findModel($id),
  68. ]);
  69. }
  70. /**
  71. * Creates a new OperaBalanceHis model.
  72. * If creation is successful, the browser will be redirected to the 'view' page.
  73. * @return mixed
  74. */
  75. public function actionCreate()
  76. {
  77. $model = new OperaBalanceHis();
  78. if ($model->load(Yii::$app->request->post()) && Yii::$app->request->isPost) {
  79. $supplier_model = BaseSupplier::findOne(['ID' => $model->supplier_id, 'cancel_flag' => 0, 'DEDUCT_TYPE' => [1, 2, 3]]);
  80. $type = $supplier_model -> SUPPLIER_TYPE == 301 ? 2 : 1;
  81. if ($supplier_model) {
  82. $balance_before = $supplier_model->ACCOUNT_BALANCE;
  83. $balance_after = (float)$balance_before + (float)$model->change_value;
  84. $model->balance_before = $balance_before;
  85. $model->balance_after = $balance_after;
  86. $model->pay_status = 2; //已扣款
  87. $model->pay_type = 2; // 充值
  88. $model->create_time = $model->update_time = $supplier_model->UPDATE_TIME = $model->pay_time = $model->expect_time = date('Y-m-d H:i:s');
  89. $supplier_model->ACCOUNT_BALANCE = $balance_after;
  90. $beginTransaction = Yii::$app->db->beginTransaction();
  91. if ($model->save() && $supplier_model->save(false)) {
  92. $beginTransaction->commit();
  93. return $this->redirect(['index?id=' . $model->supplier_id.'&type='. $supplier_model -> SUPPLIER_TYPE]);
  94. } else {
  95. $beginTransaction->rollBack();
  96. }
  97. } else {
  98. return $this->redirect(['sum-index?type='.$type]);
  99. }
  100. } else {
  101. return $this->redirect(['sum-index?type=1']);
  102. }
  103. }
  104. public function actionCreateChannelRecord()
  105. {
  106. $model = new ChannelBalanceHis();
  107. if ($model->load(Yii::$app->request->post()) && Yii::$app->request->isPost) {
  108. $supplier_model = BaseSupplier::findOne(['ID' => $model->supplier_id, 'cancel_flag' => 0, 'DEDUCT_TYPE' => [1, 2, 3]]);
  109. $type = $supplier_model -> SUPPLIER_TYPE == 301 ? 2 : 1;
  110. if ($supplier_model) {
  111. $balance_before = $supplier_model -> ACCOUNT_BALANCE;
  112. $balance_after = (float)$balance_before + (float)$model->change_value;
  113. $model->balance_before = $balance_before;
  114. $model->balance_after = $balance_after;
  115. $model->pay_status = 2; //已扣款
  116. $model->pay_type = 2; // 充值
  117. $model->create_time = $model->update_time = $supplier_model->UPDATE_TIME = $model->pay_time = $model->expect_time = date('Y-m-d H:i:s');
  118. $supplier_model->ACCOUNT_BALANCE = $balance_after;
  119. $beginTransaction = Yii::$app->db->beginTransaction();
  120. if ($model->save() && $supplier_model->save(false)) {
  121. $beginTransaction->commit();
  122. return $this->redirect(['index?id=' . $model->supplier_id.'&type='. $supplier_model -> SUPPLIER_TYPE]);
  123. } else {
  124. $beginTransaction->rollBack();
  125. }
  126. } else {
  127. return $this->redirect(['sum-index?type='.$type]);
  128. }
  129. } else {
  130. return $this->redirect(['sum-index?type=1']);
  131. }
  132. }
  133. /**
  134. * Updates an existing OperaBalanceHis model.
  135. * If update is successful, the browser will be redirected to the 'view' page.
  136. * @param integer $id
  137. * @return mixed
  138. */
  139. public function actionUpdate($id)
  140. {
  141. $model = $this->findModel($id);
  142. if ($model->load(Yii::$app->request->post()) && $model->save()) {
  143. return $this->redirect(['view', 'id' => $model->id]);
  144. } else {
  145. return $this->render('update', [
  146. 'model' => $model,
  147. ]);
  148. }
  149. }
  150. /**
  151. * Deletes an existing OperaBalanceHis model.
  152. * If deletion is successful, the browser will be redirected to the 'index' page.
  153. * @param integer $id
  154. * @return mixed
  155. */
  156. public function actionDelete($id)
  157. {
  158. $this->findModel($id)->delete();
  159. return $this->redirect(['index']);
  160. }
  161. /**
  162. * Finds the OperaBalanceHis model based on its primary key value.
  163. * If the model is not found, a 404 HTTP exception will be thrown.
  164. * @param integer $id
  165. * @return OperaBalanceHis the loaded model
  166. * @throws NotFoundHttpException if the model cannot be found
  167. */
  168. protected function findModel($id)
  169. {
  170. if (($model = OperaBalanceHis::findOne($id)) !== null) {
  171. return $model;
  172. } else {
  173. throw new NotFoundHttpException('The requested page does not exist.');
  174. }
  175. }
  176. public function actionSumIndex()
  177. {
  178. $searchModel = new BaseSupplierBalance();
  179. $request = Yii::$app->request->get();
  180. $supplier = new BaseSupplier();
  181. // 判断参数type为2则是渠道商,否则为供应商
  182. if($request['type'] == 2)
  183. {
  184. // 渠道商
  185. $dataProvider = $searchModel -> searchChannel($request);
  186. $supplier_list = $supplier -> getChannelList();
  187. $type = 301; // 渠道商
  188. }else
  189. {
  190. // 供应商
  191. $dataProvider = $searchModel->search($request);
  192. $supplier_list = $supplier -> getSupplierList();
  193. $type = 187; // 供应商
  194. }
  195. 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]);
  196. }
  197. /**
  198. * @Author wanglg
  199. * @Desc 充值模态框
  200. */
  201. public function actionCreateRecordView()
  202. {
  203. $reqest = Yii::$app -> request -> get();
  204. if($reqest['type'] == 301) // 渠道商
  205. {
  206. $model = new ChannelBalanceHis();
  207. // $list = BaseSupplier::findAll(['cancel_flag' => 0, 'is_disabled' => 0, 'supplier_type' => 301]);
  208. $list = BaseSupplierBalance::getChannelListStatic();
  209. $action = '/zzcs/deduct/create-channel-record';
  210. $lable = '渠道商:';
  211. }else // 供应商
  212. {
  213. $model = new OperaBalanceHis();
  214. $list = BaseSupplierBalance::getSupplierListStatic();
  215. $action = '/zzcs/deduct/create';
  216. $lable = '供应商:';
  217. }
  218. return $this -> renderPartial('_recharge_modal', ['model' => $model, 'list' => $list, 'action' => $action, 'lable' => $lable]);
  219. }
  220. }