修改种子纸工艺

This commit is contained in:
2025-08-21 15:12:03 +08:00
parent ba9d956984
commit f5c2d30424
2 changed files with 15 additions and 6 deletions
@@ -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;
}