StockMovementType.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Comal.Classes
  5. {
  6. public enum StockMovementType
  7. {
  8. /// <summary>
  9. /// Stock is being received into the system.
  10. /// </summary>
  11. /// <remarks>
  12. /// <see cref="StockMovement.Received"/> should not be zero.
  13. /// </remarks>
  14. Receive,
  15. /// <summary>
  16. /// Stock is being issued out of the system.
  17. /// </summary>
  18. /// <remarks>
  19. /// <see cref="StockMovement.Issued"/> should not be zero.
  20. /// </remarks>
  21. Issue,
  22. /// <summary>
  23. /// Stock is being transferred out of this holding to another.
  24. /// </summary>
  25. /// <remarks>
  26. /// <see cref="StockMovement.Issued"/> should not be zero.
  27. /// </remarks>
  28. TransferOut,
  29. /// <summary>
  30. /// Stock is being transferred into this holding from another.
  31. /// </summary>
  32. /// <remarks>
  33. /// <see cref="StockMovement.Received"/> should not be zero.
  34. /// </remarks>
  35. TransferIn,
  36. /// <summary>
  37. /// Stock is being updated based on a stocktake.
  38. /// </summary>
  39. StockTake
  40. }
  41. }