This commit is contained in:
EugeneTes
2026-01-28 15:49:41 +01:00
parent 83998f6fd1
commit a5ee4fc2fe
3 changed files with 5 additions and 5 deletions

View File

@@ -5,7 +5,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.0.7</Version>
<Version>1.0.8</Version>
</PropertyGroup>
<ItemGroup>

View File

@@ -29,8 +29,8 @@ public class BarReceiptConverter
string serverLine = $"{kitchenReceipt.WaiterName}";
commands.Add(new PrintCommand(Center(serverLine, false)));
string serverIdLine = $"{kitchenReceipt.WaiterId}";
commands.Add(new PrintCommand(Center(serverIdLine, false)));
//string serverIdLine = $"{kitchenReceipt.WaiterId}";
//commands.Add(new PrintCommand(Center(serverIdLine, false)));
string tableLine = $"Tisch: {kitchenReceipt.TableNumber}";
commands.Add(new PrintCommand(Center(tableLine, true), true, true));

View File

@@ -27,8 +27,8 @@ public class KitchenReceiptConverter
string serverLine = $"{kitchenReceipt.WaiterName}";
commands.Add(new PrintCommand(Center(serverLine, false)));
string serverIdLine = $"{kitchenReceipt.WaiterId}";
commands.Add(new PrintCommand(Center(serverIdLine, false)));
//string serverIdLine = $"{kitchenReceipt.WaiterId}";
//commands.Add(new PrintCommand(Center(serverIdLine, false)));
string tableLine = $"Tisch: {kitchenReceipt.TableNumber}";
commands.Add(new PrintCommand(Center(tableLine, true), true, true));