少数量卡片加工艺

This commit is contained in:
2025-06-09 16:56:16 +08:00
parent 2aa81bb41a
commit 42b699f29b
5 changed files with 104 additions and 13 deletions
@@ -3449,9 +3449,9 @@ public class PriceUtils {
if (count <= 5) {
price = 260;
} else if (count < 100) {
price = 12 * count + 200;
price = 14 * count + 200;
} else {
price = 14 * count;
price = 12 * count;
}
price = price + (coNumber - 1) * 100;
}