Merge branch 'dev' of https://gitea.lihaink.cn/mkm/multi-store into dev
This commit is contained in:
commit
8ef42fc024
@ -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'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user