ShippingDocumentToFiles fix; CustomOrder create improvements;

This commit is contained in:
Loretta 2025-10-19 15:08:38 +02:00
parent 55f626c71d
commit a0bb6117ae
2 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ public abstract class MgProductDto : MgEntityBase, IModelDtoBase<Product>, IMgPr
public int WarehouseId { get; set; }
public int StockQuantity { get; set; }
public decimal ProductCost { get; set; }
public decimal Weight { get; set; }
public decimal Length { get; set; }

View File

@ -19,6 +19,7 @@ public interface IMgProductDto : IEntityInt, ILocalizedEntity, ISlugSupported, I
int WarehouseId { get; set; }
int StockQuantity { get; set; }
decimal ProductCost { get; set; }
decimal Weight { get; set; }
decimal Length { get; set; }