修改种子纸工艺
This commit is contained in:
@@ -2565,9 +2565,14 @@ public class ProductService {
|
||||
if (!StringUtils.isEmpty(crafts) && Arrays.asList(crafts).contains("压痕")) {
|
||||
price += Math.max(count * 0.2, 10);
|
||||
}
|
||||
|
||||
price = price * number;//款数翻倍
|
||||
price = Math.max(price, 60);
|
||||
|
||||
if (!StringUtils.isEmpty(crafts) && Arrays.asList(crafts).contains("装opp袋")) {
|
||||
price += Math.ceil(Math.max(count * 0.15 * number, 5));
|
||||
}
|
||||
|
||||
if (!StringUtils.isEmpty(dto.getSwitchz3Size())) {
|
||||
price += 100;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user