Deposit.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\user\controller;
  15. use app\common\library\AliPay2;
  16. use app\common\library\PHPExcelService;
  17. use app\common\library\Shande;
  18. use EasyWeChat\Factory;
  19. use library\Controller;
  20. use think\Db;
  21. /**
  22. * 提现管理
  23. * Class Member
  24. * @package app\Member\controller
  25. */
  26. class Deposit extends Controller
  27. {
  28. /**
  29. * 绑定数据表
  30. * @var string
  31. */
  32. protected $table = 'store_member_withdraw';
  33. /**
  34. * 提现列表
  35. * @auth true
  36. * @menu true
  37. * @throws \think\Exception
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. * @throws \think\exception\DbException
  41. * @throws \think\exception\PDOException
  42. */
  43. public function index()
  44. {
  45. $this->title = '提现列表';
  46. $sel_where = [];
  47. $sel_where[] = ['w.is_deleted','=',0];
  48. $this->dep_type = ['','微信','支付宝','银行卡'];
  49. $this->sh_arr = ['待审核','审核通过','审核拒绝','打款成功','打款失败'];
  50. if($name = $this->request->get('name')) $sel_where[] =['m.name','like','%'.$name.'%'];
  51. if($phone = $this->request->get('phone')) $sel_where[] =['m.phone','like','%'.$phone.'%'];
  52. if($type = $this->request->get('type')){
  53. if($type == 1) $sel_where[] =['w.withdraw_type','=','wx'];
  54. if($type == 2) $sel_where[] =['w.withdraw_type','=','zfb'];
  55. if($type == 3) $sel_where[] =['w.withdraw_type','=','bank'];
  56. }
  57. $sel_sh = input('sel_sh',-1);
  58. $this->sel_sh = $sel_sh;
  59. switch ($sel_sh) {
  60. case 0 ;case 1 ; case 2:
  61. $sel_where[] =['w.sh_status','=',$sel_sh];
  62. break;
  63. case 3:
  64. $sel_where[] =['w.sh_status','=',2];
  65. $sel_where[] =['w.is_over','=',1];
  66. $sel_where[] =['w.paid','=',1];
  67. break;
  68. case 4:
  69. $sel_where[] =['w.sh_status','=',1];
  70. $sel_where[] =['w.paid','=',0];
  71. break;
  72. }
  73. $query = $this->_query($this->table)->alias('w')
  74. ->where($sel_where)
  75. ->field('w.*,m.headimg,m.openid,m.name as m_name')
  76. ->join('store_member m','m.id = w.mid');
  77. $query->dateBetween('w.create_at')->order('w.id desc')->page();
  78. }
  79. /**
  80. * 数据列表处理
  81. * @auth true
  82. * @menu true
  83. * @param array $data
  84. * @throws \think\db\exception\DataNotFoundException
  85. * @throws \think\db\exception\ModelNotFoundException
  86. * @throws \think\exception\DbException
  87. */
  88. protected function _index_page_filter(&$data)
  89. {
  90. foreach ($data as $k=>&$v){
  91. $v['return_info'] = $v['return_info'] ? json_decode($v['return_info'],true):[];
  92. }
  93. }
  94. protected function _form_filter(&$data){
  95. if($this->request->isGet() && $this->request->action() == 'edit') {
  96. $this->user = Db::name('store_member')->field('headimg,name,phone')->find($data['mid']);
  97. }
  98. // 提现审核
  99. if($this->request->isPost() && $this->request->action() == 'edit'){
  100. // 同意提现
  101. $withdrawal = Db::name('store_member_withdraw')->where('id',$data['id'])->find();
  102. if($withdrawal['is_over'] == 1) $this->error('该记录已完成,无法进行操作');
  103. $data['sh_time'] = date("Y-m-d H:i:s");
  104. }
  105. }
  106. protected function _edit_form_result($id)
  107. {
  108. if($this->request->isPost()) {
  109. $withdrawal = Db::name('store_member_withdraw')->where('id',$id)->find();
  110. if($withdrawal['is_over'] == 0) {
  111. // 同意提现
  112. if($this->request->sh_status == 1){
  113. switch ($withdrawal['withdraw_type'] ){
  114. case 'wx':// 提现到微信
  115. $app = Factory::payment(config('app.wx_pay'));
  116. $result = $app->transfer->toBalance([
  117. 'partner_trade_no' => $withdrawal['order_no'], // 商户订单号,需保持唯一性(只能是字母或者数字,不能包含有符号)
  118. 'openid' => $withdrawal['account_no'],
  119. 'check_name' => 'NO_CHECK', // NO_CHECK:不校验真实姓名
  120. 're_user_name' => '', // 如果 check_name 设置为FORCE_CHECK,则必填用户真实姓名
  121. 'amount' =>$withdrawal['real_money'] * 100,// 企业付款金额,单位为分
  122. 'desc' =>'会员提现'//企业付款操作说明信息。必填
  123. ]);
  124. if(isset($result['err_code_des'])) $this->error($result['err_code_des']);
  125. Db::name('store_member_withdraw')->where('id',$withdrawal['id'])->update(['paid'=>1,'pay_time'=>time(),'is_over'=>1,'return_info'=>json_encode($result,true)]);
  126. break;
  127. case 'zfb':// 提现到支付宝
  128. $zfb = new AliPay2();//实例化支付宝支付控制器
  129. $result = $zfb->FundTransToaccount($withdrawal['order_no'], $withdrawal['account_no'], $withdrawal['account_name'], $withdrawal['real_money'],'象链数藏余额提现');//调用支付宝支付的方法
  130. if (!empty($result) && $result['code'] == 10000){
  131. Db::name('store_member_withdraw')->where('id',$withdrawal['id'])->update(['paid'=>1,'pay_time'=>time(),'is_over'=>1,'return_info'=>json_encode($result['result'],true)]);
  132. }else{
  133. Db::name('store_member_withdraw')->where('id',$withdrawal['id'])->update(['return_info'=>json_encode($result['result'],true)]);
  134. $this->error('提现失败,请检查绑定的支付宝信息');
  135. }
  136. break;
  137. case 'bank':
  138. $Shande= new Shande();
  139. $result = $Shande->payToCard($withdrawal['account_no'],$withdrawal['account_name'],$withdrawal['real_money'],$withdrawal['order_no'],'会员提现');
  140. if(empty($result) || $result['respCode']!='0000'){//失败
  141. Db::name('store_member_withdraw')->where('id',$withdrawal['id'])->update(['return_info'=>json_encode($result,true),'order_no'=>get_order_sn()]);
  142. $this->error($result['respDesc']);
  143. }else{
  144. Db::name('store_member_withdraw')->where('id',$withdrawal['id'])->update(['paid'=>1,'pay_time'=>time(),'is_over'=>1,'return_info'=>json_encode($result,true)]);
  145. }
  146. break;
  147. }
  148. }else if ($this->request->sh_status ==2){
  149. memberMoneyChange($withdrawal['price'],3,$withdrawal['mid'],'提现驳回',1,$withdrawal['id'],3);
  150. Db::name('store_member_withdraw')->where('id',$withdrawal['id'])->update(['is_over'=>1]);
  151. $this->success('保存成功');
  152. }
  153. }
  154. }
  155. }
  156. /**
  157. * 审核
  158. * @auth true
  159. * @menu true
  160. * @throws \think\Exception
  161. * @throws \think\db\exception\DataNotFoundException
  162. * @throws \think\db\exception\ModelNotFoundException
  163. * @throws \think\exception\DbException
  164. * @throws \think\exception\PDOException
  165. */
  166. public function edit()
  167. {
  168. $this->title = '审核';
  169. $this->_form($this->table, 'form');
  170. }
  171. /**
  172. * 导出EXCL
  173. * @remark 根据WHERE条件导出EXCL
  174. * @param array $post 查询条件所需值
  175. * @return array
  176. */
  177. public function get_excl()
  178. {
  179. set_time_limit(0);
  180. $sel_where =[];
  181. if($name = $this->request->get('name')) $sel_where[] =['m.name','like','%'.$name.'%'];
  182. if($phone = $this->request->get('phone')) $sel_where[] =['m.phone','like','%'.$phone.'%'];
  183. if($type = $this->request->get('type')){
  184. if($type == 1) $sel_where[] =['w.withdraw_type','=','wx'];
  185. if($type == 2) $sel_where[] =['w.withdraw_type','=','zfb'];
  186. }
  187. $sel_sh = input('sel_sh',-1);
  188. switch ($sel_sh) {
  189. case 0 ;case 1 ; case 2:
  190. $sel_where[] =['w.sh_status','=',$sel_sh];
  191. break;
  192. case 3:
  193. $sel_where[] =['w.sh_status','=',2];
  194. $sel_where[] =['w.paid','=',1];
  195. $sel_where[] =['w.is_over','=',1];
  196. break;
  197. case 4:
  198. $sel_where[] =['w.sh_status','=',1];
  199. $sel_where[] =['w.paid','=',0];
  200. break;
  201. }
  202. $sel_time = input('create_at');
  203. if($sel_time) {
  204. $time_arr = explode(' - ',$sel_time);
  205. $where[]= ['o.create_at','> time',$time_arr[0].' 00:00:00'];
  206. $where[]= ['o.create_at','< time',$time_arr[1].' 00:00:00'];
  207. }
  208. $list =Db::name('store_member_withdraw')->alias('w')
  209. ->where($sel_where)
  210. ->field('w.*,m.headimg,m.openid,m.name as m_name,m.phone')
  211. ->join('store_member m','m.id = w.mid')
  212. ->order('w.id desc')->select();
  213. $export = [];
  214. $sh_dsec = ['待审核','审核通过','审核拒绝[余额已退回]'];
  215. if (is_array($list)) {
  216. foreach ($list as $index => $item) {
  217. $item['withdraw_type'] = $item['withdraw_type'] == 'wx'?'微信':'支付宝';
  218. $item['sh_status'] = $sh_dsec[$item['sh_status']];
  219. $item['paid'] = $item['paid'] == 1 ? '是':'否';
  220. $export[] = [
  221. $item['m_name'],
  222. $item['phone'],
  223. $item['order_no'],
  224. $item['price'],
  225. $item['proportion'],
  226. $item['real_money'],
  227. $item['paid'],
  228. $item['create_at'],
  229. $item['sh_time'],
  230. $item['sh_status'],
  231. $item['sh_remark'],
  232. $item['withdraw_type'],
  233. $item['account_name'],
  234. $item['account_no'],
  235. ];
  236. }
  237. }
  238. $title = ['用户名','手机号','单号','提现金额','服务费','应到账','是否到账','申请时间','审核时间','审核状态','审核备注','提现方式','收款人','收款账号'];
  239. PHPExcelService::setExcelHeader($title)
  240. ->setExcelTile('提现记录导出' . date('YmdHis', time()), '提现记录' . time(), ' 生成时间:' . date('Y-m-d H:i:s', time()))
  241. ->setExcelContent($export)
  242. ->ExcelSave();
  243. }
  244. }