using System;
using System.Collections.Generic;
using System.Text;
namespace Comal.Classes
{
public enum StockMovementType
{
///
/// Stock is being received into the system.
///
///
/// should not be zero.
///
Receive,
///
/// Stock is being issued out of the system.
///
///
/// should not be zero.
///
Issue,
///
/// Stock is being transferred out of this holding to another.
///
///
/// should not be zero.
///
TransferOut,
///
/// Stock is being transferred into this holding from another.
///
///
/// should not be zero.
///
TransferIn,
///
/// Stock is being updated based on a stocktake.
///
StockTake
}
}