@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
- warehouseId?: string;
62
+ warehouseIds?: string[];
61
63
  pageIndex: number;
62
64
  pageSize: number;
63
65
  productIds?: string[];
@@ -11,6 +11,7 @@ export declare namespace ProductStatisticsTypes {
11
11
  storageMethod: string;
12
12
  dispatchType: string;
13
13
  pickType: string;
14
+ isCombo?: number;
14
15
  }
15
16
  }
16
17
  /** 请求定义 */
@@ -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: DetailItem[];
206
+ details: Entity.PurchaseOrderDetailWithProduct[];
216
207
  total: number;
217
208
  }
218
209
  /** 导出采购单Excel的每一行字段 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-plan-allocation-service-node-sdk",
3
- "version": "0.0.45",
3
+ "version": "0.0.47",
4
4
  "description": "EcommercePlanAllocationService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",