修改方巾纸价格

This commit is contained in:
2026-06-08 11:07:37 +08:00
parent 3e549c1856
commit 80d71369b5
3 changed files with 11 additions and 5 deletions
@@ -6200,6 +6200,12 @@ public class ProductService {
priceList.add(pro);
}
if ("1000/箱".equals(dto.getNotePaperKind())) {
for (Product product : priceList) {
product.setPrice(Math.ceil(product.getPrice() * 2));
}
}
return priceList;
}