diff --git a/EpsonPrintService/EpsonPrintService.csproj b/EpsonPrintService/EpsonPrintService.csproj index dd293cf..015c459 100644 --- a/EpsonPrintService/EpsonPrintService.csproj +++ b/EpsonPrintService/EpsonPrintService.csproj @@ -5,7 +5,7 @@ net8.0 enable enable - 1.0.7 + 1.0.8 diff --git a/Inspectron.Epson/PrintServer/Printers/Utils/BarReceipt/BarReceiptConverter.cs b/Inspectron.Epson/PrintServer/Printers/Utils/BarReceipt/BarReceiptConverter.cs index f78238e..b72c1ec 100644 --- a/Inspectron.Epson/PrintServer/Printers/Utils/BarReceipt/BarReceiptConverter.cs +++ b/Inspectron.Epson/PrintServer/Printers/Utils/BarReceipt/BarReceiptConverter.cs @@ -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)); diff --git a/Inspectron.Epson/PrintServer/Printers/Utils/KitchenReceipt/KitchenReceiptConverter.cs b/Inspectron.Epson/PrintServer/Printers/Utils/KitchenReceipt/KitchenReceiptConverter.cs index e94ab2c..2176ff8 100644 --- a/Inspectron.Epson/PrintServer/Printers/Utils/KitchenReceipt/KitchenReceiptConverter.cs +++ b/Inspectron.Epson/PrintServer/Printers/Utils/KitchenReceipt/KitchenReceiptConverter.cs @@ -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));