Finance.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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\store\controller;
  15. use app\api\controller\Alipay;
  16. use EasyWeChat\Factory;
  17. use library\Controller;
  18. use think\Db;
  19. use app\api\controller\Area;
  20. use app\api\controller\Crontab;
  21. use function GuzzleHttp\Psr7\_caseless_remove;
  22. /**
  23. * 财务管理
  24. * Class Finance
  25. * @package app\store\controller
  26. */
  27. class Finance extends Controller
  28. {
  29. /**
  30. * 绑定数据表
  31. * @var string
  32. */
  33. protected $table = 'release_detailed';
  34. /**
  35. * 财务管理
  36. * @auth true
  37. * @menu true
  38. * @throws \think\Exception
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\ModelNotFoundException
  41. * @throws \think\exception\DbException
  42. * @throws \think\exception\PDOException
  43. */
  44. public function index()
  45. {
  46. $this->title = '财务管理';
  47. $query = $this->byWhere();
  48. $query->order('id desc')->page();
  49. }
  50. /**
  51. * 搜索条件
  52. * @return \library\helper\QueryHelper
  53. */
  54. protected function byWhere()
  55. {
  56. $query = $this->_query($this->table)->where('detailed', '提现');
  57. if (!empty($_GET['transaction_number'])) {
  58. $query->where('transaction_number', $_GET['transaction_number']);
  59. }
  60. if (!empty($_GET['withdrawa_status'])) {
  61. $query->where('withdrawa_status', $_GET['withdrawa_status']);
  62. }
  63. return $query;
  64. }
  65. /**
  66. * 财务列表处理
  67. * @param array $data
  68. * @throws \think\db\exception\DataNotFoundException
  69. * @throws \think\db\exception\ModelNotFoundException
  70. * @throws \think\exception\DbException
  71. */
  72. protected function _index_page_filter(array &$data)
  73. {
  74. $status_arr = array(0=>'提现中',1=>'提现成功',2=>'提现失败');
  75. foreach ($data as $k => &$v) {
  76. $v['extract_status_name'] = $status_arr[$v['extract_status']];
  77. $v['transaction_amount'] = str_replace("-", "", $v['transaction_amount']);
  78. $v['user'] = Db::name('release_user')->find($v['user_id']);
  79. }
  80. }
  81. /**
  82. * 申请提现
  83. * @auth true
  84. * @throws \think\Exception
  85. * @throws \think\db\exception\DataNotFoundException
  86. * @throws \think\db\exception\ModelNotFoundException
  87. * @throws \think\exception\DbException
  88. * @throws \think\exception\PDOException
  89. */
  90. public function edit()
  91. {
  92. $this->title = '审核提现申请';
  93. $this->_form($this->table, 'form');
  94. }
  95. /**
  96. * 表单数据处理
  97. * @param array $data
  98. * @throws \think\Exception
  99. * @throws \think\db\exception\DataNotFoundException
  100. * @throws \think\db\exception\ModelNotFoundException
  101. * @throws \think\exception\DbException
  102. * @throws \think\exception\PDOException
  103. */
  104. protected function _form_filter(&$data)
  105. {
  106. if ($this->request->isGet()) {
  107. $data['transaction_amount'] = abs($data['transaction_amount']);
  108. } elseif ($this->request->isPost()) {
  109. //处理提现
  110. $store_withdrawal = Db::name('release_detailed')->where('id',$data['id'])->find();
  111. if($data['extract_status'] == 1){ //提现成功
  112. $rufund_success = 1;
  113. if(1 != 1){ //提现到微信
  114. $app = Factory::payment(config('app.wx_pay'));
  115. $res = $app->transfer->toBalance([
  116. 'partner_trade_no' => $store_withdrawal['trade_no'], // 商户订单号,需保持唯一性(只能是字母或者数字,不能包含有符号)
  117. 'openid' => $store_withdrawal['wechat'],
  118. 'check_name' => 'NO_CHECK', // NO_CHECK:不校验真实姓名
  119. 're_user_name' => '', // 如果 check_name 设置为FORCE_CHECK,则必填用户真实姓名
  120. 'amount' =>$store_withdrawal['transaction_amount']*100,// 企业付款金额,单位为分
  121. 'desc' =>'会员提现'//企业付款操作说明信息。必填
  122. ]);
  123. if(isset($res['err_code_des'])){
  124. $this->error($res['err_code_des']);
  125. }else{
  126. $rufund_success = 1;
  127. }
  128. }
  129. }elseif($data['extract_status'] == 2){ //提现失败
  130. //退回余额
  131. $balance = Db::name('release_user')->where('id',$store_withdrawal['user_id'])->value('balance');
  132. $remainingBalance = $balance + $data['transaction_amount'];
  133. Db::startTrans();
  134. $error = 0;
  135. $detailed_data = array(
  136. 'transaction_amount' => '+'.$data['transaction_amount'],
  137. 'user_id' => $store_withdrawal['user_id'],
  138. 'detailed' => '提现失败退回',
  139. 'transaction_number' => get_order_sn(),
  140. 'create_time' => date('Y-m-d'),
  141. 'remaining_balance' => $remainingBalance,
  142. 'withdrawa_status' => 2
  143. );
  144. $release_detailed = Db::name('release_detailed')->insert($detailed_data);
  145. if(!$release_detailed){
  146. $error = 1;
  147. Db::rollback();
  148. }
  149. $user_balance = Db::name('release_user')->where('id', $store_withdrawal['user_id'])->update([
  150. 'balance' => $remainingBalance
  151. ]);
  152. if(!$user_balance){
  153. $error = 2;
  154. Db::rollback();
  155. }
  156. Db::name('release_detailed')->where('id',$data['id'])->update(array('extract_status'=>2));
  157. if($error == 0){
  158. Db::commit();
  159. }
  160. $this->success('保存成功');
  161. }
  162. if($data['extract_status'] == 1 && $rufund_success == 1){
  163. Db::name('release_detailed')->where('id',$data['id'])->update(array('extract_status'=>1));
  164. $this->success('提现成功');
  165. }else{
  166. $this->error('提现失败');
  167. }
  168. }
  169. }
  170. /**
  171. * 表单结果处理
  172. * @param boolean $result
  173. */
  174. protected function _form_result($result)
  175. {
  176. if ($result && $this->request->isPost()) {
  177. $this->success('操作成功!', 'javascript:history.back()');
  178. }
  179. }
  180. /**
  181. * 订单详情
  182. * @auth true
  183. * @throws \think\Exception
  184. * @throws \think\db\exception\DataNotFoundException
  185. * @throws \think\db\exception\ModelNotFoundException
  186. * @throws \think\exception\DbException
  187. * @throws \think\exception\PDOException
  188. */
  189. public function order_detail()
  190. {
  191. $this->_form($this->table);
  192. }
  193. /**
  194. * 删除
  195. * @auth true
  196. * @throws \think\Exception
  197. * @throws \think\exception\PDOException
  198. */
  199. public function remove()
  200. {
  201. $this->_delete($this->table);
  202. }
  203. }