From 4222ce4ab8cbacd97deadbf717bdf0842dac19dc Mon Sep 17 00:00:00 2001 From: Bjarne Pedersen Date: Mon, 20 Jul 2026 08:54:45 +0200 Subject: [PATCH] =?UTF-8?q?=C3=86ndret=20udregning=20af=20moms?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Moms i total var udregnet med 25% og ikke 20%, det er nu rettet til. --- PointOfSale/EpsonPrinterLinux/Services/EpsonPrintService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PointOfSale/EpsonPrinterLinux/Services/EpsonPrintService.cs b/PointOfSale/EpsonPrinterLinux/Services/EpsonPrintService.cs index 2d48148..dcfa98c 100644 --- a/PointOfSale/EpsonPrinterLinux/Services/EpsonPrintService.cs +++ b/PointOfSale/EpsonPrinterLinux/Services/EpsonPrintService.cs @@ -81,7 +81,7 @@ namespace EpsonPrinter.Services } if (body.TotalVat <= 0) { - body.TotalVat = Math.Round(body.TotalPrice * 0.25m, 2); + body.TotalVat = Math.Round(body.TotalPrice * 0.20m, 2); } var footer = (model.Footer != null && model.Footer.Any()) ? model.Footer : BuildDefaultFooter(); @@ -175,7 +175,7 @@ namespace EpsonPrinter.Services { new HeaderModel { - Value = _config["PrintSettings:Defaults:StoreName"] ?? "TableTop3D", + Value = _config["PrintSettings:Defaults:StoreName"] ?? "Blomster Til Alt", TextAlignment = Enums.AlignmentEnum.Center, FeedingLines = 0, PrintStyles = new PrintStyleModel { Bold = true, DoubleWidth = true, DoubleHeight = true }