This commit is contained in:
lewis 2025-03-06 11:20:09 +08:00
commit 8ef42fc024

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'],