From a5ee4fc2fe9b8c553bbab4ad2b63216930102021 Mon Sep 17 00:00:00 2001 From: EugeneTes Date: Wed, 28 Jan 2026 15:49:41 +0100 Subject: [PATCH] 1.0.8 --- EpsonPrintService/EpsonPrintService.csproj | 2 +- .../Printers/Utils/BarReceipt/BarReceiptConverter.cs | 4 ++-- .../Printers/Utils/KitchenReceipt/KitchenReceiptConverter.cs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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));