@be-link/pos-cli-nodejs 0.0.175 → 0.0.177
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/package.json
CHANGED
|
@@ -10,8 +10,8 @@ declare class QueryBySupplierService extends BaseService implements Service.Quer
|
|
|
10
10
|
mgetOrderQuantity(request: {
|
|
11
11
|
orderIdList: string[];
|
|
12
12
|
}): Promise<Record<string, number>>;
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
queryDepartureGroupList(request: Service.Request.queryDepartureGroupList): Promise<Service.Response.queryDepartureGroupList[]>;
|
|
14
|
+
getDepartureGroupCount(request: Service.Request.getDepartureGroupCount): Promise<number>;
|
|
15
15
|
}
|
|
16
16
|
declare const queryByStoreService: QueryBySupplierService;
|
|
17
17
|
export default queryByStoreService;
|
|
@@ -25,11 +25,11 @@ class QueryBySupplierService extends service_1.default {
|
|
|
25
25
|
mgetOrderQuantity(request) {
|
|
26
26
|
return (0, http_1.callApi)(this.getApiUrl(this.mgetOrderQuantity), request);
|
|
27
27
|
}
|
|
28
|
-
|
|
29
|
-
return (0, http_1.callApi)(this.getApiUrl(this.
|
|
28
|
+
queryDepartureGroupList(request) {
|
|
29
|
+
return (0, http_1.callApi)(this.getApiUrl(this.queryDepartureGroupList), request);
|
|
30
30
|
}
|
|
31
|
-
|
|
32
|
-
return (0, http_1.callApi)(this.getApiUrl(this.
|
|
31
|
+
getDepartureGroupCount(request) {
|
|
32
|
+
return (0, http_1.callApi)(this.getApiUrl(this.getDepartureGroupCount), request);
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
35
|
const queryByStoreService = new QueryBySupplierService();
|
|
@@ -228,7 +228,7 @@ export declare namespace Service {
|
|
|
228
228
|
/** 二级类目列表 */
|
|
229
229
|
categoryTwoList?: string[];
|
|
230
230
|
}
|
|
231
|
-
interface
|
|
231
|
+
interface queryDepartureGroupList {
|
|
232
232
|
/** 供应商id */
|
|
233
233
|
supplierIdList?: string[];
|
|
234
234
|
/** 商品id列表 */
|
|
@@ -242,7 +242,7 @@ export declare namespace Service {
|
|
|
242
242
|
/** 页面条数 */
|
|
243
243
|
pageSize?: number;
|
|
244
244
|
}
|
|
245
|
-
interface
|
|
245
|
+
interface getDepartureGroupCount {
|
|
246
246
|
/** 供应商id */
|
|
247
247
|
supplierIdList?: string[];
|
|
248
248
|
/** 履约时间 */
|
|
@@ -434,6 +434,8 @@ export declare namespace Service {
|
|
|
434
434
|
createdAtRange?: [number, number];
|
|
435
435
|
/** 供应商列表 */
|
|
436
436
|
supplierIdList?: string[];
|
|
437
|
+
/** 商品id */
|
|
438
|
+
itemIdList?: string[];
|
|
437
439
|
};
|
|
438
440
|
/** 查询块 */
|
|
439
441
|
needBlocks: K;
|
|
@@ -501,6 +503,8 @@ export declare namespace Service {
|
|
|
501
503
|
pageSize?: number;
|
|
502
504
|
/** 页面下标 */
|
|
503
505
|
pageIndex?: number;
|
|
506
|
+
/** 商品id */
|
|
507
|
+
itemIdList?: string[];
|
|
504
508
|
};
|
|
505
509
|
/** 排序 */
|
|
506
510
|
sort: {
|
|
@@ -605,6 +609,8 @@ export declare namespace Service {
|
|
|
605
609
|
createdAtRange?: [number, number];
|
|
606
610
|
/** 供应商列表 */
|
|
607
611
|
supplierIdList?: string[];
|
|
612
|
+
/** 商品id */
|
|
613
|
+
itemIdList?: string[];
|
|
608
614
|
}
|
|
609
615
|
interface getOrderCount {
|
|
610
616
|
/** 状态 */
|
|
@@ -939,13 +945,13 @@ export declare namespace Service {
|
|
|
939
945
|
* 获取行程单列表,按照履约时间升序
|
|
940
946
|
* @path /query/supplier/query-departure-group-list
|
|
941
947
|
*/
|
|
942
|
-
|
|
948
|
+
queryDepartureGroupList(request: Request.queryDepartureGroupList): Promise<Response.queryDepartureGroupList[]>;
|
|
943
949
|
/**
|
|
944
950
|
* 获取行程单总数
|
|
945
951
|
* @return 行程单总数
|
|
946
952
|
* @path /query/supplier/get-departure-group-count
|
|
947
953
|
*/
|
|
948
|
-
|
|
954
|
+
getDepartureGroupCount(request: Request.getDepartureGroupCount): Promise<number>;
|
|
949
955
|
}
|
|
950
956
|
/** web查询 */
|
|
951
957
|
interface QueryByWebController {
|