Compare commits
No commits in common. "b06178cdb44749e345a3dbd12115e134cbde932d" and "fb4a856d04259f8455cad82010c29dfdf6742e27" have entirely different histories.
b06178cdb4
...
fb4a856d04
|
@ -217,10 +217,6 @@ public class BarcodeService {
|
||||||
String concatenatedIds = bundles.stream()
|
String concatenatedIds = bundles.stream()
|
||||||
.map(bundle -> String.valueOf(bundle.getId()))
|
.map(bundle -> String.valueOf(bundle.getId()))
|
||||||
.collect(Collectors.joining("\\"));
|
.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());
|
this.drawCenteredText(g2d, "Sub-Bundles: " + concatenatedIds, detailFont, x, y, pageWidth, cols, stickerSize.getMarginTop() + 290, stickerSize.getMarginLeft());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue