@hitsoft/e-donusum 1.0.51 → 1.0.53
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/config/providers/producer-receipt-line-route.provider.d.ts +9 -0
- package/config/providers/producer-receipt-note-route.provider.d.ts +9 -0
- package/config/providers/producer-receipt-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +8 -2
- package/esm2020/config/providers/producer-receipt-line-route.provider.mjs +19 -0
- package/esm2020/config/providers/producer-receipt-note-route.provider.mjs +19 -0
- package/esm2020/config/providers/producer-receipt-route.provider.mjs +19 -0
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +8 -3
- package/esm2020/lib/components/hit-paramas-invoices/hit-params-invoice.component.mjs +13 -5
- package/esm2020/lib/components/hit-params-dispatches/hit-params-dispatch.component.mjs +8 -4
- package/esm2020/lib/components/hit-xslt-formats/hit-xslt-format.component.mjs +3 -3
- package/esm2020/lib/e-donusum-routing.module.mjs +7 -1
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/models.mjs +1 -1
- package/esm2020/lib/hit-proxy/hit-params-dispatches/hit-params-dispatch.service.mjs +5 -1
- package/esm2020/lib/hit-proxy/hit-params-invoices/hit-params-invoice.service.mjs +9 -1
- package/esm2020/lib/hit-proxy/hit-xslt-formats/hit-xslt-format.service.mjs +1 -1
- package/esm2020/lib/hit-proxy/hit-xslt-formats/models.mjs +1 -1
- package/esm2020/lib/paramse-dispatches/paramse-dispatch/components/paramse-dispatch.component.mjs +5 -4
- package/esm2020/lib/paramse-dispatches/paramse-dispatch/paramse-dispatch.module.mjs +1 -1
- package/esm2020/lib/paramse-invoices/paramse-invoice/components/paramse-invoice.component.mjs +6 -4
- package/esm2020/lib/paramse-invoices/paramse-invoice/paramse-invoice.module.mjs +1 -1
- package/esm2020/lib/producer-receipt-lines/producer-receipt-line/components/producer-receipt-line.component.mjs +127 -0
- package/esm2020/lib/producer-receipt-lines/producer-receipt-line/producer-receipt-line-routing.module.mjs +26 -0
- package/esm2020/lib/producer-receipt-lines/producer-receipt-line/producer-receipt-line.module.mjs +52 -0
- package/esm2020/lib/producer-receipt-notes/producer-receipt-note/components/producer-receipt-note.component.mjs +98 -0
- package/esm2020/lib/producer-receipt-notes/producer-receipt-note/producer-receipt-note-routing.module.mjs +26 -0
- package/esm2020/lib/producer-receipt-notes/producer-receipt-note/producer-receipt-note.module.mjs +52 -0
- package/esm2020/lib/producer-receipts/producer-receipt/components/producer-receipt.component.mjs +229 -0
- package/esm2020/lib/producer-receipts/producer-receipt/producer-receipt-routing.module.mjs +26 -0
- package/esm2020/lib/producer-receipts/producer-receipt/producer-receipt.module.mjs +52 -0
- package/esm2020/lib/proxy/document-serials/index.mjs +1 -1
- package/esm2020/lib/proxy/note-rule-doc-types/index.mjs +1 -1
- package/esm2020/lib/proxy/note-rule-scenarios/index.mjs +1 -1
- package/esm2020/lib/proxy/note-rules/index.mjs +1 -1
- package/esm2020/lib/proxy/params-companies/index.mjs +1 -1
- package/esm2020/lib/proxy/params-generals/index.mjs +1 -1
- package/esm2020/lib/proxy/params-integrators/index.mjs +1 -1
- package/esm2020/lib/proxy/paramse-dispatches/index.mjs +1 -1
- package/esm2020/lib/proxy/paramse-dispatches/models.mjs +1 -1
- package/esm2020/lib/proxy/paramse-dispatches/paramse-dispatch.service.mjs +2 -2
- package/esm2020/lib/proxy/paramse-invoices/index.mjs +1 -1
- package/esm2020/lib/proxy/paramse-invoices/models.mjs +1 -1
- package/esm2020/lib/proxy/paramse-invoices/paramse-invoice.service.mjs +2 -2
- package/esm2020/lib/proxy/producer-receipt-lines/models.mjs +2 -0
- package/esm2020/lib/proxy/producer-receipt-lines/producer-receipt-line.service.mjs +50 -0
- package/esm2020/lib/proxy/producer-receipt-notes/models.mjs +2 -0
- package/esm2020/lib/proxy/producer-receipt-notes/producer-receipt-note.service.mjs +50 -0
- package/esm2020/lib/proxy/producer-receipts/models.mjs +2 -0
- package/esm2020/lib/proxy/producer-receipts/producer-receipt.service.mjs +41 -0
- package/esm2020/lib/proxy/xslt-formats/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-rule-doc-types/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-rule-scenarios/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-rules/index.mjs +1 -1
- package/fesm2015/hitsoft-e-donusum-config.mjs +156 -102
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +868 -129
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +156 -102
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +885 -130
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-paramas-invoices/hit-params-invoice.component.d.ts +2 -0
- package/lib/components/hit-params-dispatches/hit-params-dispatch.component.d.ts +1 -0
- package/lib/components/hit-xslt-formats/hit-xslt-format.component.d.ts +2 -2
- package/lib/hit-proxy/hit-inbound-invoices/models.d.ts +5 -0
- package/lib/hit-proxy/hit-params-dispatches/hit-params-dispatch.service.d.ts +1 -0
- package/lib/hit-proxy/hit-params-invoices/hit-params-invoice.service.d.ts +2 -0
- package/lib/hit-proxy/hit-xslt-formats/hit-xslt-format.service.d.ts +3 -3
- package/lib/hit-proxy/hit-xslt-formats/models.d.ts +5 -1
- package/lib/producer-receipt-lines/producer-receipt-line/components/producer-receipt-line.component.d.ts +33 -0
- package/lib/producer-receipt-lines/producer-receipt-line/producer-receipt-line-routing.module.d.ts +7 -0
- package/lib/producer-receipt-lines/producer-receipt-line/producer-receipt-line.module.d.ts +15 -0
- package/lib/producer-receipt-notes/producer-receipt-note/components/producer-receipt-note.component.d.ts +33 -0
- package/lib/producer-receipt-notes/producer-receipt-note/producer-receipt-note-routing.module.d.ts +7 -0
- package/lib/producer-receipt-notes/producer-receipt-note/producer-receipt-note.module.d.ts +15 -0
- package/lib/producer-receipts/producer-receipt/components/producer-receipt.component.d.ts +33 -0
- package/lib/producer-receipts/producer-receipt/producer-receipt-routing.module.d.ts +7 -0
- package/lib/producer-receipts/producer-receipt/producer-receipt.module.d.ts +15 -0
- package/lib/proxy/paramse-dispatches/models.d.ts +5 -0
- package/lib/proxy/paramse-invoices/models.d.ts +10 -0
- package/lib/proxy/producer-receipt-lines/models.d.ts +97 -0
- package/lib/proxy/producer-receipt-lines/producer-receipt-line.service.d.ts +19 -0
- package/lib/proxy/producer-receipt-notes/models.d.ts +25 -0
- package/lib/proxy/producer-receipt-notes/producer-receipt-note.service.d.ts +19 -0
- package/lib/proxy/producer-receipts/models.d.ts +264 -0
- package/lib/proxy/producer-receipts/producer-receipt.service.d.ts +16 -0
- package/package.json +1 -1
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core';
|
|
2
|
+
export interface GetProducerReceiptsInput extends PagedAndSortedResultRequestDto {
|
|
3
|
+
filterText?: string;
|
|
4
|
+
ublVersionId?: string;
|
|
5
|
+
customizationId?: string;
|
|
6
|
+
profileId?: string;
|
|
7
|
+
producerReceiptID?: string;
|
|
8
|
+
copyIndicator?: boolean;
|
|
9
|
+
uuId?: string;
|
|
10
|
+
issueDateMin?: string;
|
|
11
|
+
issueDateMax?: string;
|
|
12
|
+
issueTimeMin?: string;
|
|
13
|
+
issueTimeMax?: string;
|
|
14
|
+
creditNoteTypeCode?: string;
|
|
15
|
+
documentCurrencyCode?: string;
|
|
16
|
+
taxCurrencyCode?: string;
|
|
17
|
+
pricingCurrencyCode?: string;
|
|
18
|
+
paymentCurrencyCode?: string;
|
|
19
|
+
paymentAlternativeCurrencyCode?: string;
|
|
20
|
+
accountingCost?: string;
|
|
21
|
+
lineCountNumericMin?: number;
|
|
22
|
+
lineCountNumericMax?: number;
|
|
23
|
+
accountingSupplierPartyName?: string;
|
|
24
|
+
accountingSupplierPartySchemeID?: string;
|
|
25
|
+
accountingSupplierPartyVKNTCKN?: string;
|
|
26
|
+
accountingCustomerPartyName?: string;
|
|
27
|
+
accountingCustomerPartySchemeID?: string;
|
|
28
|
+
accountingCustomerPartyVKNTCKN?: string;
|
|
29
|
+
deliveryActualDeliveryDateMin?: string;
|
|
30
|
+
deliveryActualDeliveryDateMax?: string;
|
|
31
|
+
taxExchangeRateSourceCurrencyCode?: string;
|
|
32
|
+
taxExchangeRateTargetCurrencyCode?: string;
|
|
33
|
+
taxExchangeRateCalculationRateMin?: number;
|
|
34
|
+
taxExchangeRateCalculationRateMax?: number;
|
|
35
|
+
taxExchangeRateDateMin?: string;
|
|
36
|
+
taxExchangeRateDateMax?: string;
|
|
37
|
+
pricingExchangeRateSourceCurrencyCode?: string;
|
|
38
|
+
pricingExchangeRateTargetCurrencyCode?: string;
|
|
39
|
+
pricingExchangeRateCalculationRateMin?: string;
|
|
40
|
+
pricingExchangeRateCalculationRateMax?: string;
|
|
41
|
+
pricingExchangeRateDateMin?: string;
|
|
42
|
+
pricingExchangeRateDateMax?: string;
|
|
43
|
+
paymentExchangeRateSourceCurrencyCode?: string;
|
|
44
|
+
paymentExchangeRateTargetCurrencyCode?: string;
|
|
45
|
+
paymentExchangeRateCalculationRateMin?: number;
|
|
46
|
+
paymentExchangeRateCalculationRateMax?: number;
|
|
47
|
+
paymentExchangeRateDateMin?: string;
|
|
48
|
+
paymentExchangeRateDateMax?: string;
|
|
49
|
+
paymentAlternativeExchangeRateSourceCurrencyCode?: string;
|
|
50
|
+
paymentAlternativeExchangeRateTargetCurrencyCode?: string;
|
|
51
|
+
paymentAlternativeExchangeRateCalculationRateMin?: number;
|
|
52
|
+
paymentAlternativeExchangeRateCalculationRateMax?: number;
|
|
53
|
+
paymentAlternativeExchangeRateDateMin?: string;
|
|
54
|
+
paymentAlternativeExchangeRateDateMax?: string;
|
|
55
|
+
legalMonetaryTotalLineExtensionAmountMin?: number;
|
|
56
|
+
legalMonetaryTotalLineExtensionAmountMax?: number;
|
|
57
|
+
legalMonetaryTotalTaxExclusiveAmountMin?: number;
|
|
58
|
+
legalMonetaryTotalTaxExclusiveAmountMax?: number;
|
|
59
|
+
legalMonetaryTotalTaxInclusiveAmountMin?: number;
|
|
60
|
+
legalMonetaryTotalTaxInclusiveAmountMax?: number;
|
|
61
|
+
legalMonetaryTotalAllowanceTotalAmountMin?: number;
|
|
62
|
+
legalMonetaryTotalAllowanceTotalAmountMax?: number;
|
|
63
|
+
legalMonetaryTotalChargeTotalAmountMin?: number;
|
|
64
|
+
legalMonetaryTotalChargeTotalAmountMax?: number;
|
|
65
|
+
legalMonetaryTotalPayableRoundingAmountMin?: number;
|
|
66
|
+
legalMonetaryTotalPayableRoundingAmountMax?: number;
|
|
67
|
+
legalMonetaryTotalPayableAmountMin?: number;
|
|
68
|
+
legalMonetaryTotalPayableAmountMax?: number;
|
|
69
|
+
isCanceled?: boolean;
|
|
70
|
+
cancelCode?: string;
|
|
71
|
+
cancelDescription?: string;
|
|
72
|
+
statusMin?: number;
|
|
73
|
+
statusMax?: number;
|
|
74
|
+
resourceDocEntryMin?: number;
|
|
75
|
+
resourceDocEntryMax?: number;
|
|
76
|
+
resourceDocTypeMin?: number;
|
|
77
|
+
resourceDocTypeMax?: number;
|
|
78
|
+
entegratorErrorMessage?: string;
|
|
79
|
+
resourceSubDocTypeMin?: number;
|
|
80
|
+
resourceSubDocTypeMax?: number;
|
|
81
|
+
resourceJournalEntryMin?: number;
|
|
82
|
+
resourceJournalEntryMax?: number;
|
|
83
|
+
isDraft?: boolean;
|
|
84
|
+
selectedReceiptSerial?: string;
|
|
85
|
+
}
|
|
86
|
+
export interface ProducerReceiptCreateDto {
|
|
87
|
+
ublVersionId: string;
|
|
88
|
+
customizationId: string;
|
|
89
|
+
profileId: string;
|
|
90
|
+
producerReceiptID: string;
|
|
91
|
+
copyIndicator?: boolean;
|
|
92
|
+
uuId: string;
|
|
93
|
+
issueDate?: string;
|
|
94
|
+
issueTime?: string;
|
|
95
|
+
creditNoteTypeCode: string;
|
|
96
|
+
documentCurrencyCode: string;
|
|
97
|
+
taxCurrencyCode?: string;
|
|
98
|
+
pricingCurrencyCode?: string;
|
|
99
|
+
paymentCurrencyCode?: string;
|
|
100
|
+
paymentAlternativeCurrencyCode?: string;
|
|
101
|
+
accountingCost?: string;
|
|
102
|
+
lineCountNumeric?: number;
|
|
103
|
+
accountingSupplierPartyName?: string;
|
|
104
|
+
accountingSupplierPartySchemeID?: string;
|
|
105
|
+
accountingSupplierPartyVKNTCKN?: string;
|
|
106
|
+
accountingCustomerPartyName?: string;
|
|
107
|
+
accountingCustomerPartySchemeID?: string;
|
|
108
|
+
accountingCustomerPartyVKNTCKN?: string;
|
|
109
|
+
deliveryActualDeliveryDate?: string;
|
|
110
|
+
taxExchangeRateSourceCurrencyCode?: string;
|
|
111
|
+
taxExchangeRateTargetCurrencyCode?: string;
|
|
112
|
+
taxExchangeRateCalculationRate?: number;
|
|
113
|
+
taxExchangeRateDate?: string;
|
|
114
|
+
pricingExchangeRateSourceCurrencyCode?: string;
|
|
115
|
+
pricingExchangeRateTargetCurrencyCode?: string;
|
|
116
|
+
pricingExchangeRateCalculationRate?: string;
|
|
117
|
+
pricingExchangeRateDate?: string;
|
|
118
|
+
paymentExchangeRateSourceCurrencyCode?: string;
|
|
119
|
+
paymentExchangeRateTargetCurrencyCode?: string;
|
|
120
|
+
paymentExchangeRateCalculationRate?: number;
|
|
121
|
+
paymentExchangeRateDate?: string;
|
|
122
|
+
paymentAlternativeExchangeRateSourceCurrencyCode?: string;
|
|
123
|
+
paymentAlternativeExchangeRateTargetCurrencyCode?: string;
|
|
124
|
+
paymentAlternativeExchangeRateCalculationRate?: number;
|
|
125
|
+
paymentAlternativeExchangeRateDate?: string;
|
|
126
|
+
legalMonetaryTotalLineExtensionAmount?: number;
|
|
127
|
+
legalMonetaryTotalTaxExclusiveAmount?: number;
|
|
128
|
+
legalMonetaryTotalTaxInclusiveAmount?: number;
|
|
129
|
+
legalMonetaryTotalAllowanceTotalAmount?: number;
|
|
130
|
+
legalMonetaryTotalChargeTotalAmount?: number;
|
|
131
|
+
legalMonetaryTotalPayableRoundingAmount?: number;
|
|
132
|
+
legalMonetaryTotalPayableAmount?: number;
|
|
133
|
+
isCanceled?: boolean;
|
|
134
|
+
cancelCode?: string;
|
|
135
|
+
cancelDescription?: string;
|
|
136
|
+
status?: number;
|
|
137
|
+
resourceDocEntry?: number;
|
|
138
|
+
resourceDocType?: number;
|
|
139
|
+
entegratorErrorMessage?: string;
|
|
140
|
+
resourceSubDocType?: number;
|
|
141
|
+
resourceJournalEntry?: number;
|
|
142
|
+
isDraft?: boolean;
|
|
143
|
+
selectedReceiptSerial?: string;
|
|
144
|
+
}
|
|
145
|
+
export interface ProducerReceiptDto extends FullAuditedEntityDto<string> {
|
|
146
|
+
ublVersionId: string;
|
|
147
|
+
customizationId: string;
|
|
148
|
+
profileId: string;
|
|
149
|
+
producerReceiptID: string;
|
|
150
|
+
copyIndicator?: boolean;
|
|
151
|
+
uuId: string;
|
|
152
|
+
issueDate?: string;
|
|
153
|
+
issueTime?: string;
|
|
154
|
+
creditNoteTypeCode: string;
|
|
155
|
+
documentCurrencyCode: string;
|
|
156
|
+
taxCurrencyCode?: string;
|
|
157
|
+
pricingCurrencyCode?: string;
|
|
158
|
+
paymentCurrencyCode?: string;
|
|
159
|
+
paymentAlternativeCurrencyCode?: string;
|
|
160
|
+
accountingCost?: string;
|
|
161
|
+
lineCountNumeric?: number;
|
|
162
|
+
accountingSupplierPartyName?: string;
|
|
163
|
+
accountingSupplierPartySchemeID?: string;
|
|
164
|
+
accountingSupplierPartyVKNTCKN?: string;
|
|
165
|
+
accountingCustomerPartyName?: string;
|
|
166
|
+
accountingCustomerPartySchemeID?: string;
|
|
167
|
+
accountingCustomerPartyVKNTCKN?: string;
|
|
168
|
+
deliveryActualDeliveryDate?: string;
|
|
169
|
+
taxExchangeRateSourceCurrencyCode?: string;
|
|
170
|
+
taxExchangeRateTargetCurrencyCode?: string;
|
|
171
|
+
taxExchangeRateCalculationRate?: number;
|
|
172
|
+
taxExchangeRateDate?: string;
|
|
173
|
+
pricingExchangeRateSourceCurrencyCode?: string;
|
|
174
|
+
pricingExchangeRateTargetCurrencyCode?: string;
|
|
175
|
+
pricingExchangeRateCalculationRate?: string;
|
|
176
|
+
pricingExchangeRateDate?: string;
|
|
177
|
+
paymentExchangeRateSourceCurrencyCode?: string;
|
|
178
|
+
paymentExchangeRateTargetCurrencyCode?: string;
|
|
179
|
+
paymentExchangeRateCalculationRate?: number;
|
|
180
|
+
paymentExchangeRateDate?: string;
|
|
181
|
+
paymentAlternativeExchangeRateSourceCurrencyCode?: string;
|
|
182
|
+
paymentAlternativeExchangeRateTargetCurrencyCode?: string;
|
|
183
|
+
paymentAlternativeExchangeRateCalculationRate?: number;
|
|
184
|
+
paymentAlternativeExchangeRateDate?: string;
|
|
185
|
+
legalMonetaryTotalLineExtensionAmount?: number;
|
|
186
|
+
legalMonetaryTotalTaxExclusiveAmount?: number;
|
|
187
|
+
legalMonetaryTotalTaxInclusiveAmount?: number;
|
|
188
|
+
legalMonetaryTotalAllowanceTotalAmount?: number;
|
|
189
|
+
legalMonetaryTotalChargeTotalAmount?: number;
|
|
190
|
+
legalMonetaryTotalPayableRoundingAmount?: number;
|
|
191
|
+
legalMonetaryTotalPayableAmount?: number;
|
|
192
|
+
isCanceled?: boolean;
|
|
193
|
+
cancelCode?: string;
|
|
194
|
+
cancelDescription?: string;
|
|
195
|
+
status?: number;
|
|
196
|
+
resourceDocEntry?: number;
|
|
197
|
+
resourceDocType?: number;
|
|
198
|
+
entegratorErrorMessage?: string;
|
|
199
|
+
resourceSubDocType?: number;
|
|
200
|
+
resourceJournalEntry?: number;
|
|
201
|
+
isDraft?: boolean;
|
|
202
|
+
selectedReceiptSerial?: string;
|
|
203
|
+
concurrencyStamp?: string;
|
|
204
|
+
}
|
|
205
|
+
export interface ProducerReceiptUpdateDto {
|
|
206
|
+
ublVersionId: string;
|
|
207
|
+
customizationId: string;
|
|
208
|
+
profileId: string;
|
|
209
|
+
producerReceiptID: string;
|
|
210
|
+
copyIndicator?: boolean;
|
|
211
|
+
uuId: string;
|
|
212
|
+
issueDate?: string;
|
|
213
|
+
issueTime?: string;
|
|
214
|
+
creditNoteTypeCode: string;
|
|
215
|
+
documentCurrencyCode: string;
|
|
216
|
+
taxCurrencyCode?: string;
|
|
217
|
+
pricingCurrencyCode?: string;
|
|
218
|
+
paymentCurrencyCode?: string;
|
|
219
|
+
paymentAlternativeCurrencyCode?: string;
|
|
220
|
+
accountingCost?: string;
|
|
221
|
+
lineCountNumeric?: number;
|
|
222
|
+
accountingSupplierPartyName?: string;
|
|
223
|
+
accountingSupplierPartySchemeID?: string;
|
|
224
|
+
accountingSupplierPartyVKNTCKN?: string;
|
|
225
|
+
accountingCustomerPartyName?: string;
|
|
226
|
+
accountingCustomerPartySchemeID?: string;
|
|
227
|
+
accountingCustomerPartyVKNTCKN?: string;
|
|
228
|
+
deliveryActualDeliveryDate?: string;
|
|
229
|
+
taxExchangeRateSourceCurrencyCode?: string;
|
|
230
|
+
taxExchangeRateTargetCurrencyCode?: string;
|
|
231
|
+
taxExchangeRateCalculationRate?: number;
|
|
232
|
+
taxExchangeRateDate?: string;
|
|
233
|
+
pricingExchangeRateSourceCurrencyCode?: string;
|
|
234
|
+
pricingExchangeRateTargetCurrencyCode?: string;
|
|
235
|
+
pricingExchangeRateCalculationRate?: string;
|
|
236
|
+
pricingExchangeRateDate?: string;
|
|
237
|
+
paymentExchangeRateSourceCurrencyCode?: string;
|
|
238
|
+
paymentExchangeRateTargetCurrencyCode?: string;
|
|
239
|
+
paymentExchangeRateCalculationRate?: number;
|
|
240
|
+
paymentExchangeRateDate?: string;
|
|
241
|
+
paymentAlternativeExchangeRateSourceCurrencyCode?: string;
|
|
242
|
+
paymentAlternativeExchangeRateTargetCurrencyCode?: string;
|
|
243
|
+
paymentAlternativeExchangeRateCalculationRate?: number;
|
|
244
|
+
paymentAlternativeExchangeRateDate?: string;
|
|
245
|
+
legalMonetaryTotalLineExtensionAmount?: number;
|
|
246
|
+
legalMonetaryTotalTaxExclusiveAmount?: number;
|
|
247
|
+
legalMonetaryTotalTaxInclusiveAmount?: number;
|
|
248
|
+
legalMonetaryTotalAllowanceTotalAmount?: number;
|
|
249
|
+
legalMonetaryTotalChargeTotalAmount?: number;
|
|
250
|
+
legalMonetaryTotalPayableRoundingAmount?: number;
|
|
251
|
+
legalMonetaryTotalPayableAmount?: number;
|
|
252
|
+
isCanceled?: boolean;
|
|
253
|
+
cancelCode?: string;
|
|
254
|
+
cancelDescription?: string;
|
|
255
|
+
status?: number;
|
|
256
|
+
resourceDocEntry?: number;
|
|
257
|
+
resourceDocType?: number;
|
|
258
|
+
entegratorErrorMessage?: string;
|
|
259
|
+
resourceSubDocType?: number;
|
|
260
|
+
resourceJournalEntry?: number;
|
|
261
|
+
isDraft?: boolean;
|
|
262
|
+
selectedReceiptSerial?: string;
|
|
263
|
+
concurrencyStamp?: string;
|
|
264
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { GetProducerReceiptsInput, ProducerReceiptCreateDto, ProducerReceiptDto, ProducerReceiptUpdateDto } from './models';
|
|
2
|
+
import { RestService } from '@abp/ng.core';
|
|
3
|
+
import type { PagedResultDto } from '@abp/ng.core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ProducerReceiptService {
|
|
6
|
+
private restService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
create: (input: ProducerReceiptCreateDto) => import("rxjs").Observable<ProducerReceiptDto>;
|
|
9
|
+
delete: (id: string) => import("rxjs").Observable<void>;
|
|
10
|
+
get: (id: string) => import("rxjs").Observable<ProducerReceiptDto>;
|
|
11
|
+
getList: (input: GetProducerReceiptsInput) => import("rxjs").Observable<PagedResultDto<ProducerReceiptDto>>;
|
|
12
|
+
update: (id: string, input: ProducerReceiptUpdateDto) => import("rxjs").Observable<ProducerReceiptDto>;
|
|
13
|
+
constructor(restService: RestService);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProducerReceiptService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProducerReceiptService>;
|
|
16
|
+
}
|