修改收银台商品价格计算

This commit is contained in:
DESKTOP-GMUNQ1B\Administrator 2024-12-06 16:42:48 +08:00
parent 9f68846caf
commit ae0d8dda99

View File

@ -882,16 +882,12 @@ class OrderLogic extends BaseLogic
}
//开启活动或用户身份为 商户、酒店、食堂 展示成本价(即商户价)
//目前已修改为 商品分组报价,根据用户组展示对应的价格
if ($offActivity == 1 || ($user != null && in_array($user['user_ship'], [4, 6, 7]))) {
$price = $product['cost'];
} else {
$price = $product['price'];
//单门店活动判断
if ($storeId == getenv('ACTIVITY_STORE_ID')) {
$storeBranchPrice = StoreBranchProduct::where('store_id', getenv('ACTIVITY_STORE_ID'))->where('product_id', $product['id'])->value('price');
if ($storeBranchPrice) {
$price = $storeBranchPrice;
}
if ($storeId == getenv('ACTIVITY_STORE_ID')) {
$storeBranchPrice = StoreBranchProduct::where('store_id', getenv('ACTIVITY_STORE_ID'))->where('product_id', $product['id'])->value('price');
if ($storeBranchPrice) {
$price = $storeBranchPrice;
}
}
if ($offActivity == 0 && $product['top_cate_id'] == 15189 && $user && $user['user_ship'] == 5) {