修改客户价格超过划线价

This commit is contained in:
“wanyongkang”
2025-05-30 15:20:27 +08:00
parent 8092eea21c
commit c324ca598a

View File

@@ -31,6 +31,10 @@ class UserPrice extends Model
if ($price < $package_info['Price']) {
$package_info['Price'] = $price;
}
if ($price > $package_price && $price < 1000000) {
$package['Price'] = $price;
}
}
return $package_info['Price'];