From a0bb6117ae233f03226f90c856f4fae679412872 Mon Sep 17 00:00:00 2001 From: Loretta Date: Sun, 19 Oct 2025 15:08:38 +0200 Subject: [PATCH] ShippingDocumentToFiles fix; CustomOrder create improvements; --- Mango.Nop.Core/Dtos/MgProductDto.cs | 1 + Mango.Nop.Core/Interfaces/IMgProductDto.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/Mango.Nop.Core/Dtos/MgProductDto.cs b/Mango.Nop.Core/Dtos/MgProductDto.cs index 4b23d5d..7b4bcc7 100644 --- a/Mango.Nop.Core/Dtos/MgProductDto.cs +++ b/Mango.Nop.Core/Dtos/MgProductDto.cs @@ -18,6 +18,7 @@ public abstract class MgProductDto : MgEntityBase, IModelDtoBase, 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; } diff --git a/Mango.Nop.Core/Interfaces/IMgProductDto.cs b/Mango.Nop.Core/Interfaces/IMgProductDto.cs index 8f85a29..3988994 100644 --- a/Mango.Nop.Core/Interfaces/IMgProductDto.cs +++ b/Mango.Nop.Core/Interfaces/IMgProductDto.cs @@ -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; }