@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.18 → 0.0.20
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.
|
@@ -18,10 +18,10 @@ export declare namespace AllocationOrderTypes {
|
|
|
18
18
|
realNum: number;
|
|
19
19
|
creator: string;
|
|
20
20
|
updater: string;
|
|
21
|
-
shippedAt: number
|
|
22
|
-
estimatedArrivalAt: number
|
|
21
|
+
shippedAt: number;
|
|
22
|
+
estimatedArrivalAt: number;
|
|
23
23
|
needNextHandle: number;
|
|
24
|
-
remark: string
|
|
24
|
+
remark: string;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
27
|
* 配货单扩展实体(包含关联数据)
|
|
@@ -50,8 +50,8 @@ export declare namespace AllocationOrderTypes {
|
|
|
50
50
|
remainNum: number;
|
|
51
51
|
nextPickingNum: number;
|
|
52
52
|
shouldPickNum: number;
|
|
53
|
-
pickingRemark: string
|
|
54
|
-
shippingRemark: string
|
|
53
|
+
pickingRemark: string;
|
|
54
|
+
shippingRemark: string;
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
57
|
* 配货单明细扩展实体(包含商品信息)
|
|
@@ -117,6 +117,8 @@ export declare namespace Service {
|
|
|
117
117
|
interface BatchImportWaybill {
|
|
118
118
|
/** 运货单列表Excel地址(cos地址) */
|
|
119
119
|
excel: string;
|
|
120
|
+
/** 后台账号username */
|
|
121
|
+
username?: string;
|
|
120
122
|
}
|
|
121
123
|
/** 查询运货单列表 */
|
|
122
124
|
interface GetWaybillList {
|
|
@@ -147,13 +149,15 @@ export declare namespace Service {
|
|
|
147
149
|
allocationOrderId: string;
|
|
148
150
|
/** 编辑运单号 */
|
|
149
151
|
wayBill: WayBill[];
|
|
152
|
+
/** 后台账号username */
|
|
153
|
+
username?: string;
|
|
150
154
|
}
|
|
151
155
|
/** 运货单公司编码列表(来自 CarrierCompany 表) */
|
|
152
156
|
interface GetCarrierList {
|
|
153
157
|
/** 页码 */
|
|
154
158
|
pageIndex: number;
|
|
155
159
|
/** 每页数量 */
|
|
156
|
-
pageSize
|
|
160
|
+
pageSize?: number;
|
|
157
161
|
/** 关键词 */
|
|
158
162
|
keyword?: string;
|
|
159
163
|
}
|
|
@@ -263,11 +267,24 @@ export declare namespace Service {
|
|
|
263
267
|
/** 位置信息 */
|
|
264
268
|
location?: string | null;
|
|
265
269
|
}
|
|
266
|
-
/**
|
|
267
|
-
interface
|
|
270
|
+
/** 物流单号基础信息(查询失败时也会返回) */
|
|
271
|
+
interface LogisticsInfoBase {
|
|
272
|
+
/** 运单号 */
|
|
273
|
+
nu: string;
|
|
274
|
+
/** 快递公司编码 */
|
|
275
|
+
com: string;
|
|
268
276
|
/** 快递公司名称(根据 com 字段从 CarrierCompany 表查询,如果查询不到则为空字符串) */
|
|
269
277
|
carrierName: string;
|
|
278
|
+
/** 运单状态 */
|
|
279
|
+
state?: string;
|
|
280
|
+
/** 信息描述(查询失败时为错误信息) */
|
|
281
|
+
message?: string;
|
|
270
282
|
}
|
|
283
|
+
/** 物流单号信息(快递100 实时查询返回的完整响应信息,包含 raw 字段,并补充快递公司名称) */
|
|
284
|
+
type LogisticsInfo = (ExpressDeliveryApiResponseEnvelope<RealTimeQueryData> & {
|
|
285
|
+
carrierName: string;
|
|
286
|
+
num?: string;
|
|
287
|
+
}) | LogisticsInfoBase;
|
|
271
288
|
/** 门店入库单运货单物流信息列表(直接返回每个运单实时查询结果的完整响应信息) */
|
|
272
289
|
interface GetStoreStockInOrderLogisticsList {
|
|
273
290
|
/** 物流信息列表 */
|