修改不干胶工艺价格

This commit is contained in:
2025-09-02 15:26:12 +08:00
parent 08d4115ff5
commit 12a237bf53
6 changed files with 203 additions and 16 deletions
@@ -31,4 +31,6 @@ public class StandardMemo {
* 描述
*/
private String memo;
private Integer type;
}
@@ -5614,8 +5614,13 @@ public class ProductService {
stickersList = new PVCYaMoStickersPrice().getPrice(count, area);
break;
case "5":
if (StringUtils.isEmpty(dto.getAotu())) {
if (StringUtils.isEmpty(dto.getAotu()) || (width < 30 && length < 30)) {
stickersList = new YaJinStickersPrice().getPriceNoAoTu(length, width, count);
if (("加凹凸".equals(dto.getAotu())) && (width < 30 && length < 30)) {
for (Product product : stickersList) {
product.setPrice(product.getPrice() + Math.ceil(product.getPrice() * 0.3));
}
}
break;
}
return stickersList;