diff --git a/app/common/repositories/store/order/StoreRefundOrderRepository.php b/app/common/repositories/store/order/StoreRefundOrderRepository.php index 8b18bb6c..1bfc8ab6 100755 --- a/app/common/repositories/store/order/StoreRefundOrderRepository.php +++ b/app/common/repositories/store/order/StoreRefundOrderRepository.php @@ -1332,23 +1332,23 @@ class StoreRefundOrderRepository extends BaseRepository $orderType = (isset($item['presell']) && $item['presell']) ? 'presell' : 'order'; if ($item['type'] == 0) { $this->refundBill($item, $res->uid, $id); + app()->make(MerchantRepository::class)->subLockMoney($res->mer_id, $orderType, $item['id'], $refundPrice); } else { if ($item['type'] == 10) $server = WechatService::create()->combinePay(); if (in_array($item['type'], [2])) $server = MiniProgramService::create(); if (in_array($item['type'], [4, 5])) $server = AlipayService::create(); if (in_array($item['type'], [1, 3, 6])) $server = WechatService::create(); $server->payOrderRefund($item['sn'], $item['data']); - // 目前是代销模式,下单的店铺不需要退钱,由供应链退款 -// if ($item['type'] == 10) { -// $make = app()->make(StoreOrderProfitsharingRepository::class); -// if ($orderType === 'presell') { -// $make->refundPresallPrice($res, $item['data']['refund_price'], $refundPrice); -// } else { -// $make->refundPrice($res, $item['data']['refund_price'], $refundPrice); -// } -// } else { -// app()->make(MerchantRepository::class)->subLockMoney($res->mer_id, $orderType, $item['id'], $refundPrice); -// } + if ($item['type'] == 10) { + $make = app()->make(StoreOrderProfitsharingRepository::class); + if ($orderType === 'presell') { + $make->refundPresallPrice($res, $item['data']['refund_price'], $refundPrice); + } else { + $make->refundPrice($res, $item['data']['refund_price'], $refundPrice); + } + } else { + app()->make(MerchantRepository::class)->subLockMoney($res->mer_id, $orderType, $item['id'], $refundPrice); + } } } catch (Exception $e) { throw new ValidateException($e->getMessage());