@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.47 → 0.0.49
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/enum.d.ts +1 -0
- package/enum.js +1 -0
- package/modules/preAllocationOrder/types.d.ts +7 -2
- package/package.json +1 -1
package/enum.d.ts
CHANGED
|
@@ -192,6 +192,7 @@ export declare namespace ENUM {
|
|
|
192
192
|
readonly STOCK_IN_ORDER_DETAIL_NOT_FOUND: "入库单中未找到对应的SKU明细";
|
|
193
193
|
readonly APPLY_FAILED: "补货申请失败,请稍后重试";
|
|
194
194
|
readonly ALREADY_APPLIED: "该入库单已经申请过补货,无法再次发起申请";
|
|
195
|
+
readonly STOCK_IN_ORDER_NOT_RECEIVED: "入库单未收货,无法申请补货";
|
|
195
196
|
};
|
|
196
197
|
}
|
|
197
198
|
namespace PRE_ALLOCATION_ORDER_ENUM {
|
package/enum.js
CHANGED
|
@@ -218,6 +218,7 @@ var ENUM;
|
|
|
218
218
|
STOCK_IN_ORDER_DETAIL_NOT_FOUND: '入库单中未找到对应的SKU明细',
|
|
219
219
|
APPLY_FAILED: '补货申请失败,请稍后重试',
|
|
220
220
|
ALREADY_APPLIED: '该入库单已经申请过补货,无法再次发起申请',
|
|
221
|
+
STOCK_IN_ORDER_NOT_RECEIVED: '入库单未收货,无法申请补货',
|
|
221
222
|
};
|
|
222
223
|
})(STORE_REPLENISH_ORDER_ENUM = ENUM.STORE_REPLENISH_ORDER_ENUM || (ENUM.STORE_REPLENISH_ORDER_ENUM = {}));
|
|
223
224
|
let PRE_ALLOCATION_ORDER_ENUM;
|
|
@@ -178,6 +178,11 @@ export declare namespace PreAllocationOrderTypes {
|
|
|
178
178
|
pickingAt: number;
|
|
179
179
|
estimatedArrivalAt: number;
|
|
180
180
|
operator: string;
|
|
181
|
+
storeIds?: string[];
|
|
182
|
+
productIds?: string[];
|
|
183
|
+
skuCodes?: string[];
|
|
184
|
+
deliveryModes?: number[];
|
|
185
|
+
sourceTypes?: number[];
|
|
181
186
|
}
|
|
182
187
|
/** 查询任务进度 */
|
|
183
188
|
interface GetTaskProgress {
|
|
@@ -257,8 +262,8 @@ export declare namespace PreAllocationOrderTypes {
|
|
|
257
262
|
storeIds?: string[];
|
|
258
263
|
productIds?: string[];
|
|
259
264
|
skuCodes?: string[];
|
|
260
|
-
|
|
261
|
-
|
|
265
|
+
deliveryModes?: number[];
|
|
266
|
+
sourceTypes?: number[];
|
|
262
267
|
batchStatus?: number;
|
|
263
268
|
status?: number;
|
|
264
269
|
};
|