@hitsoft/e-donusum 1.0.19 → 1.0.21
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/hit-providers/failed-invoice-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +4 -2
- package/esm2020/config/providers/hit-providers/failed-invoice-route.provider.mjs +20 -0
- package/esm2020/lib/components/hit-failed-invoices/hit-failed-invoice-routing.module.mjs +38 -0
- package/esm2020/lib/components/hit-failed-invoices/hit-failed-invoice.component.mjs +53 -0
- package/esm2020/lib/components/hit-failed-invoices/hit-failed-invoice.module.mjs +77 -0
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +3 -3
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +14 -3
- package/esm2020/lib/despatches/despatch/components/despatch.component.mjs +5 -4
- package/esm2020/lib/e-donusum-routing.module.mjs +3 -1
- package/esm2020/lib/hit-proxy/hit-failed-invoices/hit-failed-invoice.service.mjs +24 -0
- package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +11 -1
- 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/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 +109 -90
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +289 -108
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +109 -90
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +289 -108
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-failed-invoices/hit-failed-invoice-routing.module.d.ts +7 -0
- package/lib/components/hit-failed-invoices/hit-failed-invoice.component.d.ts +21 -0
- package/lib/components/hit-failed-invoices/hit-failed-invoice.module.d.ts +16 -0
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +1 -0
- package/lib/hit-proxy/hit-failed-invoices/hit-failed-invoice.service.d.ts +12 -0
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +2 -0
- package/lib/proxy/despatches/models.d.ts +4 -0
- package/lib/proxy/invoices/models.d.ts +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitFailedInvoiceRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitFailedInvoiceRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitFailedInvoiceRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitFailedInvoiceRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ListService } from '@abp/ng.core';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
|
+
import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
|
|
5
|
+
import { HitFailedInvoiceService } from '../../hit-proxy/hit-failed-invoices/hit-failed-invoice.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class HitFailedInvoiceComponent implements OnInit {
|
|
8
|
+
readonly list: ListService;
|
|
9
|
+
private readonly invoiceService;
|
|
10
|
+
private readonly failedInvoiceService;
|
|
11
|
+
dxFailedInvoiceInstance: DxDataGridComponent;
|
|
12
|
+
failedInvoicesDataSource: any;
|
|
13
|
+
failedInvoiceStatusLookup: any;
|
|
14
|
+
failedInvoiceReceiverResponseLookup: any;
|
|
15
|
+
constructor(list: ListService, invoiceService: HitInvoiceService, failedInvoiceService: HitFailedInvoiceService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
getInvoicePreview(record: any): void;
|
|
18
|
+
requeueInvoiceSingle(record: any): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitFailedInvoiceComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitFailedInvoiceComponent, "lib-failed-invoice", never, {}, {}, never, never, false>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hit-failed-invoice.component";
|
|
3
|
+
import * as i2 from "@abp/ng.core";
|
|
4
|
+
import * as i3 from "@abp/ng.theme.shared";
|
|
5
|
+
import * as i4 from "@volo/abp.commercial.ng.ui";
|
|
6
|
+
import * as i5 from "@ngx-validate/core";
|
|
7
|
+
import * as i6 from "@ng-bootstrap/ng-bootstrap";
|
|
8
|
+
import * as i7 from "devextreme-angular";
|
|
9
|
+
import * as i8 from "@abp/ng.components/page";
|
|
10
|
+
import * as i9 from "./hit-failed-invoice-routing.module";
|
|
11
|
+
export declare class HitFailedInvoiceModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitFailedInvoiceModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitFailedInvoiceModule, [typeof i1.HitFailedInvoiceComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.DxDataGridModule, typeof i7.DxTextAreaModule, typeof i7.DxTextBoxModule, typeof i7.DxHtmlEditorModule, typeof i7.DxSelectBoxModule, typeof i7.DxLookupModule, typeof i7.DxTabPanelModule, typeof i8.PageModule, typeof i9.HitFailedInvoiceRoutingModule, typeof i7.DxRadioGroupModule], never>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitFailedInvoiceModule>;
|
|
15
|
+
}
|
|
16
|
+
export declare function loadHitFailedInvoiceModuleAsChild(): Promise<typeof HitFailedInvoiceModule>;
|
|
@@ -31,6 +31,7 @@ export declare class HitInvoiceComponent implements OnInit {
|
|
|
31
31
|
getInvoiceView(record: any): void;
|
|
32
32
|
showAllFiles(record: any): void;
|
|
33
33
|
getInvoicePreview(record: any): void;
|
|
34
|
+
getInvoiceXML(record: any): void;
|
|
34
35
|
getReceiverResponseName(responseId: any): any;
|
|
35
36
|
getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle";
|
|
36
37
|
DownloadFile(record: any): void;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HitFailedInvoiceService {
|
|
5
|
+
private restService;
|
|
6
|
+
private devexService;
|
|
7
|
+
apiName: string;
|
|
8
|
+
LoadFailedInvoices: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitFailedInvoiceService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitFailedInvoiceService>;
|
|
12
|
+
}
|
|
@@ -8,6 +8,7 @@ export declare class HitInvoiceService {
|
|
|
8
8
|
LoadInvoices: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
9
|
LoadInvoiceFiles: (invoiceUUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
10
10
|
sendInvoiceById: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
11
|
+
requeueInvoiceById: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
11
12
|
sendInvoiceToEntegrator: () => import("rxjs").Observable<any>;
|
|
12
13
|
getInvoicesFromConnector: () => import("rxjs").Observable<any>;
|
|
13
14
|
getStatuses: () => import("rxjs").Observable<any>;
|
|
@@ -17,6 +18,7 @@ export declare class HitInvoiceService {
|
|
|
17
18
|
getInvoiceView: (invoiceUUID: string) => import("rxjs").Observable<any>;
|
|
18
19
|
showAllFiles: (invoiceUUID: string) => import("rxjs").Observable<any>;
|
|
19
20
|
getInvoicePreview: (invoiceGUID: string, tableName: string) => import("rxjs").Observable<any>;
|
|
21
|
+
getXMLPreview: (invoiceGUID: string, tableName: string) => import("rxjs").Observable<any>;
|
|
20
22
|
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
21
23
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
22
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceService, never>;
|
|
@@ -83,6 +83,7 @@ export interface DespatchCreateDto {
|
|
|
83
83
|
targetDocType?: number;
|
|
84
84
|
docType?: number;
|
|
85
85
|
senderGB?: string;
|
|
86
|
+
entegratorErrorMessage?: string;
|
|
86
87
|
}
|
|
87
88
|
export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
88
89
|
ublVersionId: string;
|
|
@@ -168,6 +169,7 @@ export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
|
168
169
|
targetDocType?: number;
|
|
169
170
|
docType?: number;
|
|
170
171
|
senderGB?: string;
|
|
172
|
+
entegratorErrorMessage?: string;
|
|
171
173
|
concurrencyStamp?: string;
|
|
172
174
|
}
|
|
173
175
|
export interface DespatchExcelDownloadDto {
|
|
@@ -259,6 +261,7 @@ export interface DespatchUpdateDto {
|
|
|
259
261
|
targetDocType?: number;
|
|
260
262
|
docType?: number;
|
|
261
263
|
senderGB?: string;
|
|
264
|
+
entegratorErrorMessage?: string;
|
|
262
265
|
concurrencyStamp?: string;
|
|
263
266
|
}
|
|
264
267
|
export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
@@ -376,4 +379,5 @@ export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
|
376
379
|
docTypeMin?: number;
|
|
377
380
|
docTypeMax?: number;
|
|
378
381
|
senderGB?: string;
|
|
382
|
+
entegratorErrorMessage?: string;
|
|
379
383
|
}
|
|
@@ -109,6 +109,7 @@ export interface GetInvoicesInput extends PagedAndSortedResultRequestDto {
|
|
|
109
109
|
docTypeMax?: number;
|
|
110
110
|
isEArchive?: boolean;
|
|
111
111
|
senderGB?: string;
|
|
112
|
+
entegratorErrorMessage?: string;
|
|
112
113
|
}
|
|
113
114
|
export interface InvoiceCreateDto {
|
|
114
115
|
ublVersionId: string;
|
|
@@ -189,6 +190,7 @@ export interface InvoiceCreateDto {
|
|
|
189
190
|
docType?: number;
|
|
190
191
|
isEArchive?: boolean;
|
|
191
192
|
senderGB?: string;
|
|
193
|
+
entegratorErrorMessage?: string;
|
|
192
194
|
}
|
|
193
195
|
export interface InvoiceDto extends FullAuditedEntityDto<string> {
|
|
194
196
|
ublVersionId: string;
|
|
@@ -269,6 +271,7 @@ export interface InvoiceDto extends FullAuditedEntityDto<string> {
|
|
|
269
271
|
docType?: number;
|
|
270
272
|
isEArchive?: boolean;
|
|
271
273
|
senderGB?: string;
|
|
274
|
+
entegratorErrorMessage?: string;
|
|
272
275
|
concurrencyStamp?: string;
|
|
273
276
|
}
|
|
274
277
|
export interface InvoiceExcelDownloadDto {
|
|
@@ -355,5 +358,6 @@ export interface InvoiceUpdateDto {
|
|
|
355
358
|
docType?: number;
|
|
356
359
|
isEArchive?: boolean;
|
|
357
360
|
senderGB?: string;
|
|
361
|
+
entegratorErrorMessage?: string;
|
|
358
362
|
concurrencyStamp?: string;
|
|
359
363
|
}
|