添加注释

This commit is contained in:
luofei 2024-02-07 14:57:13 +08:00
parent fa89daa631
commit 11720f7a35

View File

@ -1171,14 +1171,18 @@ class StoreRefundOrderRepository extends BaseRepository
//退还赠送积分
$this->refundGiveIntegral($refundOrder);
//退用户使用的红包
if ($refundOrder['refund_consumption'] > 0) {
(new StoreConsumptionUserDao())->refundByOrder($refundOrder);
}
//活动订单撤销
(new StoreActivityOrderDao())->repeal($refundOrder->order->group_order_id);
//退商户、服务团队的佣金
(new CommissionDao())->refundByOrder($refundOrder);
//退供应链订单
(new StoreOrderOtherDao())->refund($refundOrder);
$productIds = CloudProduct::where('activity_id', 2)->column('product_id');