| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /**
- * 盲扫任务
- * taskNo:任务号
- */
- export interface getBlindTaskType {
- taskNo: string;
- }
- /**
- * 检查盲扫任务条码
- * barcode:条码
- * warehouse:仓库
- * warehouse:货主
- */
- export interface checkBlindBarcodeType {
- warehouse: string;
- ownerCode: string;
- barcode: string;
- }
- /**
- * 盲扫-添加缓存数据-按箱清点+分货多人
- * ownerCode 货主
- * code 盲扫任务号
- * barCode 条码
- * cartonCode 箱号
- */
- export interface setBoxCacheDataType {
- ownerCode: string;
- cartonCode: string;
- barCode: string;
- }
- /**
- * 盲扫-添加缓存数据-按箱清点+分货多人
- * ownerCode 货主
- * sku
- * cartonCode 箱号
- */
- export interface setBoxBarcodeCountType {
- code: string;
- cartonCode: string;
- sku: string;
- qty: string;
- }
- export interface setBarcodeCountType {
- code: string;
- sku: string;
- qty: string;
- }
- /**
- * 盲扫-添加缓存数据-按箱清点+分货多人
- * ownerCode 货主
- */
- export interface submitBoxCacheDataType {
- code: string;
- ownerCode: string;
- }
|