@hitsoft/e-donusum 1.0.31 → 1.0.32
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-failed-invoices/hit-failed-invoice.component.mjs +10 -5
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +2 -2
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +7 -5
- package/esm2020/lib/despatches/despatch/components/despatch.component.mjs +6 -4
- package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +3 -3
- package/esm2020/lib/invoices/invoice/components/invoice.component.mjs +6 -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 +30 -19
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +30 -19
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-failed-invoices/hit-failed-invoice.component.d.ts +2 -0
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +1 -0
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +1 -1
- package/lib/proxy/despatches/models.d.ts +9 -0
- package/lib/proxy/invoices/models.d.ts +9 -0
- package/package.json +1 -1
|
@@ -12,11 +12,13 @@ export declare class HitFailedInvoiceComponent implements OnInit {
|
|
|
12
12
|
failedInvoicesDataSource: any;
|
|
13
13
|
failedInvoiceStatusLookup: any;
|
|
14
14
|
failedInvoiceReceiverResponseLookup: any;
|
|
15
|
+
invoiceObjectsEnumLookup: any;
|
|
15
16
|
constructor(list: ListService, invoiceService: HitInvoiceService, failedInvoiceService: HitFailedInvoiceService);
|
|
16
17
|
ngOnInit(): void;
|
|
17
18
|
getInvoicePreview(record: any): void;
|
|
18
19
|
requeueInvoiceSingle(record: any): void;
|
|
19
20
|
returnBaseStateInvoiceById(record: any): void;
|
|
21
|
+
getDocObjectName(data: any): string;
|
|
20
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitFailedInvoiceComponent, never>;
|
|
21
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitFailedInvoiceComponent, "lib-failed-invoice", never, {}, {}, never, never, false>;
|
|
22
24
|
}
|
|
@@ -47,6 +47,7 @@ export declare class HitInvoiceComponent implements OnInit {
|
|
|
47
47
|
getInvoicePreview(record: any): void;
|
|
48
48
|
getInvoiceXML(record: any): void;
|
|
49
49
|
getReceiverResponseName(responseId: any): any;
|
|
50
|
+
getDocObjectName(data: any): string;
|
|
50
51
|
getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle";
|
|
51
52
|
DownloadFile(record: any): void;
|
|
52
53
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceComponent, never>;
|
|
@@ -20,7 +20,7 @@ export declare class HitInvoiceService {
|
|
|
20
20
|
getInvoiceResponses: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
21
21
|
getInvoiceView: (invoiceUUID: string) => import("rxjs").Observable<any>;
|
|
22
22
|
showAllFiles: (invoiceUUID: string) => import("rxjs").Observable<any>;
|
|
23
|
-
getInvoicePreview: (invoiceGUID: string,
|
|
23
|
+
getInvoicePreview: (invoiceGUID: string, tableValue: number) => import("rxjs").Observable<any>;
|
|
24
24
|
getXMLPreview: (invoiceGUID: string, tableName: string) => import("rxjs").Observable<any>;
|
|
25
25
|
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
26
26
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
@@ -86,6 +86,8 @@ export interface DespatchCreateDto {
|
|
|
86
86
|
entegratorErrorMessage?: string;
|
|
87
87
|
selectedReceiverPK?: string;
|
|
88
88
|
resourceJournalEntry?: number;
|
|
89
|
+
resourceSubDocType?: number;
|
|
90
|
+
isDraft?: boolean;
|
|
89
91
|
}
|
|
90
92
|
export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
91
93
|
ublVersionId: string;
|
|
@@ -174,6 +176,8 @@ export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
|
174
176
|
entegratorErrorMessage?: string;
|
|
175
177
|
selectedReceiverPK?: string;
|
|
176
178
|
resourceJournalEntry?: number;
|
|
179
|
+
resourceSubDocType?: number;
|
|
180
|
+
isDraft?: boolean;
|
|
177
181
|
concurrencyStamp?: string;
|
|
178
182
|
}
|
|
179
183
|
export interface DespatchExcelDownloadDto {
|
|
@@ -268,6 +272,8 @@ export interface DespatchUpdateDto {
|
|
|
268
272
|
entegratorErrorMessage?: string;
|
|
269
273
|
selectedReceiverPK?: string;
|
|
270
274
|
resourceJournalEntry?: number;
|
|
275
|
+
resourceSubDocType?: number;
|
|
276
|
+
isDraft?: boolean;
|
|
271
277
|
concurrencyStamp?: string;
|
|
272
278
|
}
|
|
273
279
|
export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
@@ -389,4 +395,7 @@ export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
|
389
395
|
selectedReceiverPK?: string;
|
|
390
396
|
resourceJournalEntryMin?: number;
|
|
391
397
|
resourceJournalEntryMax?: number;
|
|
398
|
+
resourceSubDocTypeMin?: number;
|
|
399
|
+
resourceSubDocTypeMax?: number;
|
|
400
|
+
isDraft?: boolean;
|
|
392
401
|
}
|
|
@@ -113,6 +113,9 @@ export interface GetInvoicesInput extends PagedAndSortedResultRequestDto {
|
|
|
113
113
|
selectedReceiverPK?: string;
|
|
114
114
|
resourceJournalEntryMin?: number;
|
|
115
115
|
resourceJournalEntryMax?: number;
|
|
116
|
+
resourceSubDocTypeMin?: number;
|
|
117
|
+
resourceSubDocTypeMax?: number;
|
|
118
|
+
isDraft?: boolean;
|
|
116
119
|
}
|
|
117
120
|
export interface InvoiceCreateDto {
|
|
118
121
|
ublVersionId: string;
|
|
@@ -196,6 +199,8 @@ export interface InvoiceCreateDto {
|
|
|
196
199
|
entegratorErrorMessage?: string;
|
|
197
200
|
selectedReceiverPK?: string;
|
|
198
201
|
resourceJournalEntry?: number;
|
|
202
|
+
resourceSubDocType?: number;
|
|
203
|
+
isDraft?: boolean;
|
|
199
204
|
}
|
|
200
205
|
export interface InvoiceDto extends FullAuditedEntityDto<string> {
|
|
201
206
|
ublVersionId: string;
|
|
@@ -279,6 +284,8 @@ export interface InvoiceDto extends FullAuditedEntityDto<string> {
|
|
|
279
284
|
entegratorErrorMessage?: string;
|
|
280
285
|
selectedReceiverPK?: string;
|
|
281
286
|
resourceJournalEntry?: number;
|
|
287
|
+
resourceSubDocType?: number;
|
|
288
|
+
isDraft?: boolean;
|
|
282
289
|
concurrencyStamp?: string;
|
|
283
290
|
}
|
|
284
291
|
export interface InvoiceExcelDownloadDto {
|
|
@@ -368,5 +375,7 @@ export interface InvoiceUpdateDto {
|
|
|
368
375
|
entegratorErrorMessage?: string;
|
|
369
376
|
selectedReceiverPK?: string;
|
|
370
377
|
resourceJournalEntry?: number;
|
|
378
|
+
resourceSubDocType?: number;
|
|
379
|
+
isDraft?: boolean;
|
|
371
380
|
concurrencyStamp?: string;
|
|
372
381
|
}
|