diff --git a/app/admin/logic/beforehand_order/BeforehandOrderLogic.php b/app/admin/logic/beforehand_order/BeforehandOrderLogic.php index a92fd526..b421c5ca 100644 --- a/app/admin/logic/beforehand_order/BeforehandOrderLogic.php +++ b/app/admin/logic/beforehand_order/BeforehandOrderLogic.php @@ -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'],