@be-link/pos-cli-nodejs 0.0.175 → 0.0.176
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
|
/** 履约时间 */
|
|
@@ -939,13 +939,13 @@ export declare namespace Service {
|
|
|
939
939
|
* 获取行程单列表,按照履约时间升序
|
|
940
940
|
* @path /query/supplier/query-departure-group-list
|
|
941
941
|
*/
|
|
942
|
-
|
|
942
|
+
queryDepartureGroupList(request: Request.queryDepartureGroupList): Promise<Response.queryDepartureGroupList[]>;
|
|
943
943
|
/**
|
|
944
944
|
* 获取行程单总数
|
|
945
945
|
* @return 行程单总数
|
|
946
946
|
* @path /query/supplier/get-departure-group-count
|
|
947
947
|
*/
|
|
948
|
-
|
|
948
|
+
getDepartureGroupCount(request: Request.getDepartureGroupCount): Promise<number>;
|
|
949
949
|
}
|
|
950
950
|
/** web查询 */
|
|
951
951
|
interface QueryByWebController {
|