refactor(admin): 重构前置订单中的会员价格获取逻辑

- 注释掉了原有的根据用户分组获取产品价格的代码
- 修改为直接从 StoreProduct 模型中获取产品的 vip_price 字段
- 使用 withTrashed() 方法以包含软删除的产品
- 优化了代码结构,提高了代码的可读性和维护性
This commit is contained in:
mkm 2025-03-05 17:44:21 +08:00
parent a3e1660e45
commit 3060fa4323

View File

@ -424,11 +424,11 @@ class BeforehandOrderLogic extends BaseLogic
$res = WarehouseOrder::create($arr);
$totalPrice = '0.00';
foreach ($info as $key => $arr) {
if ($user_ship == 0) {
$price = 0;
} else {
$price = StoreProductGroupPrice::where('product_id', $arr['product_id'])->where('group_id', $user_ship)->value('price') ?? 0;
}
// if ($user_ship == 0) {
// $price = 0;
// } else {
// $price = StoreProductGroupPrice::where('product_id', $arr['product_id'])->where('group_id', $user_ship)->value('price') ?? 0;
// }
$data = [
'warehouse_id' => $warehouse_id,
'product_id' => $arr['product_id'],
@ -441,7 +441,7 @@ class BeforehandOrderLogic extends BaseLogic
'admin_id' => $admin_id,
'total_price' => $arr['total_price'],
'price' => $arr['price'],
'vip_price' => $price,
'vip_price' => StoreProduct::where('id',$arr['product_id'])->withTrashed()->value('vip_price') ?? 0,
'purchase' => $arr['purchase'],
'oid' => $res['id'],
'code' => $res['code'],