Compare commits
1 Commits
main
...
mkm-patch-
Author | SHA1 | Date | |
---|---|---|---|
d02691ccd1 |
@ -968,14 +968,25 @@ class BeforehandOrderLogic extends BaseLogic
|
|||||||
$v['store_name'] = $find['store_name'];
|
$v['store_name'] = $find['store_name'];
|
||||||
$v['mark'] = $find['after_sales'];
|
$v['mark'] = $find['after_sales'];
|
||||||
if (isset($params['type']) && $params['type'] == 2) {
|
if (isset($params['type']) && $params['type'] == 2) {
|
||||||
$v['price'] = $v['vip_price']; //出库单价
|
$price = $v['cost'];
|
||||||
$v['purchase'] = $v['cost']; //高级会员单,供货价=商户价
|
$v['pay_price'] = bcmul($price, $v['nums'], 2);
|
||||||
} else {
|
} else {
|
||||||
$v['purchase'] = $v['vip_price'] > 0 ? $v['vip_price'] : $v['price']; //会员单,供货价=会员价
|
if ($v['vip_price'] > 0) {
|
||||||
|
$v['pay_price'] = bcmul($v['vip_price'], $v['nums'], 2);
|
||||||
|
$price = $v['vip_price'];
|
||||||
|
} else {
|
||||||
|
$price = StoreProductGroupPrice::where('product_id', $v['product_id'])->where('group_id', $user_ship)->value('price');
|
||||||
|
if ($price > 0) {
|
||||||
|
$v['pay_price'] = bcmul($price, $v['nums'], 2);
|
||||||
|
} else {
|
||||||
|
$price = $find['cost'];
|
||||||
|
$v['pay_price'] = bcmul($price, $v['nums'], 2);
|
||||||
|
}
|
||||||
|
WarehouseProduct::where('id', $v['id'])->update(['vip_price' => $price]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$v['total_price'] = bcmul($v['price'], $v['nums'], 2); //出库总价
|
$v['purchase'] = $price;
|
||||||
$v['pay_price'] = bcmul($v['purchase'], $v['nums'], 2); //供货总价
|
|
||||||
$v['profit'] = bcsub($v['total_price'], $v['pay_price'], 2);
|
$v['profit'] = bcsub($v['total_price'], $v['pay_price'], 2);
|
||||||
$total_profit = bcadd($total_profit, $v['profit'], 2);
|
$total_profit = bcadd($total_profit, $v['profit'], 2);
|
||||||
$pay_price = bcadd($pay_price, $v['pay_price'], 2);
|
$pay_price = bcadd($pay_price, $v['pay_price'], 2);
|
||||||
|
@ -85,7 +85,7 @@ class CartList extends BaseAdminDataLists implements ListsSearchInterface, Lists
|
|||||||
if ($off_activity == 0 && $user_ship == 5 && $product['top_cate_id'] == 15189) {
|
if ($off_activity == 0 && $user_ship == 5 && $product['top_cate_id'] == 15189) {
|
||||||
$product['price'] = $product['cost'];
|
$product['price'] = $product['cost'];
|
||||||
}
|
}
|
||||||
if ($user_ship == 4) {
|
if ($user_ship == 4 ) {
|
||||||
$product['price'] = $product['cost'];
|
$product['price'] = $product['cost'];
|
||||||
}
|
}
|
||||||
$item['goods_total_price'] = bcmul($item['cart_num'], $product['price'], 2);
|
$item['goods_total_price'] = bcmul($item['cart_num'], $product['price'], 2);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user