Class PickListManager
Implements operations for the pick list manager.
Inheritance
System.Object
PickListManager
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.Commerce.Orders.Managers
Assembly: Mediachase.Commerce.dll
Version: 10.8.0Syntax
public static class PickListManager
Methods
ClearDtoCache()
Clears the DTO cache.
Declaration
public static void ClearDtoCache()
ClearShipmentsCache()
Clears the packing shipments count cache.
Declaration
public static void ClearShipmentsCache()
GetDto()
Gets pick lists.
Declaration
public static PickListDto GetDto()
Returns
Type | Description |
---|---|
PickListDto |
GetPackingShipmentsCount(Int32)
Gets the packing shipments count for the given pick list.
Declaration
public static int GetPackingShipmentsCount(int pickListId)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | pickListId | The pick list id. |
Returns
Type | Description |
---|---|
System.Int32 |
GetPickListById(PickListDto, Int32)
Gets the pick list by id.
Declaration
public static PickListDto.PickListRow GetPickListById(PickListDto dto, int pickListId)
Parameters
Type | Name | Description |
---|---|---|
PickListDto | dto | The dto. |
System.Int32 | pickListId | The pick list id. |
Returns
Type | Description |
---|---|
PickListDto.PickListRow |
GetPickListsByWarehouse(PickListDto, String, Boolean)
Gets pick lists for the specified warehouse code.
Declaration
public static IEnumerable<PickListDto.PickListRow> GetPickListsByWarehouse(PickListDto dto, string warehouseCode, bool returnAll)
Parameters
Type | Name | Description |
---|---|---|
PickListDto | dto | The dto. |
System.String | warehouseCode | The warehouse code. |
System.Boolean | returnAll | Return all pick lists regardless of warehouse code. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<PickListDto.PickListRow> |
SaveDto(PickListDto)
Saves changes in PickListDto.
Declaration
public static void SaveDto(PickListDto dto)
Parameters
Type | Name | Description |
---|---|---|
PickListDto | dto | The dto. |