refactor(admin): 注释掉重置产品价格的代码

在 StoreProductLists 类中,注释掉了用于重置产品价格的代码块。这部分代码原本在获取产品列表后,根据用户配送方式重新计算产品价格。现在这部分功能已被暂时禁用。
This commit is contained in:
mkm 2024-12-16 14:49:22 +08:00
parent 0ebe7712fd
commit 41d1435c5a

View File

@ -139,9 +139,9 @@ class StoreProductLists extends BaseAdminDataLists implements ListsSearchInterfa
}
return $item;
})?->toArray();
if ($userShip > 0 && $userShip != 4) {
$list = StoreProductGroupPrice::resetProductsPrice($list, $userShip);
}
// if ($userShip > 0 && $userShip != 4) {
// $list = StoreProductGroupPrice::resetProductsPrice($list, $userShip);
// }
return $list;
}