CompanyTakeCash.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. /**
  6. * 车行提现申请
  7. *
  8. * @icon fa fa-circle-o
  9. */
  10. class CompanyTakeCash extends Backend
  11. {
  12. /**
  13. * CompanyTakeCash模型对象
  14. * @var \app\admin\model\CompanyTakeCash
  15. */
  16. protected $model = null;
  17. public function _initialize()
  18. {
  19. parent::_initialize();
  20. $this->model = new \app\admin\model\CompanyTakeCash;
  21. $this->view->assign("statusList", $this->model->getStatusList());
  22. }
  23. /**
  24. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  25. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  26. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  27. */
  28. /**
  29. * 查看
  30. */
  31. public function index()
  32. {
  33. //当前是否为关联查询
  34. $this->relationSearch = true;
  35. //设置过滤方法
  36. $this->request->filter(['strip_tags', 'trim']);
  37. if ($this->request->isAjax()) {
  38. //如果发送的来源是Selectpage,则转发到Selectpage
  39. if ($this->request->request('keyField')) {
  40. return $this->selectpage();
  41. }
  42. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  43. //只能看自己的
  44. $where_op = $this->whereop('company_take_cash.user_id');
  45. $list = $this->model
  46. ->with(['company'])
  47. ->where($where)
  48. ->where($where_op)
  49. ->order($sort, $order)
  50. ->paginate($limit);
  51. foreach ($list as $row) {
  52. $row->getRelation('company')->visible(['name']);
  53. }
  54. $result = array("total" => $list->total(), "rows" => $list->items());
  55. return json($result);
  56. }
  57. return $this->view->fetch();
  58. }
  59. /**
  60. * 提现审核
  61. */
  62. public function audit(){
  63. $id = input('id');
  64. $info = Db::name('company_take_cash')
  65. ->where('id',$id)
  66. ->find();
  67. if ($this->request->isPost()) {
  68. $status = input('status',0);
  69. $data = [
  70. 'status' => $status,
  71. 'auditremark' => input('auditremark',''),
  72. 'audittime' => time(),
  73. 'updatetime' => time(),
  74. ];
  75. Db::startTrans();
  76. $rs = Db::name('company_take_cash')->where('id',$id)->update($data);
  77. if($rs === false){
  78. Db::rollback();
  79. $this->error('审核失败');
  80. }
  81. if($status == 2){
  82. //归还钱
  83. $wallet_rs = model('walletcompany')->lockChangeAccountRemain($info['user_id'],'money',$info['money'],206,'提现退还:'.$info['money'],'company_take_cash',$info['id']);
  84. if($wallet_rs['status'] === false){
  85. Db::rollback();
  86. $this->error($wallet_rs['msg']);
  87. }
  88. }
  89. Db::commit();
  90. $this->success('审核完成');
  91. }
  92. $this->assign('row',$info);
  93. return $this->view->fetch();
  94. }
  95. }