Doctortakecash.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 Doctortakecash extends Backend
  11. {
  12. /**
  13. * Doctortakecash模型对象
  14. * @var \app\admin\model\Doctortakecash
  15. */
  16. protected $model = null;
  17. public function _initialize()
  18. {
  19. parent::_initialize();
  20. $this->model = new \app\admin\model\Doctortakecash;
  21. $this->view->assign("typeList", $this->model->getTypeList());
  22. $this->view->assign("statusList", $this->model->getStatusList());
  23. }
  24. /**
  25. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  26. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  27. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  28. */
  29. /**
  30. * 查看
  31. */
  32. public function index()
  33. {
  34. //当前是否为关联查询
  35. $this->relationSearch = true;
  36. //设置过滤方法
  37. $this->request->filter(['strip_tags', 'trim']);
  38. if ($this->request->isAjax()) {
  39. //如果发送的来源是Selectpage,则转发到Selectpage
  40. if ($this->request->request('keyField')) {
  41. return $this->selectpage();
  42. }
  43. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  44. $list = $this->model
  45. ->with(['doctor'])
  46. ->where($where)
  47. ->order($sort, $order)
  48. ->paginate($limit);
  49. foreach ($list as $row) {
  50. $row->getRelation('doctor')->visible(['nickname','avatar','mobile']);
  51. }
  52. /*$result = array("total" => $list->total(), "rows" => $list->items());
  53. return json($result);*/
  54. $list2 = collection($list->items())->toArray();
  55. foreach($list2 as $key => &$info){
  56. $account_info = json_decode($info['acount_json'],true);
  57. if($info['type'] == 2){ //银行
  58. $info['account_info'] = '姓名:'.$account_info['realname'].',账号:'.$account_info['bank_no'].',开户行:'.$account_info['open_bank'];
  59. }elseif($info['type'] == 1){ //支付宝
  60. $info['account_info'] = '姓名:'.$account_info['realname'].',账号:'.$account_info['pay_no'];
  61. }else{ //微信
  62. $info['account_info'] = '姓名:'.$account_info['realname'].',账号:'.$account_info['pay_no'];
  63. }
  64. }
  65. $result = array("total" => $list->total(), "rows" => $list2);
  66. return json($result);
  67. }
  68. return $this->view->fetch();
  69. }
  70. /**
  71. * 审核
  72. */
  73. public function audit(){
  74. $id = input('id');
  75. $info = Db::name('doctor_take_cash')
  76. ->where('id',$id)
  77. ->find();
  78. if ($this->request->isPost()) {
  79. $status = input('status',0);
  80. $data = [
  81. 'status' => $status,
  82. 'auditremark' => input('auditremark',''),
  83. 'audittime' => strtotime(input('audittime','')),
  84. 'updatetime' => time(),
  85. ];
  86. Db::startTrans();
  87. $rs = Db::name('doctor_take_cash')->where('id',$id)->update($data);
  88. if($status == 1){
  89. $remark = '提现(成功)';
  90. Db::name('doctor_money_log')->where('table','doctor_take_cash')->where('table_id',$id)->update(['remark'=>$remark]);
  91. }elseif($status == 2){
  92. $remark = '提现(驳回)';
  93. Db::name('doctor_money_log')->where('table','doctor_take_cash')->where('table_id',$id)->update(['remark'=>$remark]);
  94. //还钱
  95. $wallet_rs = model('walletdoctor')->lockChangeAccountRemain($info['doctor_id'],'money',$info['money'],122,'提现被拒返回:'.$info['money'],'doctor_take_cash',$id);
  96. if($wallet_rs['status'] === false){
  97. Db::rollback();
  98. $this->error($wallet_rs['msg']);
  99. }
  100. }
  101. Db::commit();
  102. $this->success('审核完成');
  103. }
  104. $account_info = json_decode($info['acount_json'],true);
  105. if($info['type'] == 2){
  106. $info['account_info'] = '姓名:'.$account_info['realname'].',账号:'.$account_info['bank_no'].',开户行:'.$account_info['open_bank'];
  107. }elseif($info['type'] == 1){
  108. $info['account_info'] = '姓名:'.$account_info['realname'].',账号:'.$account_info['pay_no'];
  109. }else{
  110. $info['account_info'] = '姓名:'.$account_info['realname'].',账号:'.$account_info['pay_no'];
  111. }
  112. $this->assign('row',$info);
  113. return $this->view->fetch();
  114. }
  115. }