@gizone/rrs-client 4.2.9-alpha.659 → 4.2.9-alpha.661
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 +1 -1
- package/apis/reimbursement-bill-api.ts +18 -5
- package/dist/apis/reimbursement-bill-api.d.ts +10 -2
- package/dist/apis/reimbursement-bill-api.js +10 -5
- package/dist/esm/apis/reimbursement-bill-api.d.ts +10 -2
- package/dist/esm/apis/reimbursement-bill-api.js +10 -5
- package/dist/esm/models/index.d.ts +1 -1
- package/dist/esm/models/index.js +1 -1
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/esm/models/payment-method-enum.d.ts +1 -2
- package/dist/esm/models/payment-method-enum.js +2 -3
- package/dist/esm/models/reimbursement-bill-cover-info.d.ts +84 -0
- package/dist/esm/models/{reimbursement-bill-process-type-enum.js → reimbursement-bill-cover-info.js} +1 -10
- package/dist/esm/models/reimbursement-bill-details-vo.d.ts +49 -0
- package/dist/esm/models/reimbursement-bill-draft-dto.d.ts +12 -0
- package/dist/esm/models/reimbursement-bill-list-vo.d.ts +49 -0
- package/dist/esm/models/reimbursement-bill-process-record-list-vo.d.ts +5 -6
- package/dist/esm/models/reimbursement-bill-submit-dto.d.ts +12 -0
- package/dist/esm/models/reimbursement-status-enum.d.ts +4 -2
- package/dist/esm/models/reimbursement-status-enum.js +5 -3
- package/dist/models/index.d.ts +1 -1
- package/dist/models/index.js +1 -1
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +4 -4
- package/dist/models/payment-method-enum.d.ts +1 -2
- package/dist/models/payment-method-enum.js +2 -3
- package/dist/models/reimbursement-bill-cover-info.d.ts +84 -0
- package/dist/models/{reimbursement-bill-process-type-enum.js → reimbursement-bill-cover-info.js} +0 -11
- package/dist/models/reimbursement-bill-details-vo.d.ts +49 -0
- package/dist/models/reimbursement-bill-draft-dto.d.ts +12 -0
- package/dist/models/reimbursement-bill-list-vo.d.ts +49 -0
- package/dist/models/reimbursement-bill-process-record-list-vo.d.ts +5 -6
- package/dist/models/reimbursement-bill-submit-dto.d.ts +12 -0
- package/dist/models/reimbursement-status-enum.d.ts +4 -2
- package/dist/models/reimbursement-status-enum.js +5 -3
- package/models/index.ts +1 -1
- package/models/ipage-energy-cost-record-info-vo.ts +4 -4
- package/models/payment-method-enum.ts +2 -3
- package/models/reimbursement-bill-cover-info.ts +90 -0
- package/models/reimbursement-bill-details-vo.ts +51 -0
- package/models/reimbursement-bill-draft-dto.ts +12 -0
- package/models/reimbursement-bill-list-vo.ts +51 -0
- package/models/reimbursement-bill-process-record-list-vo.ts +5 -10
- package/models/reimbursement-bill-submit-dto.ts +12 -0
- package/models/reimbursement-status-enum.ts +5 -3
- package/ossutil.log +1194 -1188
- package/package.json +1 -1
- package/dist/esm/models/reimbursement-bill-process-type-enum.d.ts +0 -22
- package/dist/models/reimbursement-bill-process-type-enum.d.ts +0 -22
- package/models/reimbursement-bill-process-type-enum.ts +0 -32
|
@@ -24,6 +24,9 @@ import type { InvoiceTypeEnum } from './invoice-type-enum';
|
|
|
24
24
|
import type { PaymentMethodEnum } from './payment-method-enum';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import type { ReimbursementBillCoverInfo } from './reimbursement-bill-cover-info';
|
|
28
|
+
// May contain unused imports in some cases
|
|
29
|
+
// @ts-ignore
|
|
27
30
|
import type { ReimbursementBillHandleInfoVo } from './reimbursement-bill-handle-info-vo';
|
|
28
31
|
// May contain unused imports in some cases
|
|
29
32
|
// @ts-ignore
|
|
@@ -107,6 +110,12 @@ export interface ReimbursementBillDetailsVo {
|
|
|
107
110
|
* @memberof ReimbursementBillDetailsVo
|
|
108
111
|
*/
|
|
109
112
|
'paymentMethod'?: PaymentMethodEnum;
|
|
113
|
+
/**
|
|
114
|
+
* 付款类型
|
|
115
|
+
* @type {number}
|
|
116
|
+
* @memberof ReimbursementBillDetailsVo
|
|
117
|
+
*/
|
|
118
|
+
'payType'?: number;
|
|
110
119
|
/**
|
|
111
120
|
* 付款日期
|
|
112
121
|
* @type {string}
|
|
@@ -149,6 +158,12 @@ export interface ReimbursementBillDetailsVo {
|
|
|
149
158
|
* @memberof ReimbursementBillDetailsVo
|
|
150
159
|
*/
|
|
151
160
|
'invoiceType'?: InvoiceTypeEnum;
|
|
161
|
+
/**
|
|
162
|
+
* 是否有纸质发票
|
|
163
|
+
* @type {boolean}
|
|
164
|
+
* @memberof ReimbursementBillDetailsVo
|
|
165
|
+
*/
|
|
166
|
+
'hasPaperInvoice'?: boolean;
|
|
152
167
|
/**
|
|
153
168
|
* 是否有合同
|
|
154
169
|
* @type {boolean}
|
|
@@ -251,6 +266,42 @@ export interface ReimbursementBillDetailsVo {
|
|
|
251
266
|
* @memberof ReimbursementBillDetailsVo
|
|
252
267
|
*/
|
|
253
268
|
'reimbursementStatus'?: ReimbursementStatusEnum;
|
|
269
|
+
/**
|
|
270
|
+
* 是否已进行场景分摊
|
|
271
|
+
* @type {boolean}
|
|
272
|
+
* @memberof ReimbursementBillDetailsVo
|
|
273
|
+
*/
|
|
274
|
+
'scenarioAllocated'?: boolean;
|
|
275
|
+
/**
|
|
276
|
+
* 明细单号
|
|
277
|
+
* @type {string}
|
|
278
|
+
* @memberof ReimbursementBillDetailsVo
|
|
279
|
+
*/
|
|
280
|
+
'detailedOrderNo'?: string;
|
|
281
|
+
/**
|
|
282
|
+
* 财智云返回预算占用单号
|
|
283
|
+
* @type {string}
|
|
284
|
+
* @memberof ReimbursementBillDetailsVo
|
|
285
|
+
*/
|
|
286
|
+
'occupyNo'?: string;
|
|
287
|
+
/**
|
|
288
|
+
* 财智云报账申请单号
|
|
289
|
+
* @type {string}
|
|
290
|
+
* @memberof ReimbursementBillDetailsVo
|
|
291
|
+
*/
|
|
292
|
+
'fdcNo'?: string;
|
|
293
|
+
/**
|
|
294
|
+
* 报账平台BZD单号
|
|
295
|
+
* @type {string}
|
|
296
|
+
* @memberof ReimbursementBillDetailsVo
|
|
297
|
+
*/
|
|
298
|
+
'reimNo'?: string;
|
|
299
|
+
/**
|
|
300
|
+
*
|
|
301
|
+
* @type {ReimbursementBillCoverInfo}
|
|
302
|
+
* @memberof ReimbursementBillDetailsVo
|
|
303
|
+
*/
|
|
304
|
+
'billCover'?: ReimbursementBillCoverInfo;
|
|
254
305
|
}
|
|
255
306
|
|
|
256
307
|
export const ReimbursementBillDetailsVoTaxTypeEnum = {
|
|
@@ -98,6 +98,12 @@ export interface ReimbursementBillDraftDto {
|
|
|
98
98
|
* @memberof ReimbursementBillDraftDto
|
|
99
99
|
*/
|
|
100
100
|
'paymentMethod'?: PaymentMethodEnum;
|
|
101
|
+
/**
|
|
102
|
+
* 付款类型
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof ReimbursementBillDraftDto
|
|
105
|
+
*/
|
|
106
|
+
'payType'?: number;
|
|
101
107
|
/**
|
|
102
108
|
* 付款日期
|
|
103
109
|
* @type {string}
|
|
@@ -146,6 +152,12 @@ export interface ReimbursementBillDraftDto {
|
|
|
146
152
|
* @memberof ReimbursementBillDraftDto
|
|
147
153
|
*/
|
|
148
154
|
'invoiceType'?: InvoiceTypeEnum;
|
|
155
|
+
/**
|
|
156
|
+
* 是否有纸质发票
|
|
157
|
+
* @type {boolean}
|
|
158
|
+
* @memberof ReimbursementBillDraftDto
|
|
159
|
+
*/
|
|
160
|
+
'hasPaperInvoice'?: boolean;
|
|
149
161
|
/**
|
|
150
162
|
* 是否有合同
|
|
151
163
|
* @type {boolean}
|
|
@@ -24,6 +24,9 @@ import type { InvoiceTypeEnum } from './invoice-type-enum';
|
|
|
24
24
|
import type { PaymentMethodEnum } from './payment-method-enum';
|
|
25
25
|
// May contain unused imports in some cases
|
|
26
26
|
// @ts-ignore
|
|
27
|
+
import type { ReimbursementBillCoverInfo } from './reimbursement-bill-cover-info';
|
|
28
|
+
// May contain unused imports in some cases
|
|
29
|
+
// @ts-ignore
|
|
27
30
|
import type { ReimbursementStatusEnum } from './reimbursement-status-enum';
|
|
28
31
|
|
|
29
32
|
/**
|
|
@@ -116,6 +119,12 @@ export interface ReimbursementBillListVo {
|
|
|
116
119
|
* @memberof ReimbursementBillListVo
|
|
117
120
|
*/
|
|
118
121
|
'paymentMethod'?: PaymentMethodEnum;
|
|
122
|
+
/**
|
|
123
|
+
* 付款类型
|
|
124
|
+
* @type {number}
|
|
125
|
+
* @memberof ReimbursementBillListVo
|
|
126
|
+
*/
|
|
127
|
+
'payType'?: number;
|
|
119
128
|
/**
|
|
120
129
|
* 付款方(编码)
|
|
121
130
|
* @type {string}
|
|
@@ -128,6 +137,12 @@ export interface ReimbursementBillListVo {
|
|
|
128
137
|
* @memberof ReimbursementBillListVo
|
|
129
138
|
*/
|
|
130
139
|
'invoiceType'?: InvoiceTypeEnum;
|
|
140
|
+
/**
|
|
141
|
+
* 是否有纸质发票
|
|
142
|
+
* @type {boolean}
|
|
143
|
+
* @memberof ReimbursementBillListVo
|
|
144
|
+
*/
|
|
145
|
+
'hasPaperInvoice'?: boolean;
|
|
131
146
|
/**
|
|
132
147
|
* 付款日期
|
|
133
148
|
* @type {string}
|
|
@@ -152,6 +167,42 @@ export interface ReimbursementBillListVo {
|
|
|
152
167
|
* @memberof ReimbursementBillListVo
|
|
153
168
|
*/
|
|
154
169
|
'handlerUserId'?: number;
|
|
170
|
+
/**
|
|
171
|
+
* 是否已进行场景分摊
|
|
172
|
+
* @type {boolean}
|
|
173
|
+
* @memberof ReimbursementBillListVo
|
|
174
|
+
*/
|
|
175
|
+
'scenarioAllocated'?: boolean;
|
|
176
|
+
/**
|
|
177
|
+
* 明细单号
|
|
178
|
+
* @type {string}
|
|
179
|
+
* @memberof ReimbursementBillListVo
|
|
180
|
+
*/
|
|
181
|
+
'detailedOrderNo'?: string;
|
|
182
|
+
/**
|
|
183
|
+
* 财智云返回预算占用单号
|
|
184
|
+
* @type {string}
|
|
185
|
+
* @memberof ReimbursementBillListVo
|
|
186
|
+
*/
|
|
187
|
+
'occupyNo'?: string;
|
|
188
|
+
/**
|
|
189
|
+
* 财智云报账申请单号
|
|
190
|
+
* @type {string}
|
|
191
|
+
* @memberof ReimbursementBillListVo
|
|
192
|
+
*/
|
|
193
|
+
'fdcNo'?: string;
|
|
194
|
+
/**
|
|
195
|
+
* 报账平台BZD单号
|
|
196
|
+
* @type {string}
|
|
197
|
+
* @memberof ReimbursementBillListVo
|
|
198
|
+
*/
|
|
199
|
+
'reimNo'?: string;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @type {ReimbursementBillCoverInfo}
|
|
203
|
+
* @memberof ReimbursementBillListVo
|
|
204
|
+
*/
|
|
205
|
+
'billCover'?: ReimbursementBillCoverInfo;
|
|
155
206
|
}
|
|
156
207
|
|
|
157
208
|
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
// May contain unused imports in some cases
|
|
17
|
-
// @ts-ignore
|
|
18
|
-
import type { ReimbursementBillProcessTypeEnum } from './reimbursement-bill-process-type-enum';
|
|
19
16
|
|
|
20
17
|
/**
|
|
21
18
|
* 报账单流转列表
|
|
@@ -30,11 +27,11 @@ export interface ReimbursementBillProcessRecordListVo {
|
|
|
30
27
|
*/
|
|
31
28
|
'reimbursementBillId'?: number;
|
|
32
29
|
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {
|
|
30
|
+
* 过程类型
|
|
31
|
+
* @type {string}
|
|
35
32
|
* @memberof ReimbursementBillProcessRecordListVo
|
|
36
33
|
*/
|
|
37
|
-
'processType'?:
|
|
34
|
+
'processType'?: string;
|
|
38
35
|
/**
|
|
39
36
|
* 处理人id
|
|
40
37
|
* @type {number}
|
|
@@ -54,12 +51,10 @@ export interface ReimbursementBillProcessRecordListVo {
|
|
|
54
51
|
*/
|
|
55
52
|
'handlerTime'?: string;
|
|
56
53
|
/**
|
|
57
|
-
*
|
|
54
|
+
* 备注
|
|
58
55
|
* @type {string}
|
|
59
56
|
* @memberof ReimbursementBillProcessRecordListVo
|
|
60
57
|
*/
|
|
61
|
-
'
|
|
58
|
+
'remarks'?: string;
|
|
62
59
|
}
|
|
63
60
|
|
|
64
|
-
|
|
65
|
-
|
|
@@ -98,6 +98,12 @@ export interface ReimbursementBillSubmitDto {
|
|
|
98
98
|
* @memberof ReimbursementBillSubmitDto
|
|
99
99
|
*/
|
|
100
100
|
'paymentMethod': PaymentMethodEnum;
|
|
101
|
+
/**
|
|
102
|
+
* 付款类型
|
|
103
|
+
* @type {number}
|
|
104
|
+
* @memberof ReimbursementBillSubmitDto
|
|
105
|
+
*/
|
|
106
|
+
'payType': number;
|
|
101
107
|
/**
|
|
102
108
|
* 付款日期
|
|
103
109
|
* @type {string}
|
|
@@ -146,6 +152,12 @@ export interface ReimbursementBillSubmitDto {
|
|
|
146
152
|
* @memberof ReimbursementBillSubmitDto
|
|
147
153
|
*/
|
|
148
154
|
'invoiceType': InvoiceTypeEnum;
|
|
155
|
+
/**
|
|
156
|
+
* 是否有纸质发票
|
|
157
|
+
* @type {boolean}
|
|
158
|
+
* @memberof ReimbursementBillSubmitDto
|
|
159
|
+
*/
|
|
160
|
+
'hasPaperInvoice': boolean;
|
|
149
161
|
/**
|
|
150
162
|
* 是否有合同
|
|
151
163
|
* @type {boolean}
|
|
@@ -23,9 +23,11 @@
|
|
|
23
23
|
export const ReimbursementStatusEnum = {
|
|
24
24
|
Draft: 'DRAFT',
|
|
25
25
|
Submitted: 'SUBMITTED',
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
BudgetOccupied: 'BUDGET_OCCUPIED',
|
|
27
|
+
ReimbursementSuccess: 'REIMBURSEMENT_SUCCESS',
|
|
28
|
+
Processing: 'PROCESSING',
|
|
29
|
+
Completed: 'COMPLETED',
|
|
30
|
+
Canceled: 'CANCELED'
|
|
29
31
|
} as const;
|
|
30
32
|
|
|
31
33
|
export type ReimbursementStatusEnum = typeof ReimbursementStatusEnum[keyof typeof ReimbursementStatusEnum];
|