修改贺卡打开起步价。修改名片工艺

This commit is contained in:
2025-12-15 14:43:32 +08:00
parent d7a0917083
commit 69da79dd9c
2 changed files with 42 additions and 12 deletions
@@ -6851,7 +6851,7 @@ public class ProductService {
}
if (craftList.contains("打孔")) {
for (Product product : priceList) {
product.setPrice(Math.ceil(product.getPrice() + (0.03 * product.getCount() > 30 ? 0.03 * product.getCount() : 30)));
product.setPrice(Math.ceil(product.getPrice() + (0.03 * product.getCount() > 20 ? 0.03 * product.getCount() : 20)));
}
}
if (!"特种纸名片".equals(dto.getProTypeValue()) && craftList.contains("单面烫金")) {