截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

WechatMerchantTransfer.php 4.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\command;
  20. use app\admin\logic\WechatMerchantTransferLogic;
  21. use app\common\enum\WithdrawEnum;
  22. use app\common\logic\AccountLogLogic;
  23. use app\common\model\AccountLog;
  24. use app\common\model\user\User;
  25. use app\common\model\WithdrawApply;
  26. use app\common\server\ConfigServer;
  27. use think\console\Command;
  28. use think\console\Output;
  29. use think\console\Input;
  30. use think\facade\Log;
  31. class WechatMerchantTransfer extends Command
  32. {
  33. protected function configure()
  34. {
  35. $this->setName('wechat_merchant_transfer')
  36. ->setDescription('商家转账到零钱查询');
  37. }
  38. protected function execute(Input $input, Output $output)
  39. {
  40. //微信零钱接口:1-企业付款到零钱;2-商家转账到零钱
  41. $transfer_way = ConfigServer::get('withdraw', 'transfer_way',1);
  42. //选择了商家转账到零钱再进行查询
  43. if ($transfer_way == 1) {
  44. return false;
  45. }
  46. $lists = WithdrawApply::where(['type'=>WithdrawEnum::TYPE_WECHAT_CHANGE,'status'=>WithdrawEnum::STATUS_ING])
  47. ->field('id,sn,batch_no,user_id,money')
  48. ->select();
  49. foreach ($lists as $list) {
  50. $result = WechatMerchantTransferLogic::details($list);
  51. // 记录查询结果
  52. WithdrawApply::update(['update_time'=>time(),'pay_search_desc'=>json_encode($result, JSON_UNESCAPED_UNICODE)],['id'=>$list['id']]);
  53. if(isset($result['detail_status'])) {
  54. if ($result['detail_status'] == 'SUCCESS') {
  55. // 转账成功,标记提现申请单为提现成功,记录支付信息
  56. WithdrawApply::update(['status'=>3,'payment_no'=>$result['detail_id'],'payment_time'=>strtotime($result['update_time'])],['id'=>$list['id']]);
  57. }
  58. if ($result['detail_status'] == 'FAIL') {
  59. // 转账失败
  60. WithdrawApply::update(['status'=>4],['id'=>$list['id']]);
  61. //回退佣金
  62. $user = User::find($list['user_id']);
  63. $user->earnings = ['inc', $list['money']];
  64. $user->save();
  65. //增加佣金变动记录
  66. AccountLogLogic::AccountRecord(
  67. $list['user_id'],
  68. $list['money'],
  69. 1,
  70. AccountLog::withdraw_back_earnings,
  71. '',
  72. $list['id'],
  73. $list['sn']
  74. );
  75. }
  76. if ($result['detail_status'] == 'PROCESSING') {
  77. return ['code' => 0, 'msg' => '正在处理中'];
  78. }
  79. }else{
  80. Log::write($result['message'] ?? '商家转账到零钱查询失败');
  81. return null;
  82. }
  83. }
  84. return true;
  85. }
  86. }