@tolinax/ayoune-interfaces 2026.35.0 → 2026.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/interfaces/ISetting.d.ts +40 -0
- package/package.json +1 -1
package/interfaces/ISetting.d.ts
CHANGED
|
@@ -1067,6 +1067,46 @@ export interface ISetting extends IDefaultFields {
|
|
|
1067
1067
|
customerportal: ISettingCustomerPortal;
|
|
1068
1068
|
linkPortal: ILinkPortal;
|
|
1069
1069
|
supportPortal: ISupportPortal;
|
|
1070
|
+
warehouse?: IWarehouseSettings;
|
|
1070
1071
|
[x: string]: any;
|
|
1071
1072
|
}
|
|
1073
|
+
export interface IWarehouseSettings {
|
|
1074
|
+
putAway?: {
|
|
1075
|
+
mode?: 'system-directed' | 'pallet-first' | 'worker-pick';
|
|
1076
|
+
placementStrategy?: 'empty_bin' | 'same_product' | 'FIFO' | 'FEFO' | 'ABC';
|
|
1077
|
+
};
|
|
1078
|
+
receive?: {
|
|
1079
|
+
poLookupMode?: 'off' | 'optional' | 'required';
|
|
1080
|
+
poSessionMode?: 'single' | 'multi' | 'ad-hoc';
|
|
1081
|
+
allowOverage?: boolean;
|
|
1082
|
+
overageThresholdPercent?: number;
|
|
1083
|
+
requireLotOnReceive?: boolean;
|
|
1084
|
+
};
|
|
1085
|
+
pick?: {
|
|
1086
|
+
batchMode?: 'single' | 'wave' | 'both';
|
|
1087
|
+
qtyMode?: 'prompt' | 'per-unit';
|
|
1088
|
+
allowShortPick?: boolean;
|
|
1089
|
+
requireSerialForTaggedProducts?: boolean;
|
|
1090
|
+
};
|
|
1091
|
+
materialCommissioning?: {
|
|
1092
|
+
handoffMode?: 'auto-deliver' | 'operator-confirm';
|
|
1093
|
+
};
|
|
1094
|
+
cycleCount?: {
|
|
1095
|
+
autoApproveVarianceThreshold?: number;
|
|
1096
|
+
requireTwoCount?: boolean;
|
|
1097
|
+
escalateOnConsecutiveVariances?: number;
|
|
1098
|
+
};
|
|
1099
|
+
replenishment?: {
|
|
1100
|
+
autoTriggerEnabled?: boolean;
|
|
1101
|
+
minLevelCheckIntervalMinutes?: number;
|
|
1102
|
+
};
|
|
1103
|
+
autoPrint?: {
|
|
1104
|
+
onStorageAreaCreate?: boolean;
|
|
1105
|
+
onPickListStart?: boolean;
|
|
1106
|
+
onReceive?: boolean;
|
|
1107
|
+
onPutAwayComplete?: boolean;
|
|
1108
|
+
onMaterialDispatch?: boolean;
|
|
1109
|
+
onPackSeal?: boolean;
|
|
1110
|
+
};
|
|
1111
|
+
}
|
|
1072
1112
|
export {};
|