@gizone/rrs-client 4.2.9-alpha.658 → 4.2.9-alpha.660

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.
Files changed (43) hide show
  1. package/.openapi-generator/FILES +0 -1
  2. package/apis/reimbursement-bill-api.ts +296 -20
  3. package/dist/apis/reimbursement-bill-api.d.ts +169 -10
  4. package/dist/apis/reimbursement-bill-api.js +158 -15
  5. package/dist/esm/apis/reimbursement-bill-api.d.ts +169 -10
  6. package/dist/esm/apis/reimbursement-bill-api.js +158 -15
  7. package/dist/esm/models/index.d.ts +0 -1
  8. package/dist/esm/models/index.js +0 -1
  9. package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
  10. package/dist/esm/models/payment-method-enum.d.ts +1 -2
  11. package/dist/esm/models/payment-method-enum.js +2 -3
  12. package/dist/esm/models/reimbursement-bill-details-vo.d.ts +12 -0
  13. package/dist/esm/models/reimbursement-bill-draft-dto.d.ts +12 -0
  14. package/dist/esm/models/reimbursement-bill-list-vo.d.ts +12 -0
  15. package/dist/esm/models/reimbursement-bill-submit-dto.d.ts +12 -0
  16. package/dist/esm/models/reimbursement-status-enum.d.ts +5 -3
  17. package/dist/esm/models/reimbursement-status-enum.js +6 -4
  18. package/dist/models/index.d.ts +0 -1
  19. package/dist/models/index.js +0 -1
  20. package/dist/models/ipage-energy-cost-record-info-vo.d.ts +6 -6
  21. package/dist/models/payment-method-enum.d.ts +1 -2
  22. package/dist/models/payment-method-enum.js +2 -3
  23. package/dist/models/reimbursement-bill-details-vo.d.ts +12 -0
  24. package/dist/models/reimbursement-bill-draft-dto.d.ts +12 -0
  25. package/dist/models/reimbursement-bill-list-vo.d.ts +12 -0
  26. package/dist/models/reimbursement-bill-submit-dto.d.ts +12 -0
  27. package/dist/models/reimbursement-status-enum.d.ts +5 -3
  28. package/dist/models/reimbursement-status-enum.js +6 -4
  29. package/models/index.ts +0 -1
  30. package/models/ipage-energy-cost-record-info-vo.ts +6 -6
  31. package/models/payment-method-enum.ts +2 -3
  32. package/models/reimbursement-bill-details-vo.ts +12 -0
  33. package/models/reimbursement-bill-draft-dto.ts +12 -0
  34. package/models/reimbursement-bill-list-vo.ts +12 -0
  35. package/models/reimbursement-bill-submit-dto.ts +12 -0
  36. package/models/reimbursement-status-enum.ts +6 -4
  37. package/ossutil.log +1191 -1185
  38. package/package.json +1 -1
  39. package/dist/esm/models/reimbursement-bill-search-dto.d.ts +0 -68
  40. package/dist/esm/models/reimbursement-bill-search-dto.js +0 -14
  41. package/dist/models/reimbursement-bill-search-dto.d.ts +0 -68
  42. package/dist/models/reimbursement-bill-search-dto.js +0 -15
  43. package/models/reimbursement-bill-search-dto.ts +0 -78
@@ -85,6 +85,12 @@ export interface ReimbursementBillSubmitDto {
85
85
  * @memberof ReimbursementBillSubmitDto
86
86
  */
87
87
  'paymentMethod': PaymentMethodEnum;
88
+ /**
89
+ * 付款类型
90
+ * @type {number}
91
+ * @memberof ReimbursementBillSubmitDto
92
+ */
93
+ 'payType': number;
88
94
  /**
89
95
  * 付款日期
90
96
  * @type {string}
@@ -133,6 +139,12 @@ export interface ReimbursementBillSubmitDto {
133
139
  * @memberof ReimbursementBillSubmitDto
134
140
  */
135
141
  'invoiceType': InvoiceTypeEnum;
142
+ /**
143
+ * 是否有纸质发票
144
+ * @type {boolean}
145
+ * @memberof ReimbursementBillSubmitDto
146
+ */
147
+ 'hasPaperInvoice': boolean;
136
148
  /**
137
149
  * 是否有合同
138
150
  * @type {boolean}
@@ -10,15 +10,17 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 账单状态
13
+ *
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
17
17
  export declare const ReimbursementStatusEnum: {
18
18
  readonly Draft: "DRAFT";
19
19
  readonly Submitted: "SUBMITTED";
20
- readonly Revoked: "REVOKED";
21
- readonly Rejected: "REJECTED";
20
+ readonly BudgetOccupied: "BUDGET_OCCUPIED";
21
+ readonly ReimbursementSuccess: "REIMBURSEMENT_SUCCESS";
22
+ readonly Processing: "PROCESSING";
22
23
  readonly Completed: "COMPLETED";
24
+ readonly Canceled: "CANCELED";
23
25
  };
24
26
  export type ReimbursementStatusEnum = typeof ReimbursementStatusEnum[keyof typeof ReimbursementStatusEnum];
@@ -12,14 +12,16 @@
12
12
  * Do not edit the class manually.
13
13
  */
14
14
  /**
15
- * 账单状态
15
+ *
16
16
  * @export
17
17
  * @enum {string}
18
18
  */
19
19
  export const ReimbursementStatusEnum = {
20
20
  Draft: 'DRAFT',
21
21
  Submitted: 'SUBMITTED',
22
- Revoked: 'REVOKED',
23
- Rejected: 'REJECTED',
24
- Completed: 'COMPLETED'
22
+ BudgetOccupied: 'BUDGET_OCCUPIED',
23
+ ReimbursementSuccess: 'REIMBURSEMENT_SUCCESS',
24
+ Processing: 'PROCESSING',
25
+ Completed: 'COMPLETED',
26
+ Canceled: 'CANCELED'
25
27
  };
@@ -485,7 +485,6 @@ export * from './reimbursement-bill-list-vo';
485
485
  export * from './reimbursement-bill-payer-vo';
486
486
  export * from './reimbursement-bill-process-record-list-vo';
487
487
  export * from './reimbursement-bill-process-type-enum';
488
- export * from './reimbursement-bill-search-dto';
489
488
  export * from './reimbursement-bill-submit-dto';
490
489
  export * from './reimbursement-create-result-dto';
491
490
  export * from './reimbursement-platform-status-dto';
@@ -501,7 +501,6 @@ __exportStar(require("./reimbursement-bill-list-vo"), exports);
501
501
  __exportStar(require("./reimbursement-bill-payer-vo"), exports);
502
502
  __exportStar(require("./reimbursement-bill-process-record-list-vo"), exports);
503
503
  __exportStar(require("./reimbursement-bill-process-type-enum"), exports);
504
- __exportStar(require("./reimbursement-bill-search-dto"), exports);
505
504
  __exportStar(require("./reimbursement-bill-submit-dto"), exports);
506
505
  __exportStar(require("./reimbursement-create-result-dto"), exports);
507
506
  __exportStar(require("./reimbursement-platform-status-dto"), exports);
@@ -22,12 +22,6 @@ export interface IPageEnergyCostRecordInfoVO {
22
22
  * @memberof IPageEnergyCostRecordInfoVO
23
23
  */
24
24
  'total'?: number;
25
- /**
26
- *
27
- * @type {number}
28
- * @memberof IPageEnergyCostRecordInfoVO
29
- */
30
- 'pages'?: number;
31
25
  /**
32
26
  *
33
27
  * @type {number}
@@ -46,6 +40,12 @@ export interface IPageEnergyCostRecordInfoVO {
46
40
  * @memberof IPageEnergyCostRecordInfoVO
47
41
  */
48
42
  'searchCount'?: boolean;
43
+ /**
44
+ *
45
+ * @type {number}
46
+ * @memberof IPageEnergyCostRecordInfoVO
47
+ */
48
+ 'pages'?: number;
49
49
  /**
50
50
  *
51
51
  * @type {boolean}
@@ -16,8 +16,7 @@
16
16
  */
17
17
  export declare const PaymentMethodEnum: {
18
18
  readonly OnlinePayment: "ONLINE_PAYMENT";
19
- readonly BankWithholding: "BANK_WITHHOLDING";
19
+ readonly DirectDeduction: "DIRECT_DEDUCTION";
20
20
  readonly RecordOnly: "RECORD_ONLY";
21
- readonly OfflineBank: "OFFLINE_BANK";
22
21
  };
23
22
  export type PaymentMethodEnum = typeof PaymentMethodEnum[keyof typeof PaymentMethodEnum];
@@ -21,7 +21,6 @@ exports.PaymentMethodEnum = void 0;
21
21
  */
22
22
  exports.PaymentMethodEnum = {
23
23
  OnlinePayment: 'ONLINE_PAYMENT',
24
- BankWithholding: 'BANK_WITHHOLDING',
25
- RecordOnly: 'RECORD_ONLY',
26
- OfflineBank: 'OFFLINE_BANK'
24
+ DirectDeduction: 'DIRECT_DEDUCTION',
25
+ RecordOnly: 'RECORD_ONLY'
27
26
  };
@@ -92,6 +92,12 @@ export interface ReimbursementBillDetailsVo {
92
92
  * @memberof ReimbursementBillDetailsVo
93
93
  */
94
94
  'paymentMethod'?: PaymentMethodEnum;
95
+ /**
96
+ * 付款类型
97
+ * @type {number}
98
+ * @memberof ReimbursementBillDetailsVo
99
+ */
100
+ 'payType'?: number;
95
101
  /**
96
102
  * 付款日期
97
103
  * @type {string}
@@ -134,6 +140,12 @@ export interface ReimbursementBillDetailsVo {
134
140
  * @memberof ReimbursementBillDetailsVo
135
141
  */
136
142
  'invoiceType'?: InvoiceTypeEnum;
143
+ /**
144
+ * 是否有纸质发票
145
+ * @type {boolean}
146
+ * @memberof ReimbursementBillDetailsVo
147
+ */
148
+ 'hasPaperInvoice'?: boolean;
137
149
  /**
138
150
  * 是否有合同
139
151
  * @type {boolean}
@@ -85,6 +85,12 @@ export interface ReimbursementBillDraftDto {
85
85
  * @memberof ReimbursementBillDraftDto
86
86
  */
87
87
  'paymentMethod'?: PaymentMethodEnum;
88
+ /**
89
+ * 付款类型
90
+ * @type {number}
91
+ * @memberof ReimbursementBillDraftDto
92
+ */
93
+ 'payType'?: number;
88
94
  /**
89
95
  * 付款日期
90
96
  * @type {string}
@@ -133,6 +139,12 @@ export interface ReimbursementBillDraftDto {
133
139
  * @memberof ReimbursementBillDraftDto
134
140
  */
135
141
  'invoiceType'?: InvoiceTypeEnum;
142
+ /**
143
+ * 是否有纸质发票
144
+ * @type {boolean}
145
+ * @memberof ReimbursementBillDraftDto
146
+ */
147
+ 'hasPaperInvoice'?: boolean;
136
148
  /**
137
149
  * 是否有合同
138
150
  * @type {boolean}
@@ -103,6 +103,12 @@ export interface ReimbursementBillListVo {
103
103
  * @memberof ReimbursementBillListVo
104
104
  */
105
105
  'paymentMethod'?: PaymentMethodEnum;
106
+ /**
107
+ * 付款类型
108
+ * @type {number}
109
+ * @memberof ReimbursementBillListVo
110
+ */
111
+ 'payType'?: number;
106
112
  /**
107
113
  * 付款方(编码)
108
114
  * @type {string}
@@ -115,6 +121,12 @@ export interface ReimbursementBillListVo {
115
121
  * @memberof ReimbursementBillListVo
116
122
  */
117
123
  'invoiceType'?: InvoiceTypeEnum;
124
+ /**
125
+ * 是否有纸质发票
126
+ * @type {boolean}
127
+ * @memberof ReimbursementBillListVo
128
+ */
129
+ 'hasPaperInvoice'?: boolean;
118
130
  /**
119
131
  * 付款日期
120
132
  * @type {string}
@@ -85,6 +85,12 @@ export interface ReimbursementBillSubmitDto {
85
85
  * @memberof ReimbursementBillSubmitDto
86
86
  */
87
87
  'paymentMethod': PaymentMethodEnum;
88
+ /**
89
+ * 付款类型
90
+ * @type {number}
91
+ * @memberof ReimbursementBillSubmitDto
92
+ */
93
+ 'payType': number;
88
94
  /**
89
95
  * 付款日期
90
96
  * @type {string}
@@ -133,6 +139,12 @@ export interface ReimbursementBillSubmitDto {
133
139
  * @memberof ReimbursementBillSubmitDto
134
140
  */
135
141
  'invoiceType': InvoiceTypeEnum;
142
+ /**
143
+ * 是否有纸质发票
144
+ * @type {boolean}
145
+ * @memberof ReimbursementBillSubmitDto
146
+ */
147
+ 'hasPaperInvoice': boolean;
136
148
  /**
137
149
  * 是否有合同
138
150
  * @type {boolean}
@@ -10,15 +10,17 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- * 账单状态
13
+ *
14
14
  * @export
15
15
  * @enum {string}
16
16
  */
17
17
  export declare const ReimbursementStatusEnum: {
18
18
  readonly Draft: "DRAFT";
19
19
  readonly Submitted: "SUBMITTED";
20
- readonly Revoked: "REVOKED";
21
- readonly Rejected: "REJECTED";
20
+ readonly BudgetOccupied: "BUDGET_OCCUPIED";
21
+ readonly ReimbursementSuccess: "REIMBURSEMENT_SUCCESS";
22
+ readonly Processing: "PROCESSING";
22
23
  readonly Completed: "COMPLETED";
24
+ readonly Canceled: "CANCELED";
23
25
  };
24
26
  export type ReimbursementStatusEnum = typeof ReimbursementStatusEnum[keyof typeof ReimbursementStatusEnum];
@@ -15,14 +15,16 @@
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.ReimbursementStatusEnum = void 0;
17
17
  /**
18
- * 账单状态
18
+ *
19
19
  * @export
20
20
  * @enum {string}
21
21
  */
22
22
  exports.ReimbursementStatusEnum = {
23
23
  Draft: 'DRAFT',
24
24
  Submitted: 'SUBMITTED',
25
- Revoked: 'REVOKED',
26
- Rejected: 'REJECTED',
27
- Completed: 'COMPLETED'
25
+ BudgetOccupied: 'BUDGET_OCCUPIED',
26
+ ReimbursementSuccess: 'REIMBURSEMENT_SUCCESS',
27
+ Processing: 'PROCESSING',
28
+ Completed: 'COMPLETED',
29
+ Canceled: 'CANCELED'
28
30
  };
package/models/index.ts CHANGED
@@ -485,7 +485,6 @@ export * from './reimbursement-bill-list-vo';
485
485
  export * from './reimbursement-bill-payer-vo';
486
486
  export * from './reimbursement-bill-process-record-list-vo';
487
487
  export * from './reimbursement-bill-process-type-enum';
488
- export * from './reimbursement-bill-search-dto';
489
488
  export * from './reimbursement-bill-submit-dto';
490
489
  export * from './reimbursement-create-result-dto';
491
490
  export * from './reimbursement-platform-status-dto';
@@ -29,12 +29,6 @@ export interface IPageEnergyCostRecordInfoVO {
29
29
  * @memberof IPageEnergyCostRecordInfoVO
30
30
  */
31
31
  'total'?: number;
32
- /**
33
- *
34
- * @type {number}
35
- * @memberof IPageEnergyCostRecordInfoVO
36
- */
37
- 'pages'?: number;
38
32
  /**
39
33
  *
40
34
  * @type {number}
@@ -53,6 +47,12 @@ export interface IPageEnergyCostRecordInfoVO {
53
47
  * @memberof IPageEnergyCostRecordInfoVO
54
48
  */
55
49
  'searchCount'?: boolean;
50
+ /**
51
+ *
52
+ * @type {number}
53
+ * @memberof IPageEnergyCostRecordInfoVO
54
+ */
55
+ 'pages'?: number;
56
56
  /**
57
57
  *
58
58
  * @type {boolean}
@@ -22,9 +22,8 @@
22
22
 
23
23
  export const PaymentMethodEnum = {
24
24
  OnlinePayment: 'ONLINE_PAYMENT',
25
- BankWithholding: 'BANK_WITHHOLDING',
26
- RecordOnly: 'RECORD_ONLY',
27
- OfflineBank: 'OFFLINE_BANK'
25
+ DirectDeduction: 'DIRECT_DEDUCTION',
26
+ RecordOnly: 'RECORD_ONLY'
28
27
  } as const;
29
28
 
30
29
  export type PaymentMethodEnum = typeof PaymentMethodEnum[keyof typeof PaymentMethodEnum];
@@ -107,6 +107,12 @@ export interface ReimbursementBillDetailsVo {
107
107
  * @memberof ReimbursementBillDetailsVo
108
108
  */
109
109
  'paymentMethod'?: PaymentMethodEnum;
110
+ /**
111
+ * 付款类型
112
+ * @type {number}
113
+ * @memberof ReimbursementBillDetailsVo
114
+ */
115
+ 'payType'?: number;
110
116
  /**
111
117
  * 付款日期
112
118
  * @type {string}
@@ -149,6 +155,12 @@ export interface ReimbursementBillDetailsVo {
149
155
  * @memberof ReimbursementBillDetailsVo
150
156
  */
151
157
  'invoiceType'?: InvoiceTypeEnum;
158
+ /**
159
+ * 是否有纸质发票
160
+ * @type {boolean}
161
+ * @memberof ReimbursementBillDetailsVo
162
+ */
163
+ 'hasPaperInvoice'?: boolean;
152
164
  /**
153
165
  * 是否有合同
154
166
  * @type {boolean}
@@ -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}
@@ -116,6 +116,12 @@ export interface ReimbursementBillListVo {
116
116
  * @memberof ReimbursementBillListVo
117
117
  */
118
118
  'paymentMethod'?: PaymentMethodEnum;
119
+ /**
120
+ * 付款类型
121
+ * @type {number}
122
+ * @memberof ReimbursementBillListVo
123
+ */
124
+ 'payType'?: number;
119
125
  /**
120
126
  * 付款方(编码)
121
127
  * @type {string}
@@ -128,6 +134,12 @@ export interface ReimbursementBillListVo {
128
134
  * @memberof ReimbursementBillListVo
129
135
  */
130
136
  'invoiceType'?: InvoiceTypeEnum;
137
+ /**
138
+ * 是否有纸质发票
139
+ * @type {boolean}
140
+ * @memberof ReimbursementBillListVo
141
+ */
142
+ 'hasPaperInvoice'?: boolean;
131
143
  /**
132
144
  * 付款日期
133
145
  * @type {string}
@@ -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}
@@ -15,7 +15,7 @@
15
15
 
16
16
 
17
17
  /**
18
- * 账单状态
18
+ *
19
19
  * @export
20
20
  * @enum {string}
21
21
  */
@@ -23,9 +23,11 @@
23
23
  export const ReimbursementStatusEnum = {
24
24
  Draft: 'DRAFT',
25
25
  Submitted: 'SUBMITTED',
26
- Revoked: 'REVOKED',
27
- Rejected: 'REJECTED',
28
- Completed: 'COMPLETED'
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];