@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.45 → 0.0.47
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.
|
@@ -16,6 +16,8 @@ export declare namespace PickingRuleTypes {
|
|
|
16
16
|
namespace Entity {
|
|
17
17
|
/** 拣货规则 */
|
|
18
18
|
interface PickingRule {
|
|
19
|
+
warehouseId: string;
|
|
20
|
+
warehouseName: string;
|
|
19
21
|
productId: string;
|
|
20
22
|
skuId: string;
|
|
21
23
|
productName: string;
|
|
@@ -57,7 +59,7 @@ export declare namespace PickingRuleTypes {
|
|
|
57
59
|
}
|
|
58
60
|
/** 获取已生效规则列表 */
|
|
59
61
|
interface PickingRuleList {
|
|
60
|
-
|
|
62
|
+
warehouseIds?: string[];
|
|
61
63
|
pageIndex: number;
|
|
62
64
|
pageSize: number;
|
|
63
65
|
productIds?: string[];
|
|
@@ -100,6 +100,8 @@ export declare namespace PurchaseOrderTypes {
|
|
|
100
100
|
skuIds?: string[];
|
|
101
101
|
skuCodes?: string[];
|
|
102
102
|
deliveryMethod?: string;
|
|
103
|
+
supplierIds?: string[];
|
|
104
|
+
destinationIds?: string[];
|
|
103
105
|
pageIndex: number;
|
|
104
106
|
pageSize: number;
|
|
105
107
|
}
|
|
@@ -198,21 +200,10 @@ export declare namespace PurchaseOrderTypes {
|
|
|
198
200
|
createdAt: number;
|
|
199
201
|
status: ENUM.PURCHASE_ORDER_ENUM.STATUS;
|
|
200
202
|
}
|
|
201
|
-
/** 采购单明细列表项 */
|
|
202
|
-
interface DetailItem extends Entity.PurchaseOrderDetail {
|
|
203
|
-
productName: string;
|
|
204
|
-
productImage: string;
|
|
205
|
-
imgList: string[];
|
|
206
|
-
specName: string;
|
|
207
|
-
storageMethod: string;
|
|
208
|
-
classification: string;
|
|
209
|
-
supplierName: string;
|
|
210
|
-
destinationName: string;
|
|
211
|
-
}
|
|
212
203
|
/** 查询采购单详情响应(含明细列表) */
|
|
213
204
|
interface GetDetail {
|
|
214
205
|
order: DetailOrder;
|
|
215
|
-
details:
|
|
206
|
+
details: Entity.PurchaseOrderDetailWithProduct[];
|
|
216
207
|
total: number;
|
|
217
208
|
}
|
|
218
209
|
/** 导出采购单Excel的每一行字段 */
|