Compare commits

..

No commits in common. "b06178cdb44749e345a3dbd12115e134cbde932d" and "fb4a856d04259f8455cad82010c29dfdf6742e27" have entirely different histories.

1 changed files with 0 additions and 4 deletions

View File

@ -217,10 +217,6 @@ public class BarcodeService {
String concatenatedIds = bundles.stream()
.map(bundle -> String.valueOf(bundle.getId()))
.collect(Collectors.joining("\\"));
int totalWrappedQuantity = bundles.stream()
.mapToInt(e->e.getWrapQuantity().intValue())
.sum();
this.drawCenteredText(g2d, "Total-Pieces: " + totalWrappedQuantity, detailFont, x, y, pageWidth, cols, stickerSize.getMarginTop() + 270, stickerSize.getMarginLeft());
this.drawCenteredText(g2d, "Sub-Bundles: " + concatenatedIds, detailFont, x, y, pageWidth, cols, stickerSize.getMarginTop() + 290, stickerSize.getMarginLeft());
}