@hitsoft/e-donusum 1.0.122 → 1.0.123-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/esm2020/lib/auto-send-rules/auto-send-rule/auto-send-rule.module.mjs +1 -1
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.mjs +33 -13
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +33 -13
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +9 -2
- package/esm2020/lib/components/hit-params-generals/hit-params-generals-part2/hit-params-general-part2.component.mjs +14 -3
- package/esm2020/lib/document-serials/document-serial/document-serial.module.mjs +1 -1
- package/esm2020/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.mjs +11 -1
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +11 -1
- package/esm2020/lib/hit-proxy/hit-params-generals/hit-params-general.service.mjs +10 -1
- package/fesm2015/hitsoft-e-donusum.mjs +124 -37
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +122 -37
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.d.ts +9 -1
- package/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.d.ts +9 -1
- 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 +2 -0
- package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +2 -0
- package/lib/hit-proxy/hit-params-generals/hit-params-general.service.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -36,6 +42,8 @@ export declare class HitInboundDespatchComponent implements OnInit {
|
|
|
36
42
|
downloadPDFMultiple(): void;
|
|
37
43
|
getZipDate(): string;
|
|
38
44
|
viewPDFsMultiple(): void;
|
|
45
|
+
showAllFiles(record: any): void;
|
|
46
|
+
DownloadFile(record: any): void;
|
|
39
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchComponent, never>;
|
|
40
48
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundDespatchComponent, "lib-inbound-despatch", never, {}, {}, never, never, false>;
|
|
41
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;
|
|
@@ -88,7 +90,11 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
88
90
|
hasValidSelection: boolean;
|
|
89
91
|
branchPopupVisible: boolean;
|
|
90
92
|
selectedBranchId: number;
|
|
91
|
-
|
|
93
|
+
invoiceFilesDataSource: any;
|
|
94
|
+
invoiceFileNameLookup: any;
|
|
95
|
+
isFileModalOpen: boolean;
|
|
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;
|
|
@@ -136,6 +142,8 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
136
142
|
getZipDate(): string;
|
|
137
143
|
openBranchPopup(): void;
|
|
138
144
|
confirmBranchSelection: () => void;
|
|
145
|
+
showAllFiles(record: any): void;
|
|
146
|
+
DownloadFile(record: any): void;
|
|
139
147
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceComponent, never>;
|
|
140
148
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundInvoiceComponent, "lib-inbound-invoice", never, {}, {}, never, never, false>;
|
|
141
149
|
}
|
|
@@ -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;
|
|
@@ -14,6 +14,8 @@ export declare class HitInboundDespatchService {
|
|
|
14
14
|
getDespatchPreviewInbound: (despatchGUID: string) => import("rxjs").Observable<any>;
|
|
15
15
|
getDespatchPdfsMultiple: (despatchIds: string[]) => import("rxjs").Observable<string>;
|
|
16
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>;
|
|
17
19
|
constructor(restService: RestService, devexService: DevexpressRestService, http: HttpClient);
|
|
18
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchService, never>;
|
|
19
21
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundDespatchService>;
|
|
@@ -23,6 +23,8 @@ export declare class HitInboundInvoiceService {
|
|
|
23
23
|
processManual: (invoiceID: string) => import("rxjs").Observable<any>;
|
|
24
24
|
createMultipleEmptyDrafts: (requestDto: ConnectorMultipleEmptyDraftDto[]) => import("rxjs").Observable<any>;
|
|
25
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>;
|
|
26
28
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
27
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceService, never>;
|
|
28
30
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundInvoiceService>;
|
|
@@ -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>;
|