| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /**
- * 查询库存
- * @param warehouse 仓库
- * @param barcode 条码
- * @param locationRegexp=^(?!STAGE_|SORTATION_|REVERSEPICK_|FJ-).*$
- */
- export interface getInventoryType {
- /**
- * barcode
- */
- barcode: string;
- /**
- * location
- */
- location: string;
- /**
- * locationRegexp
- */
- locationRegexp: string;
- /**
- * warehouse
- */
- warehouse: string;
- [property: string]: any;
- }
- export interface inventoryMovementType {
- fmContainer?: string;
- fmLocation?: string;
- lotNum?: string;
- owner?: string;
- quantity?: number;
- sku?: string;
- toContainer?: string;
- toLocation?: string;
- warehouse?: string;
- [property: string]: any;
- }
|