Price calculation improvements, fixes, etc...
This commit is contained in:
parent
08069dda58
commit
df9157c4ab
|
|
@ -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; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue