|
|
@@ -532,8 +532,11 @@ public class ProductService {
|
|
|
if ("12".equals(dto.getToothpick_size())) {
|
|
|
basePrice = basePrice + 0.02;
|
|
|
}
|
|
|
-
|
|
|
- product.setPrice(product.getPrice() + Math.ceil(product.getCount() * basePrice));
|
|
|
+ if ("0".equals(dto.getKindValue())) {
|
|
|
+ product.setPrice(product.getPrice() + Math.ceil(product.getCount() * basePrice));
|
|
|
+ } else {
|
|
|
+ product.setPrice(product.getPrice() + Math.ceil(product.getCount() * basePrice * number));
|
|
|
+ }
|
|
|
if ("配牙签".equals(dto.getCraftShua()) && "6.5".equals(dto.getToothpick_size()) && ((width == 9 && length == 2.5) || length == 9 && width == 2.5)) {
|
|
|
if (product.getCount() == 500) {
|
|
|
double other_price = 60;
|
|
|
@@ -577,8 +580,6 @@ public class ProductService {
|
|
|
}
|
|
|
|
|
|
if ("0".equals(dto.getKindValue()) && !"专版打印".contentEquals(dto.getStickerKind())) {
|
|
|
-
|
|
|
-
|
|
|
if (number > 1) {
|
|
|
for (Product product : stickersList) {
|
|
|
product.setPrice(product.getPrice() * number);
|
|
|
@@ -2682,7 +2683,7 @@ public class ProductService {
|
|
|
coNumber = 1;
|
|
|
}
|
|
|
|
|
|
- double price = new PriceUtils().CalculatePrice(craft_list, baseCount, coNumber, countNum, width * length * dto.getCount() * number, number);
|
|
|
+ double price = new PriceUtils().CalculatePrice(craft_list, baseCount, coNumber, countNum, width * length * dto.getCount() * number);
|
|
|
|
|
|
Product pro = new Product();
|
|
|
pro.setCount(dto.getCount());
|
|
|
@@ -2697,7 +2698,7 @@ public class ProductService {
|
|
|
}
|
|
|
baseCount = Math.max(Math.ceil(quantitySteps[i] * dto.getNumber() / num), 1);
|
|
|
countNum = Math.max(Math.ceil(dto.getNumber() / num), 1);
|
|
|
- double currentPrice = new PriceUtils().CalculatePrice(craft_list, baseCount, coNumber, countNum, width * length * quantitySteps[i] * number, number);
|
|
|
+ double currentPrice = new PriceUtils().CalculatePrice(craft_list, baseCount, coNumber, countNum, width * length * quantitySteps[i] * number);
|
|
|
|
|
|
pro = new Product();
|
|
|
|