feat : check

This commit is contained in:
2025-04-01 18:06:10 +08:00
parent 9c91902166
commit 8f519262fd
2 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ class RefundGoodOrderFinishStatementListener implements ListenerInterface
public function listen(): array public function listen(): array
{ {
return [ return [
// RefundGoodOrderFinishEvent::class, RefundGoodOrderFinishEvent::class,
]; ];
} }
@@ -114,7 +114,7 @@ class RefundGoodOrderFinishStatementListener implements ListenerInterface
$skuIds = $this->orderGoodModel->whereIn('id',$refundOrderGoodIds)->pluck('quantity','sku_id')->toArray(); $skuIds = $this->orderGoodModel->whereIn('id',$refundOrderGoodIds)->pluck('quantity','sku_id')->toArray();
//todo first
} }
private function rollBackFinancesData(): void private function rollBackFinancesData(): void

View File

@@ -76,7 +76,7 @@ class FinishService extends BaseService
]); ]);
$this->producer->produce($financesMessage); $this->producer->produce($financesMessage);
//
return $this->return->success(); return $this->return->success();
} }