Price calculation improvements, fixes, etc...

This commit is contained in:
Loretta 2025-10-24 15:47:45 +02:00
parent 08069dda58
commit df9157c4ab
1 changed files with 7 additions and 0 deletions

View File

@ -13,6 +13,13 @@ public abstract class MgOrderItemDto<TProductDto> : MgEntityBase, IModelDtoBase<
public int OrderId { get; set; } public int OrderId { get; set; }
public int ProductId { get; set; } public int ProductId { get; set; }
public int Quantity { 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 string AttributesXml { get; set; }
public decimal? ItemWeight { get; set; } public decimal? ItemWeight { get; set; }