修改尺寸限制

This commit is contained in:
2025-08-13 17:54:22 +08:00
parent ff33a1d1af
commit e08fe7a2ea
6 changed files with 69 additions and 7 deletions
@@ -4734,6 +4734,9 @@ public class ProductService {
for (Product product : priceList) {
int item_count = product.getCount();
double carft_price = 0;
if (craft_list.contains("满底烫镭射银") && "双面".equals(dto.getCraftShua())) {
product.setPrice(Math.ceil(product.getPrice() * 1.4));
}
if (craft_list.contains("配葫芦针")) {
carft_price += Math.max(0.016 * item_count, 10);