DrawRecord.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use logicmodel\AccountLogic;
  5. use logicmodel\DrawLogic;
  6. use think\Db;
  7. /**
  8. *
  9. *
  10. * @icon fa fa-circle-o
  11. */
  12. class DrawRecord extends Backend
  13. {
  14. /**
  15. * DrawRecord模型对象
  16. * @var \app\admin\model\DrawRecord
  17. */
  18. protected $model = null;
  19. public function _initialize()
  20. {
  21. parent::_initialize();
  22. $this->model = new \app\admin\model\DrawRecord;
  23. $this->view->assign("statusList", $this->model->getStatusList());
  24. $this->view->assign("typeList", $this->model->getTypeList());
  25. }
  26. public function import()
  27. {
  28. parent::import();
  29. }
  30. /**
  31. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  32. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  33. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  34. */
  35. /**
  36. * 查看
  37. */
  38. public function index()
  39. {
  40. //当前是否为关联查询
  41. $this->relationSearch = true;
  42. //设置过滤方法
  43. $this->request->filter(['strip_tags', 'trim']);
  44. if ($this->request->isAjax()) {
  45. //如果发送的来源是Selectpage,则转发到Selectpage
  46. if ($this->request->request('keyField')) {
  47. return $this->selectpage();
  48. }
  49. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  50. $list = $this->model
  51. ->with(['users','currency'])
  52. ->where($where)
  53. ->order($sort, $order)
  54. ->paginate($limit);
  55. foreach ($list as $row) {
  56. $row->visible(['id','order_num','account','reality_account','status','type','name','image','refuse','create_time']);
  57. $row->visible(['users']);
  58. $row->getRelation('users')->visible(['phone']);
  59. $row->visible(['currency']);
  60. $row->getRelation('currency')->visible(['name']);
  61. }
  62. $result = array("total" => $list->total(), "rows" => $list->items());
  63. return json($result);
  64. }
  65. return $this->view->fetch();
  66. }
  67. /**
  68. * @param $ids
  69. * @return \app\admin\model\DrawRecord|array|\think\response\Json
  70. * @throws \think\db\exception\DataNotFoundException
  71. * @throws \think\db\exception\ModelNotFoundException
  72. * @throws \think\exception\DbException
  73. */
  74. public function pass($ids){
  75. $info = $this->model->find($ids);
  76. if(empty($info)) return json(['code'=>0,'msg'=>'提现信息错误']);
  77. if($info['status'] != 0 )return json(['code'=>0,'msg'=>'当前提现已审核']);
  78. Db::startTrans();
  79. try {
  80. if($info['type']==3) {
  81. DrawLogic::drawToUser($info);
  82. }
  83. $result = $this->model->where(['id'=>$ids])->update(['status'=>1]);
  84. if($result){
  85. //Db::commit();
  86. return json(['code'=>1,'msg'=>'审核成功']);
  87. }else {
  88. Db::rollback();
  89. return json(['code' => 0, 'msg' => '审核失败']);
  90. }
  91. }catch (\Exception $e){
  92. Db::rollback();
  93. return json(['code' => 0, 'msg' => '审核失败'.$e->getMessage()]);
  94. }
  95. }
  96. /**
  97. * 审核拒绝
  98. * @param $ids
  99. * @return mixed|\think\response\Json
  100. * @throws \think\Exception
  101. * @throws \think\db\exception\DataNotFoundException
  102. * @throws \think\db\exception\ModelNotFoundException
  103. * @throws \think\exception\DbException
  104. * @throws \think\exception\PDOException
  105. */
  106. public function refuse($ids){
  107. if(request()->post()){
  108. $info = $this->model->where(['id'=>$ids])->find();
  109. if(empty($info)) return json(['code'=>0,'msg'=>'申请信息错误']);
  110. if(!in_array($info['status'],[0,3])) $this->error('记录状态错误');
  111. $refuse = input('post.refuse');
  112. Db::startTrans();
  113. $result = $this->model->where(['id'=>$ids])->update(['refuse'=>$refuse,'status'=>2]);
  114. if($result <= 0){
  115. Db::rollback();
  116. $this->error('操作失败');
  117. }
  118. $result = (new AccountLogic())->addAccount($info['uid'],$info['currency_id'],$info['account'],'提现拒绝','提现拒绝');
  119. if($result){
  120. Db::commit();
  121. $this->success('操作成功');
  122. }
  123. Db::rollback();
  124. $this->error('操作失败');
  125. }
  126. $this->assign('ids',$ids);
  127. return $this->fetch();
  128. }
  129. }