Allow to print multiple seller recipes.

This commit is contained in:
Martin Brodbeck 2025-03-14 12:17:24 +01:00
parent 8a5038e462
commit 98a9fe0069
3 changed files with 10 additions and 7 deletions

View file

@ -202,7 +202,7 @@ void PosPrinter::printSellerReceipt(Seller* seller, const int percent, const int
<< marketFeeAsString(seller->sumInCents(), percent, maxFeeInCent) << "\n";
commandStream << "\nAuszahlung............. "
<< paymentAsString(seller->sumInCents(), percent, maxFeeInCent) << "\n";
commandStream << Command::FEED;
commandStream << Command::FEED << Command::FEED;
write(commandStream.str());
}