This commit is contained in:
lewis 2025-04-03 11:29:02 +08:00
commit 7ea7dde782
2 changed files with 6 additions and 0 deletions

View File

@ -85,6 +85,9 @@ class CartList extends BaseAdminDataLists implements ListsSearchInterface, Lists
if ($off_activity == 0 && $user_ship == 5 && $product['top_cate_id'] == 15189) {
$product['price'] = $product['cost'];
}
if ($user_ship == 4) {
$product['price'] = $product['cost'];
}
$item['goods_total_price'] = bcmul($item['cart_num'], $product['price'], 2);
$this->total_price = bcadd($this->total_price, $item['goods_total_price'], 2);
$item['batch'] = $product['batch'];

View File

@ -125,6 +125,9 @@ class ProductLists extends BaseApiDataLists implements ListsSearchInterface, Lis
if ($off_activity == 0 && $user_ship == 5 && $item['top_cate_id'] == 15189) {
$item['price'] = $item['cost'];
}
if ($user_ship == 4) {
$item['price'] = $item['cost'];
}
if($item['is_lack']==1){
$tag='缺货';
}