@hitsoft/e-donusum 1.0.25 → 1.0.26
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/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +3 -3
- package/esm2020/lib/despatches/despatch/components/despatch.component.mjs +5 -4
- package/esm2020/lib/invoices/invoice/components/invoice.component.mjs +5 -4
- package/esm2020/lib/proxy/despatches/despatch.service.mjs +2 -2
- package/esm2020/lib/proxy/despatches/models.mjs +1 -1
- package/esm2020/lib/proxy/invoices/invoice.service.mjs +2 -2
- package/esm2020/lib/proxy/invoices/models.mjs +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +12 -10
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +12 -10
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/proxy/despatches/models.d.ts +5 -0
- package/lib/proxy/invoices/models.d.ts +5 -0
- package/package.json +1 -1
|
@@ -85,6 +85,7 @@ export interface DespatchCreateDto {
|
|
|
85
85
|
senderGB?: string;
|
|
86
86
|
entegratorErrorMessage?: string;
|
|
87
87
|
selectedReceiverPK?: string;
|
|
88
|
+
resourceJournalEntry?: number;
|
|
88
89
|
}
|
|
89
90
|
export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
90
91
|
ublVersionId: string;
|
|
@@ -172,6 +173,7 @@ export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
|
172
173
|
senderGB?: string;
|
|
173
174
|
entegratorErrorMessage?: string;
|
|
174
175
|
selectedReceiverPK?: string;
|
|
176
|
+
resourceJournalEntry?: number;
|
|
175
177
|
concurrencyStamp?: string;
|
|
176
178
|
}
|
|
177
179
|
export interface DespatchExcelDownloadDto {
|
|
@@ -265,6 +267,7 @@ export interface DespatchUpdateDto {
|
|
|
265
267
|
senderGB?: string;
|
|
266
268
|
entegratorErrorMessage?: string;
|
|
267
269
|
selectedReceiverPK?: string;
|
|
270
|
+
resourceJournalEntry?: number;
|
|
268
271
|
concurrencyStamp?: string;
|
|
269
272
|
}
|
|
270
273
|
export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
@@ -384,4 +387,6 @@ export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
|
384
387
|
senderGB?: string;
|
|
385
388
|
entegratorErrorMessage?: string;
|
|
386
389
|
selectedReceiverPK?: string;
|
|
390
|
+
resourceJournalEntryMin?: number;
|
|
391
|
+
resourceJournalEntryMax?: number;
|
|
387
392
|
}
|
|
@@ -111,6 +111,8 @@ export interface GetInvoicesInput extends PagedAndSortedResultRequestDto {
|
|
|
111
111
|
senderGB?: string;
|
|
112
112
|
entegratorErrorMessage?: string;
|
|
113
113
|
selectedReceiverPK?: string;
|
|
114
|
+
resourceJournalEntryMin?: number;
|
|
115
|
+
resourceJournalEntryMax?: number;
|
|
114
116
|
}
|
|
115
117
|
export interface InvoiceCreateDto {
|
|
116
118
|
ublVersionId: string;
|
|
@@ -193,6 +195,7 @@ export interface InvoiceCreateDto {
|
|
|
193
195
|
senderGB?: string;
|
|
194
196
|
entegratorErrorMessage?: string;
|
|
195
197
|
selectedReceiverPK?: string;
|
|
198
|
+
resourceJournalEntry?: number;
|
|
196
199
|
}
|
|
197
200
|
export interface InvoiceDto extends FullAuditedEntityDto<string> {
|
|
198
201
|
ublVersionId: string;
|
|
@@ -275,6 +278,7 @@ export interface InvoiceDto extends FullAuditedEntityDto<string> {
|
|
|
275
278
|
senderGB?: string;
|
|
276
279
|
entegratorErrorMessage?: string;
|
|
277
280
|
selectedReceiverPK?: string;
|
|
281
|
+
resourceJournalEntry?: number;
|
|
278
282
|
concurrencyStamp?: string;
|
|
279
283
|
}
|
|
280
284
|
export interface InvoiceExcelDownloadDto {
|
|
@@ -363,5 +367,6 @@ export interface InvoiceUpdateDto {
|
|
|
363
367
|
senderGB?: string;
|
|
364
368
|
entegratorErrorMessage?: string;
|
|
365
369
|
selectedReceiverPK?: string;
|
|
370
|
+
resourceJournalEntry?: number;
|
|
366
371
|
concurrencyStamp?: string;
|
|
367
372
|
}
|