@gizone/rrs-client 4.2.9-alpha.658 → 4.2.9-alpha.659
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/.openapi-generator/FILES +0 -1
- package/apis/reimbursement-bill-api.ts +283 -20
- package/dist/apis/reimbursement-bill-api.d.ts +161 -10
- package/dist/apis/reimbursement-bill-api.js +153 -15
- package/dist/esm/apis/reimbursement-bill-api.d.ts +161 -10
- package/dist/esm/apis/reimbursement-bill-api.js +153 -15
- package/dist/esm/models/index.d.ts +0 -1
- package/dist/esm/models/index.js +0 -1
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/dist/esm/models/reimbursement-status-enum.d.ts +1 -1
- package/dist/esm/models/reimbursement-status-enum.js +1 -1
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +7 -7
- package/dist/models/reimbursement-status-enum.d.ts +1 -1
- package/dist/models/reimbursement-status-enum.js +1 -1
- package/models/index.ts +0 -1
- package/models/ipage-energy-cost-record-info-vo.ts +7 -7
- package/models/reimbursement-status-enum.ts +1 -1
- package/ossutil.log +1188 -1185
- package/package.json +1 -1
- package/dist/esm/models/reimbursement-bill-search-dto.d.ts +0 -68
- package/dist/esm/models/reimbursement-bill-search-dto.js +0 -14
- package/dist/models/reimbursement-bill-search-dto.d.ts +0 -68
- package/dist/models/reimbursement-bill-search-dto.js +0 -15
- package/models/reimbursement-bill-search-dto.ts +0 -78
|
@@ -99,6 +99,66 @@ const ReimbursementBillApiAxiosParamCreator = function (configuration) {
|
|
|
99
99
|
options: localVarRequestOptions,
|
|
100
100
|
};
|
|
101
101
|
}),
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @summary 报账单导出
|
|
105
|
+
* @param {number} [parkId] 园区ID
|
|
106
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
107
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
108
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
109
|
+
* @param {string} [searchValue] 关键词
|
|
110
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
111
|
+
* @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
|
|
112
|
+
* @param {*} [options] Override http request option.
|
|
113
|
+
* @throws {RequiredError}
|
|
114
|
+
*/
|
|
115
|
+
reimbursementBillExport: (parkId_1, billCreateTimeStart_1, billCreateTimeEnd_1, expenseSubjects_1, searchValue_1, reimbursementStatuses_1, isDraft_1, ...args_1) => __awaiter(this, [parkId_1, billCreateTimeStart_1, billCreateTimeEnd_1, expenseSubjects_1, searchValue_1, reimbursementStatuses_1, isDraft_1, ...args_1], void 0, function* (parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, searchValue, reimbursementStatuses, isDraft, options = {}) {
|
|
116
|
+
const localVarPath = `/gizone/reimbursement-bill/export`;
|
|
117
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
118
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
119
|
+
let baseOptions;
|
|
120
|
+
if (configuration) {
|
|
121
|
+
baseOptions = configuration.baseOptions;
|
|
122
|
+
}
|
|
123
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
124
|
+
const localVarHeaderParameter = {};
|
|
125
|
+
const localVarQueryParameter = {};
|
|
126
|
+
// authentication tokenScheme required
|
|
127
|
+
// http bearer authentication required
|
|
128
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
129
|
+
if (parkId !== undefined) {
|
|
130
|
+
localVarQueryParameter['parkId'] = parkId;
|
|
131
|
+
}
|
|
132
|
+
if (billCreateTimeStart !== undefined) {
|
|
133
|
+
localVarQueryParameter['billCreateTimeStart'] = (billCreateTimeStart instanceof Date) ?
|
|
134
|
+
billCreateTimeStart.toISOString() :
|
|
135
|
+
billCreateTimeStart;
|
|
136
|
+
}
|
|
137
|
+
if (billCreateTimeEnd !== undefined) {
|
|
138
|
+
localVarQueryParameter['billCreateTimeEnd'] = (billCreateTimeEnd instanceof Date) ?
|
|
139
|
+
billCreateTimeEnd.toISOString() :
|
|
140
|
+
billCreateTimeEnd;
|
|
141
|
+
}
|
|
142
|
+
if (expenseSubjects) {
|
|
143
|
+
localVarQueryParameter['expenseSubjects'] = expenseSubjects;
|
|
144
|
+
}
|
|
145
|
+
if (searchValue !== undefined) {
|
|
146
|
+
localVarQueryParameter['searchValue'] = searchValue;
|
|
147
|
+
}
|
|
148
|
+
if (reimbursementStatuses) {
|
|
149
|
+
localVarQueryParameter['reimbursementStatuses'] = reimbursementStatuses;
|
|
150
|
+
}
|
|
151
|
+
if (isDraft !== undefined) {
|
|
152
|
+
localVarQueryParameter['isDraft'] = isDraft;
|
|
153
|
+
}
|
|
154
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
155
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
156
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
157
|
+
return {
|
|
158
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
159
|
+
options: localVarRequestOptions,
|
|
160
|
+
};
|
|
161
|
+
}),
|
|
102
162
|
/**
|
|
103
163
|
*
|
|
104
164
|
* @summary 查询报账单流转列表
|
|
@@ -167,13 +227,18 @@ const ReimbursementBillApiAxiosParamCreator = function (configuration) {
|
|
|
167
227
|
/**
|
|
168
228
|
* 查询报账单列表
|
|
169
229
|
* @summary 查询报账单列表
|
|
170
|
-
* @param {
|
|
230
|
+
* @param {number} [parkId] 园区ID
|
|
231
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
232
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
233
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
234
|
+
* @param {number} [page] 当前页
|
|
235
|
+
* @param {number} [pageSize] 每页条数
|
|
236
|
+
* @param {string} [searchValue] 关键词
|
|
237
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
171
238
|
* @param {*} [options] Override http request option.
|
|
172
239
|
* @throws {RequiredError}
|
|
173
240
|
*/
|
|
174
|
-
reimbursementBillSelectList: (
|
|
175
|
-
// verify required parameter 'dto' is not null or undefined
|
|
176
|
-
(0, common_1.assertParamExists)('reimbursementBillSelectList', 'dto', dto);
|
|
241
|
+
reimbursementBillSelectList: (parkId_1, billCreateTimeStart_1, billCreateTimeEnd_1, expenseSubjects_1, page_1, pageSize_1, searchValue_1, reimbursementStatuses_1, ...args_1) => __awaiter(this, [parkId_1, billCreateTimeStart_1, billCreateTimeEnd_1, expenseSubjects_1, page_1, pageSize_1, searchValue_1, reimbursementStatuses_1, ...args_1], void 0, function* (parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, page, pageSize, searchValue, reimbursementStatuses, options = {}) {
|
|
177
242
|
const localVarPath = `/gizone/reimbursement-bill`;
|
|
178
243
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
179
244
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -187,10 +252,33 @@ const ReimbursementBillApiAxiosParamCreator = function (configuration) {
|
|
|
187
252
|
// authentication tokenScheme required
|
|
188
253
|
// http bearer authentication required
|
|
189
254
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
190
|
-
if (
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
255
|
+
if (parkId !== undefined) {
|
|
256
|
+
localVarQueryParameter['parkId'] = parkId;
|
|
257
|
+
}
|
|
258
|
+
if (billCreateTimeStart !== undefined) {
|
|
259
|
+
localVarQueryParameter['billCreateTimeStart'] = (billCreateTimeStart instanceof Date) ?
|
|
260
|
+
billCreateTimeStart.toISOString() :
|
|
261
|
+
billCreateTimeStart;
|
|
262
|
+
}
|
|
263
|
+
if (billCreateTimeEnd !== undefined) {
|
|
264
|
+
localVarQueryParameter['billCreateTimeEnd'] = (billCreateTimeEnd instanceof Date) ?
|
|
265
|
+
billCreateTimeEnd.toISOString() :
|
|
266
|
+
billCreateTimeEnd;
|
|
267
|
+
}
|
|
268
|
+
if (expenseSubjects) {
|
|
269
|
+
localVarQueryParameter['expenseSubjects'] = expenseSubjects;
|
|
270
|
+
}
|
|
271
|
+
if (page !== undefined) {
|
|
272
|
+
localVarQueryParameter['page'] = page;
|
|
273
|
+
}
|
|
274
|
+
if (pageSize !== undefined) {
|
|
275
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
276
|
+
}
|
|
277
|
+
if (searchValue !== undefined) {
|
|
278
|
+
localVarQueryParameter['searchValue'] = searchValue;
|
|
279
|
+
}
|
|
280
|
+
if (reimbursementStatuses) {
|
|
281
|
+
localVarQueryParameter['reimbursementStatuses'] = reimbursementStatuses;
|
|
194
282
|
}
|
|
195
283
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
196
284
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -506,6 +594,28 @@ const ReimbursementBillApiFp = function (configuration) {
|
|
|
506
594
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
507
595
|
});
|
|
508
596
|
},
|
|
597
|
+
/**
|
|
598
|
+
*
|
|
599
|
+
* @summary 报账单导出
|
|
600
|
+
* @param {number} [parkId] 园区ID
|
|
601
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
602
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
603
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
604
|
+
* @param {string} [searchValue] 关键词
|
|
605
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
606
|
+
* @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
|
|
607
|
+
* @param {*} [options] Override http request option.
|
|
608
|
+
* @throws {RequiredError}
|
|
609
|
+
*/
|
|
610
|
+
reimbursementBillExport(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, searchValue, reimbursementStatuses, isDraft, options) {
|
|
611
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
612
|
+
var _a, _b, _c;
|
|
613
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.reimbursementBillExport(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, searchValue, reimbursementStatuses, isDraft, options);
|
|
614
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
615
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ReimbursementBillApi.reimbursementBillExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
616
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
617
|
+
});
|
|
618
|
+
},
|
|
509
619
|
/**
|
|
510
620
|
*
|
|
511
621
|
* @summary 查询报账单流转列表
|
|
@@ -541,14 +651,21 @@ const ReimbursementBillApiFp = function (configuration) {
|
|
|
541
651
|
/**
|
|
542
652
|
* 查询报账单列表
|
|
543
653
|
* @summary 查询报账单列表
|
|
544
|
-
* @param {
|
|
654
|
+
* @param {number} [parkId] 园区ID
|
|
655
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
656
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
657
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
658
|
+
* @param {number} [page] 当前页
|
|
659
|
+
* @param {number} [pageSize] 每页条数
|
|
660
|
+
* @param {string} [searchValue] 关键词
|
|
661
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
545
662
|
* @param {*} [options] Override http request option.
|
|
546
663
|
* @throws {RequiredError}
|
|
547
664
|
*/
|
|
548
|
-
reimbursementBillSelectList(
|
|
665
|
+
reimbursementBillSelectList(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, page, pageSize, searchValue, reimbursementStatuses, options) {
|
|
549
666
|
return __awaiter(this, void 0, void 0, function* () {
|
|
550
667
|
var _a, _b, _c;
|
|
551
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.reimbursementBillSelectList(
|
|
668
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.reimbursementBillSelectList(parkId, billCreateTimeStart, billCreateTimeEnd, expenseSubjects, page, pageSize, searchValue, reimbursementStatuses, options);
|
|
552
669
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
553
670
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ReimbursementBillApi.reimbursementBillSelectList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
554
671
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -712,6 +829,16 @@ const ReimbursementBillApiFactory = function (configuration, basePath, axios) {
|
|
|
712
829
|
reimbursementBillDetails(requestParameters, options) {
|
|
713
830
|
return localVarFp.reimbursementBillDetails(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
714
831
|
},
|
|
832
|
+
/**
|
|
833
|
+
*
|
|
834
|
+
* @summary 报账单导出
|
|
835
|
+
* @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
|
|
836
|
+
* @param {*} [options] Override http request option.
|
|
837
|
+
* @throws {RequiredError}
|
|
838
|
+
*/
|
|
839
|
+
reimbursementBillExport(requestParameters = {}, options) {
|
|
840
|
+
return localVarFp.reimbursementBillExport(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.searchValue, requestParameters.reimbursementStatuses, requestParameters.isDraft, options).then((request) => request(axios, basePath));
|
|
841
|
+
},
|
|
715
842
|
/**
|
|
716
843
|
*
|
|
717
844
|
* @summary 查询报账单流转列表
|
|
@@ -739,8 +866,8 @@ const ReimbursementBillApiFactory = function (configuration, basePath, axios) {
|
|
|
739
866
|
* @param {*} [options] Override http request option.
|
|
740
867
|
* @throws {RequiredError}
|
|
741
868
|
*/
|
|
742
|
-
reimbursementBillSelectList(requestParameters, options) {
|
|
743
|
-
return localVarFp.reimbursementBillSelectList(requestParameters.
|
|
869
|
+
reimbursementBillSelectList(requestParameters = {}, options) {
|
|
870
|
+
return localVarFp.reimbursementBillSelectList(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.reimbursementStatuses, options).then((request) => request(axios, basePath));
|
|
744
871
|
},
|
|
745
872
|
/**
|
|
746
873
|
* 提交报账单
|
|
@@ -852,6 +979,17 @@ class ReimbursementBillApi extends base_1.BaseAPI {
|
|
|
852
979
|
reimbursementBillDetails(requestParameters, options) {
|
|
853
980
|
return (0, exports.ReimbursementBillApiFp)(this.configuration).reimbursementBillDetails(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
854
981
|
}
|
|
982
|
+
/**
|
|
983
|
+
*
|
|
984
|
+
* @summary 报账单导出
|
|
985
|
+
* @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
|
|
986
|
+
* @param {*} [options] Override http request option.
|
|
987
|
+
* @throws {RequiredError}
|
|
988
|
+
* @memberof ReimbursementBillApi
|
|
989
|
+
*/
|
|
990
|
+
reimbursementBillExport(requestParameters = {}, options) {
|
|
991
|
+
return (0, exports.ReimbursementBillApiFp)(this.configuration).reimbursementBillExport(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.searchValue, requestParameters.reimbursementStatuses, requestParameters.isDraft, options).then((request) => request(this.axios, this.basePath));
|
|
992
|
+
}
|
|
855
993
|
/**
|
|
856
994
|
*
|
|
857
995
|
* @summary 查询报账单流转列表
|
|
@@ -882,8 +1020,8 @@ class ReimbursementBillApi extends base_1.BaseAPI {
|
|
|
882
1020
|
* @throws {RequiredError}
|
|
883
1021
|
* @memberof ReimbursementBillApi
|
|
884
1022
|
*/
|
|
885
|
-
reimbursementBillSelectList(requestParameters, options) {
|
|
886
|
-
return (0, exports.ReimbursementBillApiFp)(this.configuration).reimbursementBillSelectList(requestParameters.
|
|
1023
|
+
reimbursementBillSelectList(requestParameters = {}, options) {
|
|
1024
|
+
return (0, exports.ReimbursementBillApiFp)(this.configuration).reimbursementBillSelectList(requestParameters.parkId, requestParameters.billCreateTimeStart, requestParameters.billCreateTimeEnd, requestParameters.expenseSubjects, requestParameters.page, requestParameters.pageSize, requestParameters.searchValue, requestParameters.reimbursementStatuses, options).then((request) => request(this.axios, this.basePath));
|
|
887
1025
|
}
|
|
888
1026
|
/**
|
|
889
1027
|
* 提交报账单
|
|
@@ -13,6 +13,7 @@ import type { Configuration } from '../configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { BudgetBalanceQueryDto } from '../models';
|
|
16
|
+
import type { ExpenseSubjectEnum } from '../models';
|
|
16
17
|
import type { JsonResultBoolean } from '../models';
|
|
17
18
|
import type { JsonResultCzyBudgetBalanceVo } from '../models';
|
|
18
19
|
import type { JsonResultCzySystemOrganizationMemberDetailVo } from '../models';
|
|
@@ -25,8 +26,8 @@ import type { JsonResultListReimbursementBillProcessRecordListVo } from '../mode
|
|
|
25
26
|
import type { JsonResultPageDtoReimbursementBillListVo } from '../models';
|
|
26
27
|
import type { JsonResultReimbursementBillDetailsVo } from '../models';
|
|
27
28
|
import type { ReimbursementBillDraftDto } from '../models';
|
|
28
|
-
import type { ReimbursementBillSearchDto } from '../models';
|
|
29
29
|
import type { ReimbursementBillSubmitDto } from '../models';
|
|
30
|
+
import type { ReimbursementStatusEnum } from '../models';
|
|
30
31
|
/**
|
|
31
32
|
* ReimbursementBillApi - axios parameter creator
|
|
32
33
|
* @export
|
|
@@ -48,6 +49,20 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
|
|
|
48
49
|
* @throws {RequiredError}
|
|
49
50
|
*/
|
|
50
51
|
reimbursementBillDetails: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @summary 报账单导出
|
|
55
|
+
* @param {number} [parkId] 园区ID
|
|
56
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
57
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
58
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
59
|
+
* @param {string} [searchValue] 关键词
|
|
60
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
61
|
+
* @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
|
|
62
|
+
* @param {*} [options] Override http request option.
|
|
63
|
+
* @throws {RequiredError}
|
|
64
|
+
*/
|
|
65
|
+
reimbursementBillExport: (parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, isDraft?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51
66
|
/**
|
|
52
67
|
*
|
|
53
68
|
* @summary 查询报账单流转列表
|
|
@@ -67,11 +82,18 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
|
|
|
67
82
|
/**
|
|
68
83
|
* 查询报账单列表
|
|
69
84
|
* @summary 查询报账单列表
|
|
70
|
-
* @param {
|
|
85
|
+
* @param {number} [parkId] 园区ID
|
|
86
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
87
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
88
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
89
|
+
* @param {number} [page] 当前页
|
|
90
|
+
* @param {number} [pageSize] 每页条数
|
|
91
|
+
* @param {string} [searchValue] 关键词
|
|
92
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
71
93
|
* @param {*} [options] Override http request option.
|
|
72
94
|
* @throws {RequiredError}
|
|
73
95
|
*/
|
|
74
|
-
reimbursementBillSelectList: (
|
|
96
|
+
reimbursementBillSelectList: (parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, page?: number, pageSize?: number, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
75
97
|
/**
|
|
76
98
|
* 提交报账单
|
|
77
99
|
* @summary 提交报账单
|
|
@@ -158,6 +180,20 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
|
|
|
158
180
|
* @throws {RequiredError}
|
|
159
181
|
*/
|
|
160
182
|
reimbursementBillDetails(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultReimbursementBillDetailsVo>>;
|
|
183
|
+
/**
|
|
184
|
+
*
|
|
185
|
+
* @summary 报账单导出
|
|
186
|
+
* @param {number} [parkId] 园区ID
|
|
187
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
188
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
189
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
190
|
+
* @param {string} [searchValue] 关键词
|
|
191
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
192
|
+
* @param {number} [isDraft] 是否导出草稿 0:否 1:是 默认0
|
|
193
|
+
* @param {*} [options] Override http request option.
|
|
194
|
+
* @throws {RequiredError}
|
|
195
|
+
*/
|
|
196
|
+
reimbursementBillExport(parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, isDraft?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
161
197
|
/**
|
|
162
198
|
*
|
|
163
199
|
* @summary 查询报账单流转列表
|
|
@@ -177,11 +213,18 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
|
|
|
177
213
|
/**
|
|
178
214
|
* 查询报账单列表
|
|
179
215
|
* @summary 查询报账单列表
|
|
180
|
-
* @param {
|
|
216
|
+
* @param {number} [parkId] 园区ID
|
|
217
|
+
* @param {string} [billCreateTimeStart] 报账单生成时间(开始)
|
|
218
|
+
* @param {string} [billCreateTimeEnd] 报账单生成时间(结束)
|
|
219
|
+
* @param {Array<ExpenseSubjectEnum>} [expenseSubjects] 费用科目
|
|
220
|
+
* @param {number} [page] 当前页
|
|
221
|
+
* @param {number} [pageSize] 每页条数
|
|
222
|
+
* @param {string} [searchValue] 关键词
|
|
223
|
+
* @param {Array<ReimbursementStatusEnum>} [reimbursementStatuses] 账单状态
|
|
181
224
|
* @param {*} [options] Override http request option.
|
|
182
225
|
* @throws {RequiredError}
|
|
183
226
|
*/
|
|
184
|
-
reimbursementBillSelectList(
|
|
227
|
+
reimbursementBillSelectList(parkId?: number, billCreateTimeStart?: string, billCreateTimeEnd?: string, expenseSubjects?: Array<ExpenseSubjectEnum>, page?: number, pageSize?: number, searchValue?: string, reimbursementStatuses?: Array<ReimbursementStatusEnum>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoReimbursementBillListVo>>;
|
|
185
228
|
/**
|
|
186
229
|
* 提交报账单
|
|
187
230
|
* @summary 提交报账单
|
|
@@ -268,6 +311,14 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
|
|
|
268
311
|
* @throws {RequiredError}
|
|
269
312
|
*/
|
|
270
313
|
reimbursementBillDetails(requestParameters: ReimbursementBillApiReimbursementBillDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultReimbursementBillDetailsVo>;
|
|
314
|
+
/**
|
|
315
|
+
*
|
|
316
|
+
* @summary 报账单导出
|
|
317
|
+
* @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
|
|
318
|
+
* @param {*} [options] Override http request option.
|
|
319
|
+
* @throws {RequiredError}
|
|
320
|
+
*/
|
|
321
|
+
reimbursementBillExport(requestParameters?: ReimbursementBillApiReimbursementBillExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
271
322
|
/**
|
|
272
323
|
*
|
|
273
324
|
* @summary 查询报账单流转列表
|
|
@@ -291,7 +342,7 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
|
|
|
291
342
|
* @param {*} [options] Override http request option.
|
|
292
343
|
* @throws {RequiredError}
|
|
293
344
|
*/
|
|
294
|
-
reimbursementBillSelectList(requestParameters
|
|
345
|
+
reimbursementBillSelectList(requestParameters?: ReimbursementBillApiReimbursementBillSelectListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoReimbursementBillListVo>;
|
|
295
346
|
/**
|
|
296
347
|
* 提交报账单
|
|
297
348
|
* @summary 提交报账单
|
|
@@ -381,6 +432,55 @@ export interface ReimbursementBillApiReimbursementBillDetailsRequest {
|
|
|
381
432
|
*/
|
|
382
433
|
readonly id: number;
|
|
383
434
|
}
|
|
435
|
+
/**
|
|
436
|
+
* Request parameters for reimbursementBillExport operation in ReimbursementBillApi.
|
|
437
|
+
* @export
|
|
438
|
+
* @interface ReimbursementBillApiReimbursementBillExportRequest
|
|
439
|
+
*/
|
|
440
|
+
export interface ReimbursementBillApiReimbursementBillExportRequest {
|
|
441
|
+
/**
|
|
442
|
+
* 园区ID
|
|
443
|
+
* @type {number}
|
|
444
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
445
|
+
*/
|
|
446
|
+
readonly parkId?: number;
|
|
447
|
+
/**
|
|
448
|
+
* 报账单生成时间(开始)
|
|
449
|
+
* @type {string}
|
|
450
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
451
|
+
*/
|
|
452
|
+
readonly billCreateTimeStart?: string;
|
|
453
|
+
/**
|
|
454
|
+
* 报账单生成时间(结束)
|
|
455
|
+
* @type {string}
|
|
456
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
457
|
+
*/
|
|
458
|
+
readonly billCreateTimeEnd?: string;
|
|
459
|
+
/**
|
|
460
|
+
* 费用科目
|
|
461
|
+
* @type {Array<ExpenseSubjectEnum>}
|
|
462
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
463
|
+
*/
|
|
464
|
+
readonly expenseSubjects?: Array<ExpenseSubjectEnum>;
|
|
465
|
+
/**
|
|
466
|
+
* 关键词
|
|
467
|
+
* @type {string}
|
|
468
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
469
|
+
*/
|
|
470
|
+
readonly searchValue?: string;
|
|
471
|
+
/**
|
|
472
|
+
* 账单状态
|
|
473
|
+
* @type {Array<ReimbursementStatusEnum>}
|
|
474
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
475
|
+
*/
|
|
476
|
+
readonly reimbursementStatuses?: Array<ReimbursementStatusEnum>;
|
|
477
|
+
/**
|
|
478
|
+
* 是否导出草稿 0:否 1:是 默认0
|
|
479
|
+
* @type {number}
|
|
480
|
+
* @memberof ReimbursementBillApiReimbursementBillExport
|
|
481
|
+
*/
|
|
482
|
+
readonly isDraft?: number;
|
|
483
|
+
}
|
|
384
484
|
/**
|
|
385
485
|
* Request parameters for reimbursementBillProcessRecordList operation in ReimbursementBillApi.
|
|
386
486
|
* @export
|
|
@@ -414,11 +514,53 @@ export interface ReimbursementBillApiReimbursementBillSaveDraftRequest {
|
|
|
414
514
|
*/
|
|
415
515
|
export interface ReimbursementBillApiReimbursementBillSelectListRequest {
|
|
416
516
|
/**
|
|
417
|
-
*
|
|
418
|
-
* @type {
|
|
517
|
+
* 园区ID
|
|
518
|
+
* @type {number}
|
|
519
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
520
|
+
*/
|
|
521
|
+
readonly parkId?: number;
|
|
522
|
+
/**
|
|
523
|
+
* 报账单生成时间(开始)
|
|
524
|
+
* @type {string}
|
|
525
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
526
|
+
*/
|
|
527
|
+
readonly billCreateTimeStart?: string;
|
|
528
|
+
/**
|
|
529
|
+
* 报账单生成时间(结束)
|
|
530
|
+
* @type {string}
|
|
531
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
532
|
+
*/
|
|
533
|
+
readonly billCreateTimeEnd?: string;
|
|
534
|
+
/**
|
|
535
|
+
* 费用科目
|
|
536
|
+
* @type {Array<ExpenseSubjectEnum>}
|
|
537
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
538
|
+
*/
|
|
539
|
+
readonly expenseSubjects?: Array<ExpenseSubjectEnum>;
|
|
540
|
+
/**
|
|
541
|
+
* 当前页
|
|
542
|
+
* @type {number}
|
|
543
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
544
|
+
*/
|
|
545
|
+
readonly page?: number;
|
|
546
|
+
/**
|
|
547
|
+
* 每页条数
|
|
548
|
+
* @type {number}
|
|
549
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
550
|
+
*/
|
|
551
|
+
readonly pageSize?: number;
|
|
552
|
+
/**
|
|
553
|
+
* 关键词
|
|
554
|
+
* @type {string}
|
|
419
555
|
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
420
556
|
*/
|
|
421
|
-
readonly
|
|
557
|
+
readonly searchValue?: string;
|
|
558
|
+
/**
|
|
559
|
+
* 账单状态
|
|
560
|
+
* @type {Array<ReimbursementStatusEnum>}
|
|
561
|
+
* @memberof ReimbursementBillApiReimbursementBillSelectList
|
|
562
|
+
*/
|
|
563
|
+
readonly reimbursementStatuses?: Array<ReimbursementStatusEnum>;
|
|
422
564
|
}
|
|
423
565
|
/**
|
|
424
566
|
* Request parameters for reimbursementBillSubmit operation in ReimbursementBillApi.
|
|
@@ -535,6 +677,15 @@ export declare class ReimbursementBillApi extends BaseAPI {
|
|
|
535
677
|
* @memberof ReimbursementBillApi
|
|
536
678
|
*/
|
|
537
679
|
reimbursementBillDetails(requestParameters: ReimbursementBillApiReimbursementBillDetailsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultReimbursementBillDetailsVo, any, {}>>;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @summary 报账单导出
|
|
683
|
+
* @param {ReimbursementBillApiReimbursementBillExportRequest} requestParameters Request parameters.
|
|
684
|
+
* @param {*} [options] Override http request option.
|
|
685
|
+
* @throws {RequiredError}
|
|
686
|
+
* @memberof ReimbursementBillApi
|
|
687
|
+
*/
|
|
688
|
+
reimbursementBillExport(requestParameters?: ReimbursementBillApiReimbursementBillExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
538
689
|
/**
|
|
539
690
|
*
|
|
540
691
|
* @summary 查询报账单流转列表
|
|
@@ -561,7 +712,7 @@ export declare class ReimbursementBillApi extends BaseAPI {
|
|
|
561
712
|
* @throws {RequiredError}
|
|
562
713
|
* @memberof ReimbursementBillApi
|
|
563
714
|
*/
|
|
564
|
-
reimbursementBillSelectList(requestParameters
|
|
715
|
+
reimbursementBillSelectList(requestParameters?: ReimbursementBillApiReimbursementBillSelectListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultPageDtoReimbursementBillListVo, any, {}>>;
|
|
565
716
|
/**
|
|
566
717
|
* 提交报账单
|
|
567
718
|
* @summary 提交报账单
|