@hitsoft/e-donusum 1.0.124-test → 100.1.1-edo-prod
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/notification-email-route.provider.d.ts +9 -0
- package/esm2020/config/e-donusum-config.module.mjs +4 -2
- package/esm2020/config/providers/hit-providers/notification-email-route.provider.mjs +20 -0
- package/esm2020/lib/business-partners/business-partner/components/business-partner.component.mjs +59 -12
- package/esm2020/lib/components/hit-business-partners/hit-business-partner.component.mjs +57 -10
- package/esm2020/lib/components/hit-despatches/hit-despatch.component.mjs +32 -5
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.mjs +81 -13
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +172 -16
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +113 -22
- package/esm2020/lib/components/hit-invoices-sent/hit-invoice-sent.component.mjs +23 -3
- package/esm2020/lib/components/hit-notification-emails/hit-notification-email-routing.module.mjs +24 -0
- package/esm2020/lib/components/hit-notification-emails/hit-notification-email.component.mjs +74 -0
- package/esm2020/lib/components/hit-notification-emails/hit-notification-email.module.mjs +52 -0
- package/esm2020/lib/components/hit-params-generals/hit-params-generals-part2/hit-params-general-part2.component.mjs +14 -3
- package/esm2020/lib/e-donusum-routing.module.mjs +3 -1
- package/esm2020/lib/hit-proxy/hit-business-partners/hit-business-partner.service.mjs +10 -1
- package/esm2020/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.mjs +29 -4
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +27 -1
- package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +6 -1
- package/esm2020/lib/hit-proxy/hit-notification-emails/hit-notification-email.service.mjs +41 -0
- package/esm2020/lib/hit-proxy/hit-params-generals/hit-params-general.service.mjs +10 -1
- package/esm2020/lib/hit-proxy/shared/hit-shared.service.mjs +45 -8
- package/fesm2015/hitsoft-e-donusum-config.mjs +143 -124
- package/fesm2015/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +1074 -342
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum-config.mjs +143 -124
- package/fesm2020/hitsoft-e-donusum-config.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +1045 -315
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/business-partners/business-partner/components/business-partner.component.d.ts +14 -4
- package/lib/components/hit-business-partners/hit-business-partner.component.d.ts +12 -3
- package/lib/components/hit-despatches/hit-despatch.component.d.ts +1 -0
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.d.ts +12 -1
- package/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.d.ts +15 -1
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +18 -1
- package/lib/components/hit-invoices-sent/hit-invoice-sent.component.d.ts +1 -0
- package/lib/components/hit-notification-emails/hit-notification-email-routing.module.d.ts +7 -0
- package/lib/components/hit-notification-emails/hit-notification-email.component.d.ts +24 -0
- package/lib/components/hit-notification-emails/hit-notification-email.module.d.ts +15 -0
- package/lib/components/hit-params-generals/hit-params-generals-part2/hit-params-general-part2.component.d.ts +1 -0
- package/lib/hit-proxy/hit-business-partners/hit-business-partner.service.d.ts +4 -0
- package/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.d.ts +7 -1
- package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +5 -0
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +2 -0
- package/lib/hit-proxy/hit-notification-emails/hit-notification-email.service.d.ts +14 -0
- package/lib/hit-proxy/hit-params-generals/hit-params-general.service.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
import { ListService, PagedResultDto, TrackByService } from '@abp/ng.core';
|
|
2
|
-
import { ConfirmationService } from '@abp/ng.theme.shared';
|
|
3
|
-
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
3
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
4
4
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
5
5
|
import type { GetBusinessPartnersInput, BusinessPartnerWithNavigationPropertiesDto } from '../../../proxy/business-partners/models';
|
|
6
6
|
import { BusinessPartnerService } from '../../../proxy/business-partners/business-partner.service';
|
|
7
|
+
import { HitBusinessPartnerService } from '../../../hit-proxy/hit-business-partners/hit-business-partner.service';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class BusinessPartnerComponent implements OnInit {
|
|
9
|
+
export declare class BusinessPartnerComponent implements OnInit, OnDestroy {
|
|
9
10
|
readonly list: ListService;
|
|
10
11
|
readonly track: TrackByService;
|
|
11
12
|
readonly service: BusinessPartnerService;
|
|
12
13
|
private confirmation;
|
|
13
14
|
private fb;
|
|
15
|
+
private hitBusinessPartnerService;
|
|
16
|
+
private toasterService;
|
|
14
17
|
data: PagedResultDto<BusinessPartnerWithNavigationPropertiesDto>;
|
|
15
18
|
filters: GetBusinessPartnersInput;
|
|
16
19
|
form: FormGroup;
|
|
@@ -18,7 +21,11 @@ export declare class BusinessPartnerComponent implements OnInit {
|
|
|
18
21
|
isModalBusy: boolean;
|
|
19
22
|
isModalOpen: boolean;
|
|
20
23
|
selected?: BusinessPartnerWithNavigationPropertiesDto;
|
|
21
|
-
|
|
24
|
+
isTriggerGetBusinessPartnerBusy: boolean;
|
|
25
|
+
triggerElapsedSeconds: number;
|
|
26
|
+
private _pollingInterval;
|
|
27
|
+
private _elapsedInterval;
|
|
28
|
+
constructor(list: ListService, track: TrackByService, service: BusinessPartnerService, confirmation: ConfirmationService, fb: FormBuilder, hitBusinessPartnerService: HitBusinessPartnerService, toasterService: ToasterService);
|
|
22
29
|
ngOnInit(): void;
|
|
23
30
|
clearFilters(): void;
|
|
24
31
|
buildForm(): void;
|
|
@@ -28,6 +35,9 @@ export declare class BusinessPartnerComponent implements OnInit {
|
|
|
28
35
|
create(): void;
|
|
29
36
|
update(record: BusinessPartnerWithNavigationPropertiesDto): void;
|
|
30
37
|
delete(record: BusinessPartnerWithNavigationPropertiesDto): void;
|
|
38
|
+
triggerGetBusinessPartnerFromConnector(): void;
|
|
39
|
+
private _stopPolling;
|
|
40
|
+
ngOnDestroy(): void;
|
|
31
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<BusinessPartnerComponent, never>;
|
|
32
42
|
static ɵcmp: i0.ɵɵComponentDeclaration<BusinessPartnerComponent, "lib-business-partner", never, {}, {}, never, never, false>;
|
|
33
43
|
}
|
|
@@ -1,16 +1,25 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ToasterService } from '@abp/ng.theme.shared';
|
|
2
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
3
|
import { DxDataGridComponent } from 'devextreme-angular';
|
|
3
4
|
import { HitBusinessPartnerGroupService } from '../../hit-proxy/hit-business-partner-groups/hit-business-partner-group.service';
|
|
4
5
|
import { HitBusinessPartnerService } from '../../hit-proxy/hit-business-partners/hit-business-partner.service';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class HitBusinessPartnerComponent implements OnInit {
|
|
7
|
+
export declare class HitBusinessPartnerComponent implements OnInit, OnDestroy {
|
|
7
8
|
private hitBusinessPartnerService;
|
|
8
9
|
private hitBusinessPartnerGroupService;
|
|
10
|
+
private toasterService;
|
|
9
11
|
dxBusinessPartnerInstance: DxDataGridComponent;
|
|
10
12
|
businessPartnersDataSource: any;
|
|
11
13
|
businessPartnerGroupDataSource: any;
|
|
12
|
-
|
|
14
|
+
isTriggerGetBusinessPartnerBusy: boolean;
|
|
15
|
+
triggerElapsedSeconds: number;
|
|
16
|
+
private _pollingInterval;
|
|
17
|
+
private _elapsedInterval;
|
|
18
|
+
constructor(hitBusinessPartnerService: HitBusinessPartnerService, hitBusinessPartnerGroupService: HitBusinessPartnerGroupService, toasterService: ToasterService);
|
|
13
19
|
ngOnInit(): void;
|
|
20
|
+
triggerGetBusinessPartnerFromConnector(): void;
|
|
21
|
+
private _stopPolling;
|
|
22
|
+
ngOnDestroy(): void;
|
|
14
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerComponent, never>;
|
|
15
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitBusinessPartnerComponent, "lib-business-partner", never, {}, {}, never, never, false>;
|
|
16
25
|
}
|
|
@@ -62,6 +62,7 @@ export declare class HitDespatchComponent implements OnInit, OnDestroy {
|
|
|
62
62
|
showAllFiles(record: any): void;
|
|
63
63
|
DownloadFile(record: any): void;
|
|
64
64
|
downloadPDFMultiple(): void;
|
|
65
|
+
viewPDFsMultiple(): void;
|
|
65
66
|
getZipDate(): string;
|
|
66
67
|
getReceiptAdvicePreview(record: any): void;
|
|
67
68
|
triggerGetDespatchesFromConnector(): void;
|
|
@@ -6,6 +6,7 @@ import { FormBuilder, FormGroup } from '@angular/forms';
|
|
|
6
6
|
import { ToasterService } from '@abp/ng.theme.shared';
|
|
7
7
|
import { HitInboundDespatchService } from '../../hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service';
|
|
8
8
|
import { HitDespatchLineService } from '../../hit-proxy/hit-despatch-lines/hit-despatch-line.service';
|
|
9
|
+
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class HitInboundDespatchComponent implements OnInit {
|
|
11
12
|
readonly list: ListService;
|
|
@@ -14,6 +15,7 @@ export declare class HitInboundDespatchComponent implements OnInit {
|
|
|
14
15
|
private readonly invoiceService;
|
|
15
16
|
private readonly formBuilder;
|
|
16
17
|
private readonly toasterService;
|
|
18
|
+
private readonly fileDocumentTypeService;
|
|
17
19
|
dxInboundDespatchInstance: DxDataGridComponent;
|
|
18
20
|
dxDespatchRowsInstance: DxDataGridComponent;
|
|
19
21
|
inboundDespatchDataSource: any;
|
|
@@ -24,7 +26,11 @@ export declare class HitInboundDespatchComponent implements OnInit {
|
|
|
24
26
|
isModalOpenForResponse: boolean;
|
|
25
27
|
faturaOnizleme: any;
|
|
26
28
|
formResponse: FormGroup;
|
|
27
|
-
|
|
29
|
+
despatchFilesDataSource: any;
|
|
30
|
+
despatchFileNameLookup: any;
|
|
31
|
+
isFileModalOpen: boolean;
|
|
32
|
+
isFileModalBusy: boolean;
|
|
33
|
+
constructor(list: ListService, despatchService: HitInboundDespatchService, despatchLineService: HitDespatchLineService, invoiceService: HitInvoiceService, formBuilder: FormBuilder, toasterService: ToasterService, fileDocumentTypeService: HitFileDocumentTypeService);
|
|
28
34
|
ngOnInit(): void;
|
|
29
35
|
openResponseModal(record: any): void;
|
|
30
36
|
buildForm(record: any): void;
|
|
@@ -33,6 +39,11 @@ export declare class HitInboundDespatchComponent implements OnInit {
|
|
|
33
39
|
getReceiverResponseName(responseId: any): any;
|
|
34
40
|
getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle" | "fas fa-minus-circle";
|
|
35
41
|
getInboundDespatchPreview(record: any): void;
|
|
42
|
+
downloadPDFMultiple(): void;
|
|
43
|
+
getZipDate(): string;
|
|
44
|
+
viewPDFsMultiple(): void;
|
|
45
|
+
showAllFiles(record: any): void;
|
|
46
|
+
DownloadFile(record: any): void;
|
|
36
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchComponent, never>;
|
|
37
48
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundDespatchComponent, "lib-inbound-despatch", never, {}, {}, never, never, false>;
|
|
38
49
|
}
|
|
@@ -10,6 +10,7 @@ import { OpenDocumentDto } from '../../hit-proxy/hit-inbound-invoices/models';
|
|
|
10
10
|
import { HitBranchesService } from '../../hit-proxy/hit-branches/hit-branch.service';
|
|
11
11
|
import { HitParamsGeneralsService } from '../../hit-proxy/hit-params-generals/hit-params-general.service';
|
|
12
12
|
import { HitSharedService } from '../../hit-proxy/shared/hit-shared.service';
|
|
13
|
+
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
13
14
|
import * as i0 from "@angular/core";
|
|
14
15
|
export declare class HitInboundInvoiceComponent implements OnInit {
|
|
15
16
|
readonly list: ListService;
|
|
@@ -25,6 +26,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
25
26
|
private readonly ref;
|
|
26
27
|
private readonly confirmation;
|
|
27
28
|
private readonly hitSharedService;
|
|
29
|
+
private readonly fileDocumentTypeService;
|
|
28
30
|
dxInboundInvoiceInstance: DxDataGridComponent;
|
|
29
31
|
dxPurchaseOrderDocuments: DxDataGridComponent;
|
|
30
32
|
dxPurchaseDespatchDocuments: DxDataGridComponent;
|
|
@@ -47,6 +49,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
47
49
|
partnerAvailableStates: [];
|
|
48
50
|
openDocumentsForPartner: [];
|
|
49
51
|
invoiceObjectsEnumLookup: any;
|
|
52
|
+
invoiceFilesDataSource: any;
|
|
50
53
|
purchaseOrderDocuments: [];
|
|
51
54
|
documentLines: OpenDocumentDto[];
|
|
52
55
|
purchaseDespatchDocuments: [];
|
|
@@ -63,6 +66,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
63
66
|
isLoadingGroups: boolean;
|
|
64
67
|
isLoadingAccounts: boolean;
|
|
65
68
|
isLoadingCountries: boolean;
|
|
69
|
+
isFileModalOpen: boolean;
|
|
66
70
|
faturaOnizleme: any;
|
|
67
71
|
formResponse: FormGroup;
|
|
68
72
|
formPartner: FormGroup;
|
|
@@ -88,7 +92,9 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
88
92
|
hasValidSelection: boolean;
|
|
89
93
|
branchPopupVisible: boolean;
|
|
90
94
|
selectedBranchId: number;
|
|
91
|
-
|
|
95
|
+
invoiceFileNameLookup: any;
|
|
96
|
+
isFileModalBusy: boolean;
|
|
97
|
+
constructor(list: ListService, service: HitInboundInvoiceService, invoiceService: HitInvoiceService, hitBranchesService: HitBranchesService, hitParamsGeneralsService: HitParamsGeneralsService, formBuilder: FormBuilder, formBuilderForPartner: FormBuilder, formBuilderForDocument: FormBuilder, toasterService: ToasterService, businessPartnerGroupService: HitBusinessPartnerGroupService, ref: ChangeDetectorRef, confirmation: ConfirmationService, hitSharedService: HitSharedService, fileDocumentTypeService: HitFileDocumentTypeService);
|
|
92
98
|
countryGridBox_displayExpr(): string;
|
|
93
99
|
stateGridBox_displayExpr(): string;
|
|
94
100
|
serialGridBox_displayExpr(): string;
|
|
@@ -102,6 +108,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
102
108
|
ngOnInit(): void;
|
|
103
109
|
getInboundInvoice(): void;
|
|
104
110
|
getInvoicePreview(record: any): void;
|
|
111
|
+
viewPDFsMultiple(): void;
|
|
105
112
|
openResponseModal(record: any): void;
|
|
106
113
|
buildForm(record: any): void;
|
|
107
114
|
sendInvoiceResponse(response: boolean): void;
|
|
@@ -130,8 +137,15 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
130
137
|
createMultipleEmptyDrafts(): void;
|
|
131
138
|
onResultPopupClosed: () => void;
|
|
132
139
|
closeResultPopup: () => void;
|
|
140
|
+
downloadIncomingPDFMultiple(): void;
|
|
141
|
+
downloadPDFMultiple(): void;
|
|
133
142
|
openBranchPopup(): void;
|
|
134
143
|
confirmBranchSelection: () => void;
|
|
144
|
+
showAllFiles(record: any): void;
|
|
145
|
+
DownloadFile(record: any): void;
|
|
146
|
+
downloadInboundPDFMultiple(): void;
|
|
147
|
+
getZipDate(): string;
|
|
148
|
+
printInboundPDFMultiple(): void;
|
|
135
149
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceComponent, never>;
|
|
136
150
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundInvoiceComponent, "lib-inbound-invoice", never, {}, {}, never, never, false>;
|
|
137
151
|
}
|
|
@@ -2,29 +2,38 @@ import { ListService } from '@abp/ng.core';
|
|
|
2
2
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
3
3
|
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
4
|
import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
|
|
5
|
+
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
5
6
|
import { HitGibPartnerPkService } from '../../hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service';
|
|
6
7
|
import { ToasterService } from '@abp/ng.theme.shared';
|
|
7
8
|
import { HitDocumentSerialService } from '../../hit-proxy/hit-document-serials/hit-document-serial.service';
|
|
8
9
|
import { ConfirmationService } from '@abp/ng.theme.shared';
|
|
10
|
+
import { HitSharedService } from '../../hit-proxy/shared/hit-shared.service';
|
|
9
11
|
import * as i0 from "@angular/core";
|
|
10
12
|
export declare class HitInvoiceComponent implements OnInit, OnDestroy {
|
|
11
13
|
readonly list: ListService;
|
|
12
14
|
private readonly invoiceService;
|
|
13
15
|
private readonly gibPartnerPkService;
|
|
16
|
+
private readonly fileDocumentTypeService;
|
|
14
17
|
private readonly hitDocumentSerialService;
|
|
15
18
|
private readonly toasterService;
|
|
16
19
|
private readonly confirmation;
|
|
20
|
+
private readonly hitSharedService;
|
|
17
21
|
dxInvoiceInstance: DxDataGridComponent;
|
|
22
|
+
dxInvoiceFileInstance: DxDataGridComponent;
|
|
18
23
|
dxReceiverPKSInstance: DxDataGridComponent;
|
|
19
24
|
dxInvoiceSerialInstance: DxDataGridComponent;
|
|
20
25
|
invoicesDataSource: any;
|
|
21
26
|
invoiceStatusLookup: any;
|
|
27
|
+
invoiceFileNameLookup: any;
|
|
22
28
|
invoiceReceiverResponseLookup: any;
|
|
23
29
|
invoiceObjectsEnumLookup: any;
|
|
30
|
+
invoiceFilesDataSource: any;
|
|
24
31
|
invoiceReceiverPKDataSource: any;
|
|
25
32
|
invoiceSerialDataSource: any;
|
|
26
33
|
isPreviewModalOpen: boolean;
|
|
27
34
|
isPreviewModalBusy: boolean;
|
|
35
|
+
isFileModalOpen: boolean;
|
|
36
|
+
isFileModalBusy: boolean;
|
|
28
37
|
isPKModalOpen: boolean;
|
|
29
38
|
isPKModalBusy: boolean;
|
|
30
39
|
pkModalSelectedInvoiceId: any;
|
|
@@ -41,7 +50,7 @@ export declare class HitInvoiceComponent implements OnInit, OnDestroy {
|
|
|
41
50
|
private _pollingInterval;
|
|
42
51
|
private _elapsedInterval;
|
|
43
52
|
invoiceNotSendQueueDataSource: any;
|
|
44
|
-
constructor(list: ListService, invoiceService: HitInvoiceService, gibPartnerPkService: HitGibPartnerPkService, hitDocumentSerialService: HitDocumentSerialService, toasterService: ToasterService, confirmation: ConfirmationService);
|
|
53
|
+
constructor(list: ListService, invoiceService: HitInvoiceService, gibPartnerPkService: HitGibPartnerPkService, fileDocumentTypeService: HitFileDocumentTypeService, hitDocumentSerialService: HitDocumentSerialService, toasterService: ToasterService, confirmation: ConfirmationService, hitSharedService: HitSharedService);
|
|
45
54
|
ngOnInit(): void;
|
|
46
55
|
sendInvoiceSingle(record: any): void;
|
|
47
56
|
setInvoiceCancelWithOpen(record: any): void;
|
|
@@ -51,17 +60,25 @@ export declare class HitInvoiceComponent implements OnInit, OnDestroy {
|
|
|
51
60
|
listActiveSeriesForMultiple(): void;
|
|
52
61
|
selectInvoiceSerial(record: any): void;
|
|
53
62
|
selectPKAddress(record: any): void;
|
|
63
|
+
downloadPDFMultiple(): void;
|
|
64
|
+
getZipDate(): string;
|
|
54
65
|
sendInvoiceMultiple(): void;
|
|
55
66
|
sendInvoiceToEntegrator(): void;
|
|
56
67
|
getInvoicesFromConnector(): void;
|
|
57
68
|
triggerGetInvoicesFromConnector(): void;
|
|
69
|
+
private buildQueueIssues;
|
|
70
|
+
private notifyQueuedSuccess;
|
|
58
71
|
private _stopPolling;
|
|
59
72
|
ngOnDestroy(): void;
|
|
73
|
+
getInvoiceResponses(): void;
|
|
74
|
+
getInvoiceView(record: any): void;
|
|
75
|
+
showAllFiles(record: any): void;
|
|
60
76
|
getInvoicePreview(record: any): void;
|
|
61
77
|
getInvoiceXML(record: any): void;
|
|
62
78
|
getReceiverResponseName(responseId: any): any;
|
|
63
79
|
getDocObjectName(data: any): string;
|
|
64
80
|
getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle";
|
|
81
|
+
DownloadFile(record: any): void;
|
|
65
82
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceComponent, never>;
|
|
66
83
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInvoiceComponent, "lib-invoice", never, {}, {}, never, never, false>;
|
|
67
84
|
}
|
|
@@ -26,6 +26,7 @@ export declare class HitInvoiceSentComponent implements OnInit {
|
|
|
26
26
|
ngOnInit(): void;
|
|
27
27
|
downloadPDFMultiple(): void;
|
|
28
28
|
getZipDate(): string;
|
|
29
|
+
printPDFMultiple(): void;
|
|
29
30
|
sendInvoiceToEntegrator(): void;
|
|
30
31
|
getInvoicesFromConnector(): void;
|
|
31
32
|
getInvoiceResponses(): void;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/router";
|
|
3
|
+
export declare class HitNotificationEmailRoutingModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitNotificationEmailRoutingModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitNotificationEmailRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitNotificationEmailRoutingModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
|
+
import { HitNotificationEmailService } from '../../hit-proxy/hit-notification-emails/hit-notification-email.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HitNotificationEmailComponent implements OnInit {
|
|
6
|
+
private readonly notificationEmailService;
|
|
7
|
+
private fb;
|
|
8
|
+
notificationEmails: any[];
|
|
9
|
+
form: FormGroup;
|
|
10
|
+
isModalBusy: boolean;
|
|
11
|
+
isModalOpen: boolean;
|
|
12
|
+
selected?: any;
|
|
13
|
+
constructor(notificationEmailService: HitNotificationEmailService, fb: FormBuilder);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
loadData(): void;
|
|
16
|
+
create(): void;
|
|
17
|
+
update(record: any): void;
|
|
18
|
+
buildForm(): void;
|
|
19
|
+
hideForm(): void;
|
|
20
|
+
submitForm(): void;
|
|
21
|
+
deleteRecord(record: any): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitNotificationEmailComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HitNotificationEmailComponent, "lib-notification-email", never, {}, {}, never, never, false>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hit-notification-email.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 "@abp/ng.components/page";
|
|
9
|
+
import * as i8 from "./hit-notification-email-routing.module";
|
|
10
|
+
export declare class HitNotificationEmailModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitNotificationEmailModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitNotificationEmailModule, [typeof i1.HitNotificationEmailComponent], [typeof i2.CoreModule, typeof i3.ThemeSharedModule, typeof i4.CommercialUiModule, typeof i5.NgxValidateCoreModule, typeof i6.NgbCollapseModule, typeof i6.NgbDatepickerModule, typeof i6.NgbDropdownModule, typeof i7.PageModule, typeof i8.HitNotificationEmailRoutingModule], never>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<HitNotificationEmailModule>;
|
|
14
|
+
}
|
|
15
|
+
export declare function loadHitNotificationEmailModuleAsChild(): Promise<typeof HitNotificationEmailModule>;
|
|
@@ -18,6 +18,7 @@ export declare class HitParamsGeneralPart2Component implements OnInit {
|
|
|
18
18
|
valid: EventEmitter<boolean>;
|
|
19
19
|
submitButtonDisabled: boolean;
|
|
20
20
|
integratorDataSource: any;
|
|
21
|
+
downloadTokenSecret: string;
|
|
21
22
|
constructor(service: ParamsGeneralService, fb: FormBuilder, hitParamsGeneralsService: HitParamsGeneralsService, toasterService: ToasterService, hitEntegratorsService: HitEntegratorsService);
|
|
22
23
|
ngOnInit(): void;
|
|
23
24
|
buildForm(): void;
|
|
@@ -6,6 +6,10 @@ export declare class HitBusinessPartnerService {
|
|
|
6
6
|
private devexService;
|
|
7
7
|
apiName: string;
|
|
8
8
|
LoadBusinessPartners: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
triggerGetBusinessPartnerFromConnector: () => import("rxjs").Observable<string>;
|
|
10
|
+
getBusinessPartnerJobStatus: (jobId: string) => import("rxjs").Observable<{
|
|
11
|
+
state: string;
|
|
12
|
+
}>;
|
|
9
13
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitBusinessPartnerService, never>;
|
|
11
15
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitBusinessPartnerService>;
|
|
@@ -1,16 +1,22 @@
|
|
|
1
1
|
import { RestService } from "@abp/ng.core";
|
|
2
2
|
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
3
|
import { DespatchMainResponseDto } from "./models";
|
|
4
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class HitInboundDespatchService {
|
|
6
7
|
private restService;
|
|
7
8
|
private devexService;
|
|
9
|
+
private http;
|
|
8
10
|
apiName: string;
|
|
9
11
|
LoadInboundDespatches: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
10
12
|
sendDespatchResponse: (mainResponse: DespatchMainResponseDto) => import("rxjs").Observable<any>;
|
|
11
13
|
getInboundDespatch: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
12
14
|
getDespatchPreviewInbound: (despatchGUID: string) => import("rxjs").Observable<any>;
|
|
13
|
-
|
|
15
|
+
getDespatchPdfsMultiple: (despatchIds: string[]) => import("rxjs").Observable<string>;
|
|
16
|
+
getIncomingDespatchPdfsMultiple(ids: string[]): import("rxjs").Observable<Blob>;
|
|
17
|
+
LoadInboundDespatchFiles: (despatchGUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
18
|
+
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
19
|
+
constructor(restService: RestService, devexService: DevexpressRestService, http: HttpClient);
|
|
14
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchService, never>;
|
|
15
21
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundDespatchService>;
|
|
16
22
|
}
|
|
@@ -22,6 +22,11 @@ export declare class HitInboundInvoiceService {
|
|
|
22
22
|
createPurchaseInvoiceDocument: (requestDto: ConnectorPurchaseInvoiceDocumentDto, invoiceID: string) => import("rxjs").Observable<any>;
|
|
23
23
|
processManual: (invoiceID: string) => import("rxjs").Observable<any>;
|
|
24
24
|
createMultipleEmptyDrafts: (requestDto: ConnectorMultipleEmptyDraftDto[]) => import("rxjs").Observable<any>;
|
|
25
|
+
getIncomingInvoicePdfsMultiple: (invoiceIds: string[]) => import("rxjs").Observable<Blob>;
|
|
26
|
+
LoadInboundInvoiceFiles: (invoiceGUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
27
|
+
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
28
|
+
getInboundInvoicePdfsMultiple: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
29
|
+
getInboundInvoicePdfsMerged: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
25
30
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
26
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceService, never>;
|
|
27
32
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundInvoiceService>;
|
|
@@ -11,8 +11,10 @@ export declare class HitInvoiceService {
|
|
|
11
11
|
sendInvoiceById: (input: string[]) => import("rxjs").Observable<{
|
|
12
12
|
multiPkDocEntries: number[];
|
|
13
13
|
cancelledDocEntries: number[];
|
|
14
|
+
successInvoiceCount: number;
|
|
14
15
|
}>;
|
|
15
16
|
getInvoicePdfsMultiple: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
17
|
+
getInvoicePdfsMerged: (input: string[]) => import("rxjs").Observable<any>;
|
|
16
18
|
setInvoiceCancelBydId: (invoiceId: string, status: number) => import("rxjs").Observable<any>;
|
|
17
19
|
updateInvoiceReceiver: (invoiceUUID: string, receiverPK: string, isDefaultPK: boolean) => import("rxjs").Observable<any>;
|
|
18
20
|
updateInvoiceSerial: (invoiceIds: string[], serial: string) => import("rxjs").Observable<any>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { RestService } from "@abp/ng.core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HitNotificationEmailService {
|
|
4
|
+
private restService;
|
|
5
|
+
apiName: string;
|
|
6
|
+
getList: (params?: any) => import("rxjs").Observable<any>;
|
|
7
|
+
get: (id: string) => import("rxjs").Observable<any>;
|
|
8
|
+
create: (body: any) => import("rxjs").Observable<any>;
|
|
9
|
+
update: (id: string, body: any) => import("rxjs").Observable<any>;
|
|
10
|
+
delete: (id: string) => import("rxjs").Observable<any>;
|
|
11
|
+
constructor(restService: RestService);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HitNotificationEmailService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HitNotificationEmailService>;
|
|
14
|
+
}
|
|
@@ -4,6 +4,10 @@ export declare class HitParamsGeneralsService {
|
|
|
4
4
|
private restService;
|
|
5
5
|
apiName: string;
|
|
6
6
|
getParamsGeneral: () => import("rxjs").Observable<any>;
|
|
7
|
+
getDownloadTokenSecret: () => import("rxjs").Observable<{
|
|
8
|
+
value: string;
|
|
9
|
+
}>;
|
|
10
|
+
setDownloadTokenSecret: (value: string) => import("rxjs").Observable<void>;
|
|
7
11
|
constructor(restService: RestService);
|
|
8
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitParamsGeneralsService, never>;
|
|
9
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitParamsGeneralsService>;
|