fix(api): 修复演示逻辑中产品查询

- 在 DemoLogic 中,将 StoreProduct 查询修改为包含软删除的产品
- 使用 withTrashed() 方法确保可以获取到所有产品,包括已软删除的
This commit is contained in:
mkm 2025-02-03 15:42:39 +08:00
parent ffd5fa44c4
commit b793ace840

View File

@ -121,7 +121,7 @@ class DemoLogic extends BaseLogic
$cartInfo = BeforehandOrderCartInfo::where('bhoid', $params['id'])->select()->toArray();
$productIds = array_column($cartInfo, 'product_id');
$products = StoreProduct::whereIn('id', $productIds)->select()->toArray();
$products = StoreProduct::whereIn('id', $productIds)->withTrashed()->select()->toArray();
$products = reset_index($products, 'id');
$update = [];
foreach ($cartInfo as $v) {