From df9157c4abc2c3fa36b976adfb55a0bf07eecabc Mon Sep 17 00:00:00 2001 From: Loretta Date: Fri, 24 Oct 2025 15:47:45 +0200 Subject: [PATCH] Price calculation improvements, fixes, etc... --- Mango.Nop.Core/Dtos/MgOrderItemDto.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Mango.Nop.Core/Dtos/MgOrderItemDto.cs b/Mango.Nop.Core/Dtos/MgOrderItemDto.cs index 6c20457..68f0174 100644 --- a/Mango.Nop.Core/Dtos/MgOrderItemDto.cs +++ b/Mango.Nop.Core/Dtos/MgOrderItemDto.cs @@ -13,6 +13,13 @@ public abstract class MgOrderItemDto : MgEntityBase, IModelDtoBase< public int OrderId { get; set; } public int ProductId { get; set; } public int Quantity { get; set; } + + public decimal UnitPriceInclTax { get; set; } + public decimal UnitPriceExclTax { get; set; } + + public decimal PriceInclTax { get; set; } + public decimal PriceExclTax { get; set; } + public string AttributesXml { get; set; } public decimal? ItemWeight { get; set; }