UserTransfer.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace app\data\command;
  3. use app\data\service\DataService;
  4. use think\admin\Command;
  5. use think\console\Input;
  6. use think\console\Output;
  7. use WePay\Transfers;
  8. /**
  9. * 用户提现处理
  10. * Class UserTransfer
  11. * @package app\data\command
  12. */
  13. class UserTransfer extends Command
  14. {
  15. protected function configure()
  16. {
  17. $this->setName('xdata:UserTransfer');
  18. $this->setDescription('批量执行线上打款操作');
  19. }
  20. /**
  21. * @param Input $input
  22. * @param Output $output
  23. * @return void
  24. * @throws \think\db\exception\DbException
  25. */
  26. protected function execute(Input $input, Output $output)
  27. {
  28. $map = ['type' => 1, 'status' => 3];
  29. foreach ($this->app->db->name('DataUserTransfer')->where($map)->cursor() as $vo) try {
  30. $wechat = Transfers::instance(DataService::instance()->payment());
  31. $result = $wechat->create([
  32. 'openid' => $vo['openid'],
  33. 'amount' => $vo['amount'] * 100,
  34. 'partner_trade_no' => $vo['code'],
  35. 'spbill_create_ip' => '127.0.0.1',
  36. 'check_name' => 'NO_CHECK',
  37. 'desc' => '微信余额提现',
  38. ]);
  39. if ($result['return_code'] === 'SUCCESS' && $result['result_code'] === 'SUCCESS') {
  40. $this->app->db->name('DataUserTransfer')->where(['code' => $vo['code']])->update([
  41. 'status' => 4,
  42. 'trade_no' => $result['partner_trade_no'],
  43. 'trade_time' => $result['payment_time'],
  44. 'change_time' => date('Y-m-d H:i:s'),
  45. 'change_desc' => '线上提现成功',
  46. ]);
  47. } else {
  48. $this->app->db->name('DataUserTransfer')->where(['code' => $vo['code']])->update([
  49. 'change_time' => date('Y-m-d H:i:s'),
  50. 'change_desc' => $result['err_code_des'] ?? '线上提现失败',
  51. ]);
  52. }
  53. } catch (\Exception $exception) {
  54. $this->output->writeln("订单 {$vo['code']} 提现失败,{$exception->getMessage()}");
  55. $this->app->db->name('DataUserTransfer')->where(['code' => $vo['code']])->update([
  56. 'change_time' => date('Y-m-d H:i:s'),
  57. 'change_desc' => $exception->getMessage(),
  58. ]);
  59. }
  60. }
  61. }