inventory.ts 669 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * 查询库存
  3. * @param warehouse 仓库
  4. * @param barcode 条码
  5. * @param locationRegexp=^(?!STAGE_|SORTATION_|REVERSEPICK_|FJ-).*$
  6. */
  7. export interface getInventoryType {
  8. /**
  9. * barcode
  10. */
  11. barcode: string;
  12. /**
  13. * location
  14. */
  15. location: string;
  16. /**
  17. * locationRegexp
  18. */
  19. locationRegexp: string;
  20. /**
  21. * warehouse
  22. */
  23. warehouse: string;
  24. [property: string]: any;
  25. }
  26. export interface inventoryMovementType {
  27. fmContainer?: string;
  28. fmLocation?: string;
  29. lotNum?: string;
  30. owner?: string;
  31. quantity?: number;
  32. sku?: string;
  33. toContainer?: string;
  34. toLocation?: string;
  35. warehouse?: string;
  36. [property: string]: any;
  37. }