| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000 |
- <?php
- namespace App\Services;
- use App\Constants\HttpStatus;
- use App\Models\PaymentOrder;
- use Exception;
- use Illuminate\Support\Facades\DB;
- use Illuminate\Support\Facades\Log;
- use App\Services\Payment\JdPayService;
- use App\Services\Payment\QianBaoService;
- use App\Services\Payment\SanJinService;
- use App\Services\ConfigService;
- /**
- * 投注
- */
- class PaymentOrderService extends BaseService
- {
- const TYPE_PAY = 1; // 代收
- const TYPE_PAYOUT = 2; // 代付
- const TYPE_SELF_PAY = 3; // 手动充值
- const TYPE_SELF_PAYOUT = 4; // 手动提现打款
- const STATUS_STAY = 0; // 待处理
- const STATUS_PROCESS = 1; // 处理中
- const STATUS_SUCCESS = 2; // 成功
- const STATUS_FAIL = 3; // 失败
- const STATUS_USER = 4; // 待用户提交凭证
- const STATUS_AUDIT = 5; //待人工审核
- const STATUS_CANCEL = 6; //已撤回
- public static string $MODEL = PaymentOrder::class;
- /**
- * @description: 模型
- * @return {string}
- */
- public static function model(): string
- {
- return PaymentOrder::class;
- }
- /**
- * @description: 枚举
- * @return {*}
- */
- public static function enum(): string
- {
- return '';
- }
- /**
- * @description: 获取查询条件
- * @param {array} $search 查询内容
- * @return {array}
- */
- public static function getWhere(array $search = []): array
- {
- $where = [];
- if (isset($search['member_id']) && !empty($search['member_id'])) {
- $where[] = ['payment_orders.member_id', '=', $search['member_id']];
- }
- if (isset($search['channel']) && !empty($search['channel'])) {
- if ($search['channel'] == 'rgcz') {
- $search['type'] = 3;
- }
- $where[] = ['payment_orders.channel', '=', $search['channel']];
-
- }
- if (isset($search['type']) && !empty($search['type'])) {
- $where[] = ['payment_orders.type', '=', $search['type']];
- }
- if (isset($search['order_no']) && !empty($search['order_no'])) {
- $where[] = ['payment_orders.order_no', '=', $search['order_no']];
- }
- if (isset($search['id']) && !empty($search['id'])) {
- $where[] = ['payment_orders.id', '=', $search['id']];
- }
- if (isset($search['status']) && $search['status'] != '') {
- $where[] = ['payment_orders.status', '=', $search['status']];
- }
- if (isset($search['first_name']) && !empty($search['first_name'])) {
- $where[] = ['users.first_name', 'like', "%" . $search['first_name'] . "%"];
- }
- if (isset($search['payment_type']) && $search['payment_type'] != '') {
- $where[] = ['payment_orders.payment_type', '=', $search['payment_type']];
- }
- return $where;
- }
- /**
- * @description: 查询单条数据
- * @param array $search
- * @return \App\Models\Coin|null
- */
- public static function findOne(array $search): ?PaymentOrder
- {
- return static::$MODEL::where(self::getWhere($search))->first();
- }
- /**
- * @description: 查询所有数据
- * @param array $search
- * @return \Illuminate\Database\Eloquent\Collection
- */
- public static function findAll(array $search = [])
- {
- return static::$MODEL::where(self::getWhere($search))->get();
- }
- /**
- * @description: 分页查询
- * @param array $search
- * @return array
- */
- public static function paginate(array $search = [])
- {
- $limit = isset($search['limit']) ? $search['limit'] : 15;
- $paginator = static::$MODEL::where(self::getWhere($search))
- ->join('users', 'users.member_id', '=', 'payment_orders.member_id')
- ->select("payment_orders.*", "users.first_name","users.admin_note as user_admin_note") // 提前查好需要的字段
- ->orderByDesc('payment_orders.created_at')
- ->paginate($limit);
- $totalAmount = 0;
- $totalSuccess = 0;
- $totalFail = 0;
- $list = $paginator->items();
- foreach ($list as $item) {
- $item['amount'] = floatval($item['amount']);
- $totalAmount += $item['amount'];
- if (in_array($item['status'], [1, 2])) $totalSuccess += $item['amount'];
- if ($item['status'] == 3) $totalFail += $item['amount'];
- }
- return [
- 'total' => $paginator->total(),
- 'total_amount' => $totalAmount,
- 'total_success' => $totalSuccess,
- 'total_fail' => $totalFail,
- 'data' => $list
- ];
- }
- /**
- * @description:
- * @param {*} $params
- * @return {*}
- */
- public static function submit($params = [])
- {
- $result = false;
- $msg['code'] = self::NOT;
- $msg['msg'] = '';
- // 2. 判断是否是更新
- if (!empty($params['id'])) {
- // 更新
- $info = self::findOne(['id' => $params['id']]);
- if (!$info) {
- $msg['msg'] = '数据不存在!';
- } else {
- $result = $info->update($params);
- $id = $params['id'];
- }
- } else {
- // 创建
- $result = $info = static::$MODEL::create($params);
- $id = $result->id;
- }
- if ($result) {
- $msg['code'] = self::YES;
- $msg['msg'] = '设置成功';
- $msg['key'] = $id;
- } else {
- $msg['msg'] = empty($msg['msg']) ? '操作失败' : $msg['msg'];
- }
- return $msg;
- }
- /**
- * @description: 创建代收订单
- * @param {*} $memberId
- * @param {*} $amount
- * @param {*} $paymentType 支付类型:支付宝、数字人民币
- * @return {*}
- */
- public static function createPay($memberId, $amount, $paymentType)
- {
- $result = [];
- $result['chat_id'] = $memberId;
- $result['code'] = 0;
- $result['url'] = '';
- $channel = ''; // 支付的通道
- $product = SanJinService::product();
- $max = 0;
- $min = 0;
- $rate = 0;
- $selectedProduct = null;
- $geText = '';
- foreach ($product as $k => $v) {
- if ($v['type'] == $paymentType) {
- $selectedProduct = $v;
- if ($v['type'] == 'zfbge') {
- if (in_array($amount, $v['fixed'])) {
- $channel = $k;
- } else {
- $geText .= "❌ 此充值通道固定充值金额为" . implode(',', $v['fixed']) . "请务必输入区间金额!";
- }
- } else {
- if ($amount >= $v['min'] && $amount <= $v['max']) {
- $channel = $k;
- $rate = $v['rate'];
- }
- if ($min == 0) {
- $min = $v['min'];
- }
- if ($max == 0) {
- $max = $v['max'];
- }
- if ($min > $v['min']) {
- $min = $v['min'];
- }
- if ($max < $v['max']) {
- $max = $v['max'];
- }
- }
- }
- }
- // 没有找到支付通道
- if (empty($channel) && !JdPayService::isChannel($paymentType)) {
- // $text = "发起充值失败 \n";
- // $text .= "最低充值:" . $min . " \n";
- // $text .= "最高充值:" . $max . " \n";
- // $text .= "请重新填写充值的金额!";
- $text = "❌ 此充值通道充值金额{$min}-{$max}请务必输入区间金额!";
- $result['text'] = $text;
- if ($geText) {
- $result['text'] = $geText;
- }
- $result['code'] = 20001;
- return $result;
- }
- if (JdPayService::isChannel($paymentType) || JdPayService::isChannel($channel)) {
- $channel = JdPayService::CHANNEL;
- $bankName = $selectedProduct['name'] ?? 'JD钱包';
- $data = [];
- $data['type'] = self::TYPE_PAY;
- $data['member_id'] = $memberId;
- $data['amount'] = JdPayService::amount($amount);
- $data['channel'] = $channel;
- $data['fee'] = $amount * $rate;
- $data['bank_name'] = $bankName;
- $order_no = self::createOrderNo('jd' . $data['type'] . '_', $memberId);
- $data['order_no'] = $order_no;
- $data['callback_url'] = JdPayService::getNotifyUrl();
- $data['remark'] = '充值费率:' . $rate;
- $data['status'] = self::STATUS_STAY;
- $ret = JdPayService::pay($amount, $order_no);
- Log::channel('payment')->info('JD支付发起', $ret);
- if (($ret['code'] ?? 0) == 200) {
- $item = $ret['data'] ?? [];
- $payUrl = $item['url'] ?? '';
- $data['status'] = self::STATUS_PROCESS;
- $data['pay_no'] = $item['orderNo'] ?? '';
- $data['pay_url'] = $payUrl;
- $data['pay_data'] = json_encode($ret, JSON_UNESCAPED_UNICODE);
- static::$MODEL::create($data);
- if ($payUrl) {
- $result['image'] = asset(self::createPaymentQrCode($payUrl));
- }
- $text = "{$bankName}充值确认 \n";
- $text .= "请使用浏览器扫码或者复制支付地址到浏览器打开 \n";
- $text .= "支付地址:{$payUrl}\n";
- $text .= "支付金额:" . $amount . " RMB \n";
- $text .= "请按实际支付金额进行付款,否则影响到账 \n";
- $text .= "支付完成后请耐心等待,支付到账会第一时间通知您! \n";
- $result['text'] = $text;
- $result['url'] = $payUrl;
- } else {
- $result['text'] = $ret['message'] ?? 'JD支付发起失败';
- $result['code'] = 20002;
- }
- return $result;
- }
- $data = [];
- $data['type'] = self::TYPE_PAY;
- $data['member_id'] = $memberId;
- $data['amount'] = $amount;
- $data['channel'] = $channel;
- $data['fee'] = $amount * $rate;
- $data['bank_name'] = SanJinService::getChannel($paymentType) ?? '';
- $order_no = self::createOrderNo('sj' . $data['type'] . '_', $memberId);
- $data['order_no'] = $order_no;
- $data['callback_url'] = SanJinService::getNotifyUrl();
- $data['remark'] = '充值费率:' . $rate;
- $data['status'] = self::STATUS_STAY;
- $ret = SanJinService::pay(($amount * 100), $order_no, $channel);
- Log::error('三斤支付发起:', $ret);
- if ($ret['code'] == 0) {
- $qrCode = asset(self::createPaymentQrCode($ret['data']['payUrl']));
- $result['image'] = $qrCode;
- $item = $ret['data'];
- $data['status'] = self::STATUS_PROCESS;
- $data['pay_no'] = $item['tradeNo'];
- $data['pay_url'] = $item['payUrl'];
- $data['pay_data'] = json_encode($ret, JSON_UNESCAPED_UNICODE);
- $info = static::$MODEL::create($data);
- // $text = "✅ 支付提示 \n";
- $text = "{$data['bank_name']}充值确认 \n";
- // $text .= "支付方式:{$data['bank_name']} \n";
- $text .= "请使用浏览器扫码或者复制支付地址到浏览器打开 \n";
- $text .= "支付地址:{$ret['data']['payUrl']}\n";
- $text .= "支付金额:" . $amount . " RMB \n";
- $text .= "请按实际支付金额进行付款,否则影响到账 \n";
- $text .= "支付完成后请耐心等待,支付到账会第一时间通知您! \n";
- $result['text'] = $text;
- $result['url'] = $ret['data']['payUrl'];
- } else {
- $result['text'] = $ret['message'];
- $result['code'] = 20002;
- }
- return $result;
- }
- /**
- * @description: 接收支付的通知
- * @param {*} $params
- * @return {*}
- */
- public static function receivePay($params)
- {
- if (($params['userCode'] ?? '') === JdPayService::getMerchantId()) {
- $info = self::findOne(['order_no' => $params['orderCode'] ?? ''])
- ?: static::$MODEL::where('pay_no', $params['orderCode'] ?? '')->first();
- if (!$info || $info->type != self::TYPE_PAY) {
- return false;
- }
- if (!JdPayService::verifyPayNotify($params)) {
- return false;
- }
- if (bccomp(JdPayService::amount($info->amount), JdPayService::amount($params['amount'] ?? 0), 2) !== 0) {
- return false;
- }
- if ($info->status != self::STATUS_PROCESS) {
- return true;
- }
- $info->callback_data = json_encode($params, JSON_UNESCAPED_UNICODE);
- $info->state = $params['status'];
- if ((string)$params['status'] === JdPayService::PAY_STATUS_SUCCESS) {
- $info->status = self::STATUS_SUCCESS;
- $wallet = WalletService::findOne(['member_id' => $info->member_id]);
- $balance = $wallet->available_balance;
- $available_balance = bcadd($balance, JdPayService::amount($info->amount), 10);
- $wallet->available_balance = $available_balance;
- $wallet->save();
- BalanceLogService::addLog($info->member_id, $info->amount, $balance, $available_balance, '三方充值', $info->id, '');
- self::rechargesBibiReturn($info->member_id, $info->amount, $info->id);
- $text = "✅ 支付成功 \n";
- $text .= "充值金额:{$info->amount} RMB \n";
- $text .= "订单号:{$info->order_no} \n";
- $text .= "您充值的金额已到账,请注意查收!";
- self::sendMessage($info->member_id, $text);
- } elseif ((string)$params['status'] === JdPayService::PAY_STATUS_FAIL) {
- $info->status = self::STATUS_FAIL;
- }
- $info->save();
- return true;
- }
- // 判断商户号
- if (($params['mchId'] ?? '') == SanJinService::getMerchantId()) {
- $must = ['mchId', 'productId', 'tradeNo', 'outTradeNo', 'amount', 'payAmount', 'state', 'createTime', 'payTime'];
- $info = self::findOne(['order_no' => $params['outTradeNo']]);
- if ($info) {
- // 平台以分计算转成元
- $payAmount = $params['payAmount'] / 100;
- // 判断金额是不是正确认
- if ($info->amount != $payAmount) {
- $text = '❌ 支付失败提醒 \n';
- $text .= "订单金额:{$info->amount} \n";
- $text .= "实际支付:{$payAmount} \n";
- $text .= "订单号:{$params['outTradeNo']} \n";
- $text .= "失败原因:支付金额与订单金额不一致 \n";
- $text .= "请联系客服处理!";
- self::sendMessage($info->member_id, $text);
- return false;
- }
- if ($params['sign'] != SanJinService::signature($params, $must)) {
- return false;
- }
- if ($info->status != self::STATUS_PROCESS) {
- return false;
- }
- // 付款
- if ($info->type == self::TYPE_PAY) {
- $info->state = $params['state'];
- if ($params['state'] == 1) {
- $info->status = self::STATUS_SUCCESS;
- $wallet = WalletService::findOne(['member_id' => $info->member_id]);
- $balance = $wallet->available_balance;
- $available_balance = bcadd($balance, $payAmount, 10);
- $wallet->available_balance = $available_balance;
- $wallet->save();
- // 记录余额变动日志
- BalanceLogService::addLog($info->member_id, $payAmount, $balance, $available_balance, '三方充值', $info->id, '');
- self::rechargesBibiReturn($info->member_id, $payAmount, $info->id);
- $text = "✅ 支付成功 \n";
- $text .= "充值金额:{$payAmount} RMB \n";
- $text .= "订单号:{$params['outTradeNo']} \n";
- $text .= "您充值的金额已到账,请注意查收!";
- self::sendMessage($info->member_id, $text);
- } else {
- $info->status = self::STATUS_FAIL;
- $text = "❌ 支付失败 \n";
- $text .= "充值金额:{$payAmount} RMB \n";
- $text .= "订单号:{$params['outTradeNo']} \n";
- }
- $info->save();
- return true;
- }
- }
- }
- }
- // 充值笔笔返
- public static function rechargesBibiReturn($memberId,$payAmount,$info_id)
- {
- $rate = ConfigService::getVal('recharges_bibi_return');
- $amount = $payAmount * $rate;
- if($rate > 0){
- $wallet = WalletService::findOne(['member_id' => $memberId]);
- $balance = $wallet->available_balance;
- $available_balance = bcadd($balance, $amount, 10);
- $wallet->available_balance = $available_balance;
- $wallet->save();
- BalanceLogService::addLog($memberId, $amount, $balance, $available_balance, '优惠活动', $info_id, '充值笔笔返');
- }
- }
- /**
- * 拒绝提现
- * @description 改变订单状态为失败,将金额退给用户,并记录提现退款的资金日
- * @param int $orderId 订单ID PaymentOrder 表的ID
- * @param string $remark 失败原因
- * @return array
- */
- public static function withdrawalFailed($orderId, $remark): array
- {
- try {
- $order = PaymentOrder::where('id', $orderId)
- ->where('type', 2)
- ->where('status', self::STATUS_STAY)
- ->first();
- if (!$order) throw new Exception("订单不存在_{$orderId}", HttpStatus::CUSTOM_ERROR);
- // 更新提现记录状态为失败
- $order->status = self::STATUS_FAIL;
- $order->remark = $remark;
- if (!$order->save()) {
- throw new Exception("更新失败,请重试", HttpStatus::CUSTOM_ERROR);
- }
- //钱包余额增加
- $wallet = WalletService::findOne(['member_id' => $order->member_id]);
- $beforeBalance = $wallet->available_balance;
- $availableBalance = bcadd($wallet->available_balance, $order->amount, 10);
- $wallet->available_balance = $availableBalance;
- if (!$wallet->save()) {
- throw new Exception("更新失败,请重试", HttpStatus::CUSTOM_ERROR);
- }
- // 记录退款日志
- BalanceLogService::addLog($order->member_id, $order->amount, $beforeBalance, $availableBalance, '三方提现', $order->id, '提现失败退款');
- } catch (Exception $e) {
- return ['code' => HttpStatus::CUSTOM_ERROR, 'msg' => $e->getMessage()];
- }
- return ['code' => 0, 'msg' => 'ok'];
- }
- /**
- * 创建代付订单 (根据 orderId 将钱转到用户指定账户)
- * @param int $orderId PaymentOrder 表的ID
- */
- public static function createPayout(int $orderId): array
- {
- try {
- $order = PaymentOrder::where('id', $orderId)
- ->where('type', 2)
- ->where('status', self::STATUS_STAY)
- ->first();
- if (!$order) throw new Exception("订单不存在_{$orderId}", HttpStatus::CUSTOM_ERROR);
- $amount = $order->amount;
- $amount = number_format($amount, 2, '.', '');
- if (JdPayService::isChannel($order->channel)) {
- self::assertJdBalanceEnough($amount);
- $ret = JdPayService::remit($amount, $order->order_no, $order->card_no);
- Log::channel('payment')->info('JD下发接口调用', $ret);
- if (($ret['code'] ?? 0) != 200) {
- throw new Exception($ret['message'] ?? 'JD下发失败', HttpStatus::CUSTOM_ERROR);
- }
- $order->pay_no = $ret['data']['orderNo'] ?? '';
- $order->pay_data = json_encode($ret, JSON_UNESCAPED_UNICODE);
- } else {
- $ret = QianBaoService::payout($amount, $order->order_no, $order->bank_name, $order->account, $order->card_no);
- Log::error('第三方代付接口调用:' . json_encode($ret, JSON_UNESCAPED_UNICODE));
- if ($ret['code'] != 200) throw new Exception($ret['msg'], HttpStatus::CUSTOM_ERROR);
- }
- $order->status = self::STATUS_PROCESS;
- $order->save();
- } catch (Exception $e) {
- return ['code' => HttpStatus::CUSTOM_ERROR, 'msg' => $e->getMessage()];
- }
- return ['code' => 0, 'msg' => 'ok'];
- }
- /**
- * @description: 创建代付订单 (自动直接到账,包括用户钱包的扣款和提现记录的生成以及余额日志的创建)
- * @param {*} $memberId 会员ID
- * @param {*} $amount 代付金额
- * @param {*} $channel 提现通道 DF001 支付宝转卡/DF002 支付宝转支付宝
- * @param {*} $bank_name 银行名称/支付宝
- * @param {*} $account 姓名
- * @param {*} $card_no 银行卡号/支付宝账号
- * @return {*}
- */
- public static function autoCreatePayout($memberId, $amount, $channel, $bank_name, $account, $card_no)
- {
- $default_amount = $amount;
- $result = [];
- $result['chat_id'] = $memberId;
- if ($amount < 100) {
- $result['text'] = '提现金额最少100';
- return $result;
- }
- if ($amount > 49999) {
- $result['text'] = '提现金额最多49999';
- return $result;
- }
- // 在调用三方支付前开始事务
- DB::beginTransaction();
- try {
- $wallet = WalletService::findOne(['member_id' => $memberId]);
- if (!$wallet) {
- $result['text'] = '钱包不存在!';
- return $result;
- }
- $balance = $wallet->available_balance;
- if (bccomp($balance, $amount, 2) < 0) {
- $result['text'] = '您的钱包余额不足!';
- return $result;
- }
- $available_balance = bcsub($balance, $amount, 10);
- $data = [];
- $data['type'] = self::TYPE_PAYOUT;
- $order_no = self::createOrderNo('sj' . $data['type'] . '_', $memberId);
- $data['order_no'] = $order_no;
- $data['member_id'] = $memberId;
- $data['fee'] = $amount * 0.002 + 2;
- $amount = number_format($amount, 2, '.', '');
- $data['amount'] = $amount;
- $data['channel'] = $channel;
- $data['bank_name'] = $bank_name;
- $data['account'] = $account;
- $data['card_no'] = $card_no;
- $data['callback_url'] = JdPayService::isChannel($channel) ? JdPayService::getRemitNotifyUrl() : QianBaoService::getNotifyUrl();
- $data['status'] = self::STATUS_STAY;
- $data['remark'] = '提现费率:0.2%+2';
- // 先预扣款(锁定资金)
- $wallet->available_balance = $available_balance;
- if (!$wallet->save()) {
- DB::rollBack();
- $result['text'] = '钱包更新失败!';
- return $result;
- }
- // 创建待处理状态的提现记录
- $info = static::$MODEL::create($data);
- $id = $info->id;
- // 记录余额变动日志
- BalanceLogService::addLog($memberId, $default_amount * -1, $balance, $available_balance, '三方提现', $id, '钱宝提现费率:0.2%+2');
- // 提交事务,确保预扣款成功
- DB::commit();
- } //
- catch (Exception $e) {
- // 预扣款失败,回滚事务
- DB::rollBack();
- $result['text'] = '系统繁忙,请稍后重试!';
- Log::error('提现预扣款失败: ' . $e->getMessage(), [
- 'member_id' => $memberId,
- 'amount' => $amount
- ]);
- return $result;
- }
- // 调用三方支付接口(在事务外)
- if (JdPayService::isChannel($channel)) {
- try {
- self::assertJdBalanceEnough($amount);
- $ret = JdPayService::remit($amount, $order_no, $card_no);
- Log::channel('payment')->info('JD下发接口调用', $ret);
- $success = (($ret['code'] ?? 0) == 200);
- $failureMessage = $ret['message'] ?? 'JD下发失败';
- } catch (Exception $e) {
- $ret = ['message' => $e->getMessage()];
- $success = false;
- $failureMessage = $e->getMessage();
- }
- } else {
- $ret = QianBaoService::payout($amount, $order_no, $bank_name, $account, $card_no);
- Log::error('第三方代付接口调用:' . json_encode($ret, JSON_UNESCAPED_UNICODE));
- $success = (($ret['code'] ?? 0) == 200);
- $failureMessage = $ret['msg'] ?? '代付失败';
- }
- if ($success) {
- // 更新提现记录状态为处理中
- DB::beginTransaction();
- try {
- $info->status = self::STATUS_PROCESS;
- if (JdPayService::isChannel($channel)) {
- $info->pay_no = $ret['data']['orderNo'] ?? '';
- $info->pay_data = json_encode($ret, JSON_UNESCAPED_UNICODE);
- }
- $info->save();
- DB::commit();
- $text = "✅ 提现申请已提交!\n\n";
- $text .= "钱包余额:{$available_balance} RMB\n";
- $text .= "提现金额:{$default_amount} RMB\n";
- $text .= "⌛️请等待系统处理, 到账时间可能需要几分钟!\n";
- $result['text'] = $text;
- } catch (Exception $e) {
- DB::rollBack();
- // 状态更新失败,但资金已扣款且三方支付已成功
- // 这里可以记录告警,需要人工干预
- Log::error('提现状态更新失败: ' . $e->getMessage(), [
- 'member_id' => $memberId,
- 'order_no' => $order_no
- ]);
- $result['text'] = '提现申请已提交,系统处理中...';
- }
- } //
- else {
- // 三方支付失败,需要回滚之前的预扣款
- DB::beginTransaction();
- try {
- // 恢复钱包余额
- $wallet->available_balance = $balance;
- $wallet->save();
- // 更新提现记录状态为失败
- $info->status = self::STATUS_FAIL;
- $info->remark = $failureMessage;
- $info->save();
- // 记录退款日志
- BalanceLogService::addLog($memberId, $default_amount, $available_balance, $balance, '三方提现', $id, '提现失败退款');
- DB::commit();
- $result['text'] = $failureMessage;
- } catch (Exception $e) {
- DB::rollBack();
- // 回滚失败,需要记录告警,人工干预
- Log::error('提现失败回滚异常: ' . $e->getMessage(), [
- 'member_id' => $memberId,
- 'order_no' => $order_no,
- 'amount' => $amount
- ]);
- $result['text'] = '提现失败,请联系客服处理退款!';
- }
- }
- return $result;
- }
- /**
- * @description: 接收三方订单
- * @param {*} $params
- * @return {*}
- */
- public static function receiveOrder($params)
- {
- if (($params['userCode'] ?? '') === JdPayService::getMerchantId()) {
- $info = self::findOne(['order_no' => $params['customerOrderCode'] ?? ''])
- ?: static::$MODEL::where('pay_no', $params['orderCode'] ?? '')->first();
- if (!$info || $info->type != self::TYPE_PAYOUT) {
- return false;
- }
- if (!JdPayService::verifyRemitNotify($params)) {
- return false;
- }
- if (bccomp(JdPayService::amount($info->amount), JdPayService::amount($params['amount'] ?? 0), 2) !== 0) {
- return false;
- }
- self::onSubmitJdPayout($params, $info);
- return true;
- }
- // 判断商户号是否一致
- if (($params['merchantNum'] ?? '') == QianBaoService::getMerchantId()) {
- $info = self::findOne(['order_no' => $params['orderNo']]);
- if ($info) {
- // 判断金额是不是正确认
- if ($info->amount != $params['amount']) {
- return false;
- }
- // 验证签名
- $sign = QianBaoService::verifyNotifySign($params['state'], $params['orderNo'], $params['amount']);
- if ($params['sign'] != $sign) {
- return false;
- }
- // 代付
- if ($info->type == self::TYPE_PAYOUT) {
- self::onSubmitPayout($params, $info);
- }
- // 代收
- if ($info->type == self::TYPE_PAY) {
- }
- }
- }
- }
- /**
- * @description: 处理代付订单
- * @param {*} $params
- * @return {*}
- */
- public static function onSubmitJdPayout($params, $info)
- {
- if ($info->status != self::STATUS_PROCESS) {
- return;
- }
- $memberId = $info->member_id;
- $amount = JdPayService::amount($params['amount'] ?? $info->amount);
- $data = [];
- $chat_id = $info->member_id;
- $data['callback_data'] = json_encode($params, JSON_UNESCAPED_UNICODE);
- DB::beginTransaction();
- try {
- if ((string)$params['status'] === JdPayService::REMIT_STATUS_SUCCESS) {
- $data['status'] = self::STATUS_SUCCESS;
- $res = static::$MODEL::where(['id' => $info->id])->update($data);
- if ($res) {
- $text = "✅ 提现通知 \n";
- $text .= "提现平台:{$info->bank_name} \n";
- $text .= "收款人:{$info->account} \n";
- $text .= "收款地址:{$info->card_no} \n";
- $text .= "提现金额:{$info->amount} \n";
- $text .= "提现成功,金额已到账,请注意查收!";
- self::sendMessage($chat_id, $text);
- }
- } elseif ((string)$params['status'] === JdPayService::REMIT_STATUS_FAIL) {
- $data['status'] = self::STATUS_FAIL;
- $res = static::$MODEL::where(['id' => $info->id])->update($data);
- $wallet = WalletService::findOne(['member_id' => $info->member_id]);
- $balance = $wallet->available_balance;
- $available_balance = bcadd($balance, $amount, 10);
- $wallet->available_balance = $available_balance;
- $wallet->save();
- BalanceLogService::addLog($memberId, $amount, $balance, $available_balance, '三方提现', $info->id, '提现失败退款');
- if ($res) {
- $text = "❌ 提现通知 \n";
- $text .= "提现平台:{$info->bank_name} \n";
- $text .= "收款人:{$info->account} \n";
- $text .= "收款地址:{$info->card_no} \n";
- $text .= "提现金额:{$info->amount} \n";
- $text .= "提现失败,金额已返回钱包,请注意查收!";
- self::sendMessage($chat_id, $text);
- }
- }
- DB::commit();
- } catch (Exception $e) {
- DB::rollBack();
- Log::error('JD提现回调处理异常: ' . $e->getMessage(), $params);
- }
- }
- public static function onSubmitPayout($params, $info)
- {
- $memberId = $info->member_id;
- $amount = $params['amount'];
- $data = [];
- $result = [];
- $chat_id = $info->member_id;
- $data['callback_data'] = json_encode($params, JSON_UNESCAPED_UNICODE);
- DB::beginTransaction();
- try {
- if ($params['state'] == 1) {
- $data['status'] = self::STATUS_SUCCESS;
- $res = static::$MODEL::where(['order_no' => $params['orderNo']])->update($data);
- if ($res) {
- $text = "✅ 提现通知 \n";
- $text .= "提现平台:{$info->bank_name} \n";
- $text .= "收款人:{$info->account} \n";
- $text .= "收款卡号:{$info->card_no} \n";
- $text .= "提现金额:{$info->amount} \n";
- $text .= "提现成功,金额已到账,请注意查收!";
- self::sendMessage($chat_id, $text);
- }
- } else {
- $data['status'] = self::STATUS_FAIL;
- $res = static::$MODEL::where(['order_no' => $params['orderNo']])->update($data);
- $wallet = WalletService::findOne(['member_id' => $info->member_id]);
- $balance = $wallet->available_balance; // 钱包当前余额
- $available_balance = bcadd($balance, $params['amount'], 10);
- $wallet->available_balance = $available_balance;
- $wallet->save();
- // 记录退款日志
- BalanceLogService::addLog($memberId, $amount, $balance, $available_balance, '三方提现', $info->id, '提现失败退款');
- if ($res) {
- $text = "❌ 提现通知 \n";
- $text .= "提现平台:{$info->bank_name} \n";
- $text .= "收款人:{$info->account} \n";
- $text .= "收款卡号:{$info->card_no} \n";
- $text .= "提现金额:{$info->amount} \n";
- $text .= "提现失败,金额已返回钱包,请注意查收!";
- self::sendMessage($chat_id, $text);
- }
- }
- DB::commit();
- } catch (Exception $e) {
- DB::rollBack();
- // 回滚失败,需要记录告警,人工干预
- Log::error('提现失败回滚异常: ' . $e->getMessage(), $params);
- }
- }
- /**
- * @description: 查询支付订单
- * @param {*} $id
- * @return {*}
- */
- public static function singlePayOrder($id)
- {
- $msg = [];
- $msg['code'] = self::NOT;
- $info = self::findOne(['id' => $id]);
- if ($info && $info->status == self::STATUS_PROCESS) {
- if (JdPayService::isChannel($info->channel)) {
- $ret = JdPayService::queryPayOrder($info->pay_no ?? '', $info->order_no);
- Log::channel('payment')->info('JD支付查询订单', $ret);
- if (($ret['code'] ?? 0) == 200) {
- $item = $ret['data'] ?? [];
- if ((string)($item['status'] ?? '') === JdPayService::PAY_STATUS_SUCCESS) {
- $info->status = self::STATUS_SUCCESS;
- $info->state = $item['status'];
- $info->callback_data = json_encode($ret, JSON_UNESCAPED_UNICODE);
- $info->save();
- $wallet = WalletService::findOne(['member_id' => $info->member_id]);
- $balance = $wallet->available_balance;
- $available_balance = bcadd($balance, $info->amount, 10);
- $wallet->available_balance = $available_balance;
- $wallet->save();
- BalanceLogService::addLog($info->member_id, $info->amount, $balance, $available_balance, '三方充值', $info->id, '');
- self::rechargesBibiReturn($info->member_id, $info->amount, $info->id);
- $msg['code'] = self::YES;
- $msg['msg'] = '支付成功';
- } else {
- $msg['msg'] = '支付中';
- }
- } else {
- $msg['msg'] = '查询失败:' . ($ret['message'] ?? '');
- }
- return $msg;
- }
- $ret = SanJinService::queryOrder($info->order_no);
- Log::error('三斤支付查询订单:', $ret);
- if ($ret['code'] == 0) {
- $item = [];
- $item['state'] = $ret['data']['state'];
- if ($ret['data']['state'] == 1) {
- $item['status'] = self::STATUS_SUCCESS;
- $info->update($item);
- $wallet = WalletService::findOne(['member_id' => $info->member_id]);
- $balance = $wallet->available_balance;
- $available_balance = bcadd($balance, $info->amount, 10);
- $wallet->available_balance = $available_balance;
- $wallet->save();
- // 记录余额变动日志
- BalanceLogService::addLog($info->member_id, $info->amount, $balance, $available_balance, '三方充值', $info->id, '');
- $msg['code'] = self::YES;
- $msg['msg'] = '支付成功';
- } else {
- $msg['msg'] = '支付中';
- }
- } else {
- $msg['msg'] = '查询失败:' . $ret['message'];
- }
- } else {
- $msg['msg'] = '该状态无法查询';
- }
- return $msg;
- }
- private static function assertJdBalanceEnough($amount): void
- {
- $ret = JdPayService::balance();
- Log::channel('payment')->info('JD余额查询', $ret);
- if (($ret['code'] ?? 0) != 200) {
- throw new Exception($ret['message'] ?? 'JD余额查询失败', HttpStatus::CUSTOM_ERROR);
- }
- $balance = $ret['data']['balance'] ?? null;
- if ($balance === null || bccomp((string)$balance, JdPayService::amount($amount), 2) < 0) {
- throw new Exception('JD商户余额不足', HttpStatus::CUSTOM_ERROR);
- }
- }
- public static function syncPayOrder()
- {
- $list = static::$MODEL::where('state', 0)->where('type', self::TYPE_PAY)->take(100)->get();
- // foreach($list->toArray() as $k => $v){
- // $item= [];
- // if($v['status'] == self::STATUS_SUCCESS){
- // $item['state'] = 1;
- // static::$MODEL::where(['id'=>$v['id']])->update($item);
- // }else{
- // $ret = SanJinService::queryOrder($v['order_no']);
- // var_dump($ret);
- // if($ret['code'] == 0){
- // $item['state'] = $ret['data']['state'];
- // static::$MODEL::where(['id'=>$v['id']])->update($item);
- // }
- // }
- // }
- }
- }
|