Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ShipmentItemModel.cs

using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;

namespace Nop.Web.Areas.Admin.Models.Orders;

/// 
/// Represents a shipment item model
/// 
public partial record ShipmentItemModel : BaseNopEntityModel
{
    #region Ctor

    public ShipmentItemModel()
    {
        AvailableWarehouses = new List();
    }

    #endregion

    #region Properties

    public int OrderItemId { get; set; }

    public int ProductId { get; set; }

    [NopResourceDisplayName("Admin.Orders.Shipments.Products.ProductName")]
    public string ProductName { get; set; }

    public string Sku { get; set; }

    public string AttributeInfo { get; set; }

    public string RentalInfo { get; set; }

    public bool ShipSeparately { get; set; }

    //weight of one item (product)
    [NopResourceDisplayName("Admin.Orders.Shipments.Products.ItemWeight")]
    public string ItemWeight { get; set; }

    [NopResourceDisplayName("Admin.Orders.Shipments.Products.ItemDimensions")]
    public string ItemDimensions { get; set; }

    public int QuantityToAdd { get; set; }

    public int QuantityOrdered { get; set; }

    [NopResourceDisplayName("Admin.Orders.Shipments.Products.QtyShipped")]
    public int QuantityInThisShipment { get; set; }

    public int QuantityInAllShipments { get; set; }


    public string ShippedFromWarehouse { get; set; }

    public bool AllowToChooseWarehouse { get; set; }

    //used before a shipment is created
    public List AvailableWarehouses { get; set; }

    #endregion

    #region Nested Classes

    public partial record WarehouseInfo : BaseNopModel
    {
        public int WarehouseId { get; set; }
        public string WarehouseName { get; set; }
        public int StockQuantity { get; set; }
        public int ReservedQuantity { get; set; }
        public int PlannedQuantity { get; set; }
    }

    #endregion
}