Commit 17383e26 authored by fangliyan's avatar fangliyan

小区收藏

parent 84dc9a3d
...@@ -1868,12 +1868,9 @@ class User extends MY_Controller ...@@ -1868,12 +1868,9 @@ class User extends MY_Controller
}else{ }else{
if($item['property_type'] == $infoType && $item['day'] == $day){ if($item['property_type'] == $infoType && $item['day'] == $day){
$price = $originalPrice = floatval($item['price']); $price = $originalPrice = floatval($item['price']);
//处理折扣
if(GB_CITY == 'wh' && $packageType == 2){ if(isset($item['discount']) && $item['discount'] >0){
//处理折扣 $price = $originalPrice = $this->pirceDiscount($price,$item['discount']);
if(isset($item['discount']) && $item['discount'] >0){
$price = $originalPrice = $this->pirceDiscount($price,$item['discount']);
}
} }
// 列表套餐8折券使用 20200507 // 列表套餐8折券使用 20200507
// 优惠券修改为 6折 // 优惠券修改为 6折
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment