Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1.  public enum PickingType
  2.     {
  3.         None  = 0,
  4.         Customer = 1,
  5.         Return = 2,
  6.         Stock = 3
  7.     }
  8.  
  9.  public enum BlockReason
  10.     {
  11.         None = 0,
  12.         Defect = 1,
  13.         Сounterfeit = 2,
  14.         Shortfall = 3,
  15.         Loss = 4,
  16.         Refuse = 5
  17.     }
  18.  
  19. public enum StickerState
  20.     {
  21.         Receipted = 1,
  22.         Placed = 2,
  23.         Picked = 3,
  24.         AddedToRealization = 4,
  25.         Shipped = 5
  26.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement