@hitsoft/e-donusum 1.0.125-test → 100.1.2-Edo-Test
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/components/hit-despatches/hit-despatch.component.mjs +36 -7
- 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 +417 -28
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.module.mjs +15 -5
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +94 -18
- 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-inbound-despatches/hit-inbound-despatch.service.mjs +29 -4
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +49 -1
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/models.mjs +1 -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 +1138 -250
- 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 +1131 -250
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- 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 +32 -2
- package/lib/components/hit-inbound-invoices/hit-inbound-invoice.module.d.ts +2 -1
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +16 -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-inbound-despatches/hit-inbound-despatch.service.d.ts +7 -1
- package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +9 -0
- package/lib/hit-proxy/hit-inbound-invoices/models.d.ts +53 -0
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +1 -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
|
@@ -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
|
}
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import { ListService } from '@abp/ng.core';
|
|
2
2
|
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
3
3
|
import { DxDataGridComponent, DxTabPanelComponent } from 'devextreme-angular';
|
|
4
|
+
import CustomStore from 'devextreme/data/custom_store';
|
|
4
5
|
import { HitInboundInvoiceService } from '../../hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service';
|
|
5
6
|
import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
|
|
6
7
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
7
8
|
import { ConfirmationService, ToasterService } from '@abp/ng.theme.shared';
|
|
8
9
|
import { HitBusinessPartnerGroupService } from '../../hit-proxy/hit-business-partner-groups/hit-business-partner-group.service';
|
|
9
|
-
import { OpenDocumentDto } from '../../hit-proxy/hit-inbound-invoices/models';
|
|
10
|
+
import { CatalogMatchLineDto, ManualLineDto, OpenDocumentDto, SapTaxGroupDto } from '../../hit-proxy/hit-inbound-invoices/models';
|
|
10
11
|
import { HitBranchesService } from '../../hit-proxy/hit-branches/hit-branch.service';
|
|
11
12
|
import { HitParamsGeneralsService } from '../../hit-proxy/hit-params-generals/hit-params-general.service';
|
|
12
13
|
import { HitSharedService } from '../../hit-proxy/shared/hit-shared.service';
|
|
14
|
+
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
13
15
|
import * as i0 from "@angular/core";
|
|
14
16
|
export declare class HitInboundInvoiceComponent implements OnInit {
|
|
15
17
|
readonly list: ListService;
|
|
@@ -25,6 +27,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
25
27
|
private readonly ref;
|
|
26
28
|
private readonly confirmation;
|
|
27
29
|
private readonly hitSharedService;
|
|
30
|
+
private readonly fileDocumentTypeService;
|
|
28
31
|
dxInboundInvoiceInstance: DxDataGridComponent;
|
|
29
32
|
dxPurchaseOrderDocuments: DxDataGridComponent;
|
|
30
33
|
dxPurchaseDespatchDocuments: DxDataGridComponent;
|
|
@@ -47,6 +50,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
47
50
|
partnerAvailableStates: [];
|
|
48
51
|
openDocumentsForPartner: [];
|
|
49
52
|
invoiceObjectsEnumLookup: any;
|
|
53
|
+
invoiceFilesDataSource: any;
|
|
50
54
|
purchaseOrderDocuments: [];
|
|
51
55
|
documentLines: OpenDocumentDto[];
|
|
52
56
|
purchaseDespatchDocuments: [];
|
|
@@ -63,6 +67,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
63
67
|
isLoadingGroups: boolean;
|
|
64
68
|
isLoadingAccounts: boolean;
|
|
65
69
|
isLoadingCountries: boolean;
|
|
70
|
+
isFileModalOpen: boolean;
|
|
66
71
|
faturaOnizleme: any;
|
|
67
72
|
formResponse: FormGroup;
|
|
68
73
|
formPartner: FormGroup;
|
|
@@ -88,7 +93,17 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
88
93
|
hasValidSelection: boolean;
|
|
89
94
|
branchPopupVisible: boolean;
|
|
90
95
|
selectedBranchId: number;
|
|
91
|
-
|
|
96
|
+
isModalOpenForManualLine: boolean;
|
|
97
|
+
isModalBusyForManualLine: boolean;
|
|
98
|
+
manualLines: ManualLineDto[];
|
|
99
|
+
sapItemsStore: CustomStore;
|
|
100
|
+
taxGroups: SapTaxGroupDto[];
|
|
101
|
+
isModalOpenForCatalog: boolean;
|
|
102
|
+
isModalBusyForCatalog: boolean;
|
|
103
|
+
catalogMatchLines: CatalogMatchLineDto[];
|
|
104
|
+
invoiceFileNameLookup: any;
|
|
105
|
+
isFileModalBusy: boolean;
|
|
106
|
+
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
107
|
countryGridBox_displayExpr(): string;
|
|
93
108
|
stateGridBox_displayExpr(): string;
|
|
94
109
|
serialGridBox_displayExpr(): string;
|
|
@@ -102,6 +117,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
102
117
|
ngOnInit(): void;
|
|
103
118
|
getInboundInvoice(): void;
|
|
104
119
|
getInvoicePreview(record: any): void;
|
|
120
|
+
viewPDFsMultiple(): void;
|
|
105
121
|
openResponseModal(record: any): void;
|
|
106
122
|
buildForm(record: any): void;
|
|
107
123
|
sendInvoiceResponse(response: boolean): void;
|
|
@@ -121,6 +137,13 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
121
137
|
sendDocument(documentGridLines: any[]): void;
|
|
122
138
|
createDraftDocument(): void;
|
|
123
139
|
processManual(record: any): void;
|
|
140
|
+
openManualLineModal(): void;
|
|
141
|
+
onItemLookupChanged(event: any, lineIndex: number): void;
|
|
142
|
+
initSapItemsStore(): void;
|
|
143
|
+
toggleAllManualLines(event: any): void;
|
|
144
|
+
openCatalogMatchModal(): void;
|
|
145
|
+
addCatalogLinesToDocument(): void;
|
|
146
|
+
addManualLinesToDocument(): void;
|
|
124
147
|
checkBoxChanged(event: any): void;
|
|
125
148
|
changeRowsColor(e: any): void;
|
|
126
149
|
getReceiverResponseName(responseId: any): any;
|
|
@@ -130,8 +153,15 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
130
153
|
createMultipleEmptyDrafts(): void;
|
|
131
154
|
onResultPopupClosed: () => void;
|
|
132
155
|
closeResultPopup: () => void;
|
|
156
|
+
downloadIncomingPDFMultiple(): void;
|
|
157
|
+
downloadPDFMultiple(): void;
|
|
133
158
|
openBranchPopup(): void;
|
|
134
159
|
confirmBranchSelection: () => void;
|
|
160
|
+
showAllFiles(record: any): void;
|
|
161
|
+
DownloadFile(record: any): void;
|
|
162
|
+
downloadInboundPDFMultiple(): void;
|
|
163
|
+
getZipDate(): string;
|
|
164
|
+
printInboundPDFMultiple(): void;
|
|
135
165
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceComponent, never>;
|
|
136
166
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundInvoiceComponent, "lib-inbound-invoice", never, {}, {}, never, never, false>;
|
|
137
167
|
}
|
|
@@ -8,9 +8,10 @@ import * as i6 from "@ng-bootstrap/ng-bootstrap";
|
|
|
8
8
|
import * as i7 from "devextreme-angular";
|
|
9
9
|
import * as i8 from "@abp/ng.components/page";
|
|
10
10
|
import * as i9 from "./hit-inbound-invoice-routing.module";
|
|
11
|
+
import * as i10 from "@angular/forms";
|
|
11
12
|
export declare class HitInboundInvoiceModule {
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HitInboundInvoiceModule, [typeof i1.HitInboundInvoiceComponent], [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.HitInboundInvoiceRoutingModule, typeof i7.DxRadioGroupModule, typeof i7.DxDateBoxModule, typeof i7.DxTemplateModule, typeof i7.DxDropDownBoxModule, typeof i7.DxPopupModule], never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitInboundInvoiceModule, [typeof i1.HitInboundInvoiceComponent], [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.HitInboundInvoiceRoutingModule, typeof i7.DxRadioGroupModule, typeof i7.DxDateBoxModule, typeof i7.DxTemplateModule, typeof i7.DxDropDownBoxModule, typeof i7.DxPopupModule, typeof i7.DxNumberBoxModule, typeof i7.DxCheckBoxModule, typeof i10.FormsModule], never>;
|
|
14
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<HitInboundInvoiceModule>;
|
|
15
16
|
}
|
|
16
17
|
export declare function loadHitInboundInvoiceModuleAsChild(): Promise<typeof HitInboundInvoiceModule>;
|
|
@@ -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,23 @@ 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;
|
|
58
69
|
private _stopPolling;
|
|
59
70
|
ngOnDestroy(): void;
|
|
71
|
+
getInvoiceResponses(): void;
|
|
72
|
+
getInvoiceView(record: any): void;
|
|
73
|
+
showAllFiles(record: any): void;
|
|
60
74
|
getInvoicePreview(record: any): void;
|
|
61
75
|
getInvoiceXML(record: any): void;
|
|
62
76
|
getReceiverResponseName(responseId: any): any;
|
|
63
77
|
getDocObjectName(data: any): string;
|
|
64
78
|
getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle";
|
|
79
|
+
DownloadFile(record: any): void;
|
|
65
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceComponent, never>;
|
|
66
81
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInvoiceComponent, "lib-invoice", never, {}, {}, never, never, false>;
|
|
67
82
|
}
|
|
@@ -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;
|
|
@@ -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,15 @@ 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
|
+
getInvoiceXmlLines: (invoiceId: string) => import("rxjs").Observable<any>;
|
|
26
|
+
getItems: (searchText: string) => import("rxjs").Observable<any>;
|
|
27
|
+
getTaxGroups: (category: string) => import("rxjs").Observable<any>;
|
|
28
|
+
getCatalogMatchLines: (invoiceId: string) => import("rxjs").Observable<any>;
|
|
29
|
+
getIncomingInvoicePdfsMultiple: (invoiceIds: string[]) => import("rxjs").Observable<Blob>;
|
|
30
|
+
LoadInboundInvoiceFiles: (invoiceGUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
31
|
+
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
32
|
+
getInboundInvoicePdfsMultiple: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
33
|
+
getInboundInvoicePdfsMerged: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
25
34
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
26
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceService, never>;
|
|
27
36
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundInvoiceService>;
|
|
@@ -27,6 +27,14 @@ export interface ConnectorDraftDocumentLineDto {
|
|
|
27
27
|
baseType: number | null;
|
|
28
28
|
baseEntry: number | null;
|
|
29
29
|
baseLine: number | null;
|
|
30
|
+
itemCode?: string;
|
|
31
|
+
itemDescription?: string;
|
|
32
|
+
unitPrice?: number | null;
|
|
33
|
+
taxCode?: string;
|
|
34
|
+
vatGroup?: string;
|
|
35
|
+
currency?: string;
|
|
36
|
+
uomCode?: string;
|
|
37
|
+
discPrcnt?: number | null;
|
|
30
38
|
}
|
|
31
39
|
export interface ConnectorDraftDocumentDto {
|
|
32
40
|
docEntry: number | null;
|
|
@@ -58,6 +66,7 @@ export interface OpenDocumentDto {
|
|
|
58
66
|
text: string;
|
|
59
67
|
freeTxt: string;
|
|
60
68
|
lineNum: number;
|
|
69
|
+
unitPrice?: number | null;
|
|
61
70
|
objType: number;
|
|
62
71
|
openQty: number;
|
|
63
72
|
selectedQty: number;
|
|
@@ -89,6 +98,50 @@ export interface ConnectorMultipleEmptyDraftDto {
|
|
|
89
98
|
invoiceID: string;
|
|
90
99
|
draftDocument: ConnectorDraftDocumentDto;
|
|
91
100
|
}
|
|
101
|
+
export interface InvoiceXmlLineDto {
|
|
102
|
+
lineNumber: number;
|
|
103
|
+
itemName: string;
|
|
104
|
+
quantity: number | null;
|
|
105
|
+
unitPrice: number | null;
|
|
106
|
+
taxPercent: number | null;
|
|
107
|
+
currencyCode: string;
|
|
108
|
+
}
|
|
109
|
+
export interface SapItemDto {
|
|
110
|
+
itemCode: string;
|
|
111
|
+
itemName: string;
|
|
112
|
+
}
|
|
113
|
+
export interface SapTaxGroupDto {
|
|
114
|
+
code: string;
|
|
115
|
+
name: string;
|
|
116
|
+
rate: number;
|
|
117
|
+
category: string;
|
|
118
|
+
}
|
|
119
|
+
export interface ManualLineDto {
|
|
120
|
+
lineNumber: number;
|
|
121
|
+
itemCode: string;
|
|
122
|
+
itemName: string;
|
|
123
|
+
quantity: number | null;
|
|
124
|
+
unitPrice: number | null;
|
|
125
|
+
taxCode: string;
|
|
126
|
+
currencyCode: string;
|
|
127
|
+
selected: boolean;
|
|
128
|
+
}
|
|
129
|
+
export interface CatalogMatchLineDto {
|
|
130
|
+
lineNumber: number;
|
|
131
|
+
xmlItemName: string;
|
|
132
|
+
matchedItemCode: string;
|
|
133
|
+
matchedItemName: string;
|
|
134
|
+
catalogSubstitute: string;
|
|
135
|
+
catalogItemCode: string;
|
|
136
|
+
isMatched: boolean;
|
|
137
|
+
quantity: number | null;
|
|
138
|
+
unitPrice: number | null;
|
|
139
|
+
discountPercent: number | null;
|
|
140
|
+
taxPercent: number | null;
|
|
141
|
+
unitCode: string;
|
|
142
|
+
currencyCode: string;
|
|
143
|
+
taxCode: string;
|
|
144
|
+
}
|
|
92
145
|
export interface ConnectorMultipleEmptyDraftResponseDto {
|
|
93
146
|
invoiceID: string;
|
|
94
147
|
EFATNO: string;
|
|
@@ -13,6 +13,7 @@ export declare class HitInvoiceService {
|
|
|
13
13
|
cancelledDocEntries: number[];
|
|
14
14
|
}>;
|
|
15
15
|
getInvoicePdfsMultiple: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
16
|
+
getInvoicePdfsMerged: (input: string[]) => import("rxjs").Observable<any>;
|
|
16
17
|
setInvoiceCancelBydId: (invoiceId: string, status: number) => import("rxjs").Observable<any>;
|
|
17
18
|
updateInvoiceReceiver: (invoiceUUID: string, receiverPK: string, isDefaultPK: boolean) => import("rxjs").Observable<any>;
|
|
18
19
|
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>;
|