From 31f411d3192055dbce5c31afc5e929b91613ada0 Mon Sep 17 00:00:00 2001 From: Loretta Date: Sat, 25 Oct 2025 09:29:42 +0200 Subject: [PATCH] =?UTF-8?q?"kalkul=C3=A1ci=C3=B3=20alatt..."?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Nop.Plugin.Misc.AIPlugin/Factories/CustomOrderModelFactory.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Nop.Plugin.Misc.AIPlugin/Factories/CustomOrderModelFactory.cs b/Nop.Plugin.Misc.AIPlugin/Factories/CustomOrderModelFactory.cs index ac615f4..1645a56 100644 --- a/Nop.Plugin.Misc.AIPlugin/Factories/CustomOrderModelFactory.cs +++ b/Nop.Plugin.Misc.AIPlugin/Factories/CustomOrderModelFactory.cs @@ -178,7 +178,7 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Factories orderModelExtended.IsMeasured = orderDto.IsMeasured; orderModelExtended.IsMeasurable = orderDto.IsMeasurable; orderModelExtended.DateOfReceipt = orderDto.DateOfReceipt; - orderModelExtended.OrderTotal = !orderDto.IsComplete && orderDto.IsMeasurable ? "Kalkuláció alatt..." : orderModelExtended.OrderTotal; + orderModelExtended.OrderTotal = !orderDto.IsComplete && orderDto.IsMeasurable ? "kalkuláció alatt..." : orderModelExtended.OrderTotal; orderModelExtended.CustomerCompany = orderDto.Customer.Company; } @@ -210,6 +210,7 @@ namespace Nop.Plugin.Misc.FruitBankPlugin.Factories orderItemModelExtended.NetWeight = (decimal)orderItemDto.NetWeight; orderItemModelExtended.ProductStockQuantity = orderItemDto.ProductDto!.StockQuantity; orderItemModelExtended.ProductIncomingQuantity = orderItemDto.ProductDto.IncomingQuantity; + //orderItemModelExtended.SubTotalInclTax = !orderDto.IsComplete && orderItemDto.IsMeasurable ? "kalkuláció alatt..." : orderItemModelExtended.SubTotalInclTax; orderModelExtended.ItemExtendeds ??= new List(); orderModelExtended.ItemExtendeds.Add(orderItemModelExtended);