ShippingDocumentToFiles fix; CustomOrder create improvements;
This commit is contained in:
parent
55f626c71d
commit
a0bb6117ae
|
|
@ -18,6 +18,7 @@ public abstract class MgProductDto : MgEntityBase, IModelDtoBase<Product>, IMgPr
|
||||||
|
|
||||||
public int WarehouseId { get; set; }
|
public int WarehouseId { get; set; }
|
||||||
public int StockQuantity { get; set; }
|
public int StockQuantity { get; set; }
|
||||||
|
public decimal ProductCost { get; set; }
|
||||||
|
|
||||||
public decimal Weight { get; set; }
|
public decimal Weight { get; set; }
|
||||||
public decimal Length { get; set; }
|
public decimal Length { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ public interface IMgProductDto : IEntityInt, ILocalizedEntity, ISlugSupported, I
|
||||||
|
|
||||||
int WarehouseId { get; set; }
|
int WarehouseId { get; set; }
|
||||||
int StockQuantity { get; set; }
|
int StockQuantity { get; set; }
|
||||||
|
decimal ProductCost { get; set; }
|
||||||
|
|
||||||
decimal Weight { get; set; }
|
decimal Weight { get; set; }
|
||||||
decimal Length { get; set; }
|
decimal Length { get; set; }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue