@hitsoft/e-donusum 1.0.23 → 1.0.25
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 +7 -3
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +38 -14
- package/esm2020/lib/components/hit-invoices/hit-invoice.module.mjs +8 -5
- package/esm2020/lib/despatches/despatch/components/despatch.component.mjs +5 -4
- package/esm2020/lib/hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service.mjs +6 -1
- 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/fesm2015/hitsoft-e-donusum.mjs +93 -46
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +93 -46
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-failed-invoices/hit-failed-invoice.component.d.ts +1 -0
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +11 -1
- package/lib/components/hit-invoices/hit-invoice.module.d.ts +1 -1
- package/lib/hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service.d.ts +1 -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
|
@@ -16,6 +16,7 @@ export declare class HitFailedInvoiceComponent implements OnInit {
|
|
|
16
16
|
ngOnInit(): void;
|
|
17
17
|
getInvoicePreview(record: any): void;
|
|
18
18
|
requeueInvoiceSingle(record: any): void;
|
|
19
|
+
returnBaseStateInvoiceById(record: any): void;
|
|
19
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitFailedInvoiceComponent, never>;
|
|
20
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<HitFailedInvoiceComponent, "lib-failed-invoice", never, {}, {}, never, never, false>;
|
|
21
22
|
}
|
|
@@ -3,27 +3,37 @@ import { OnInit } from '@angular/core';
|
|
|
3
3
|
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
4
|
import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
|
|
5
5
|
import { HitFileDocumentTypeService } from '../../hit-proxy/hit-file-document-type/hit-file-document-type.service';
|
|
6
|
+
import { HitGibPartnerPkService } from '../../hit-proxy/hit-gib-partner-pks/hit-gib-partner-pk.service';
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class HitInvoiceComponent implements OnInit {
|
|
8
9
|
readonly list: ListService;
|
|
9
10
|
private readonly invoiceService;
|
|
11
|
+
private readonly gibPartnerPkService;
|
|
10
12
|
private readonly fileDocumentTypeService;
|
|
11
13
|
dxInvoiceInstance: DxDataGridComponent;
|
|
12
14
|
dxInvoiceFileInstance: DxDataGridComponent;
|
|
15
|
+
dxReceiverPKSInstance: DxDataGridComponent;
|
|
13
16
|
invoicesDataSource: any;
|
|
14
17
|
invoiceStatusLookup: any;
|
|
15
18
|
invoiceFileNameLookup: any;
|
|
16
19
|
invoiceReceiverResponseLookup: any;
|
|
17
20
|
invoiceObjectsEnumLookup: any;
|
|
18
21
|
invoiceFilesDataSource: any;
|
|
22
|
+
invoiceReceiverPKDataSource: any;
|
|
19
23
|
isPreviewModalOpen: boolean;
|
|
20
24
|
isPreviewModalBusy: boolean;
|
|
21
25
|
isFileModalOpen: boolean;
|
|
22
26
|
isFileModalBusy: boolean;
|
|
27
|
+
isPKModalOpen: boolean;
|
|
28
|
+
isPKModalBusy: boolean;
|
|
29
|
+
pkModalSelectedInvoiceId: any;
|
|
30
|
+
pkModalSelectedInvoiceResourceDocEntry: any;
|
|
23
31
|
faturaOnizleme: any;
|
|
24
|
-
constructor(list: ListService, invoiceService: HitInvoiceService, fileDocumentTypeService: HitFileDocumentTypeService);
|
|
32
|
+
constructor(list: ListService, invoiceService: HitInvoiceService, gibPartnerPkService: HitGibPartnerPkService, fileDocumentTypeService: HitFileDocumentTypeService);
|
|
25
33
|
ngOnInit(): void;
|
|
26
34
|
sendInvoiceSingle(record: any): void;
|
|
35
|
+
listReceiverPK(record: any): void;
|
|
36
|
+
selectPKAddress(record: any): void;
|
|
27
37
|
sendInvoiceMultiple(): void;
|
|
28
38
|
sendInvoiceToEntegrator(): void;
|
|
29
39
|
getInvoicesFromConnector(): void;
|
|
@@ -10,7 +10,7 @@ import * as i8 from "devextreme-angular";
|
|
|
10
10
|
import * as i9 from "@abp/ng.components/page";
|
|
11
11
|
export declare class HitInvoiceModule {
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HitInvoiceModule, [typeof i1.HitInvoiceComponent, typeof i2.SanitizeHtmlPipe], [typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.DxDataGridModule, typeof i8.DxTextAreaModule, typeof i8.DxTextBoxModule, typeof i8.DxHtmlEditorModule, typeof i8.DxSelectBoxModule, typeof i8.DxLookupModule, typeof i8.DxTabPanelModule, typeof i9.PageModule, typeof i8.DxNumberBoxModule], never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<HitInvoiceModule, [typeof i1.HitInvoiceComponent, typeof i2.SanitizeHtmlPipe], [typeof i3.CoreModule, typeof i4.ThemeSharedModule, typeof i5.CommercialUiModule, typeof i6.NgxValidateCoreModule, typeof i7.NgbCollapseModule, typeof i7.NgbDatepickerModule, typeof i7.NgbDropdownModule, typeof i8.DxDataGridModule, typeof i8.DxTextAreaModule, typeof i8.DxTextBoxModule, typeof i8.DxHtmlEditorModule, typeof i8.DxSelectBoxModule, typeof i8.DxLookupModule, typeof i8.DxTabPanelModule, typeof i9.PageModule, typeof i8.DxNumberBoxModule, typeof i8.DxTemplateModule], never>;
|
|
14
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<HitInvoiceModule>;
|
|
15
15
|
}
|
|
16
16
|
export declare function loadHitInvoiceModuleAsChild(): Promise<typeof HitInvoiceModule>;
|
|
@@ -6,6 +6,7 @@ export declare class HitGibPartnerPkService {
|
|
|
6
6
|
private devexService;
|
|
7
7
|
apiName: string;
|
|
8
8
|
LoadGibPartnerPks: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
|
+
GetCustomerActivePKS: (tcknVkn: string, eDocType: number) => import("rxjs").Observable<any>;
|
|
9
10
|
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitGibPartnerPkService, never>;
|
|
11
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitGibPartnerPkService>;
|
|
@@ -8,7 +8,9 @@ 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
|
+
updateInvoiceReceiver: (invoiceUUID: string, receiverPK: string) => import("rxjs").Observable<any>;
|
|
11
12
|
requeueInvoiceById: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
13
|
+
returnBaseStateInvoiceById: (invoiceIds: string[]) => import("rxjs").Observable<any>;
|
|
12
14
|
sendInvoiceToEntegrator: () => import("rxjs").Observable<any>;
|
|
13
15
|
getInvoicesFromConnector: () => import("rxjs").Observable<any>;
|
|
14
16
|
getStatuses: () => import("rxjs").Observable<any>;
|
|
@@ -84,6 +84,7 @@ export interface DespatchCreateDto {
|
|
|
84
84
|
docType?: number;
|
|
85
85
|
senderGB?: string;
|
|
86
86
|
entegratorErrorMessage?: string;
|
|
87
|
+
selectedReceiverPK?: string;
|
|
87
88
|
}
|
|
88
89
|
export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
89
90
|
ublVersionId: string;
|
|
@@ -170,6 +171,7 @@ export interface DespatchDto extends FullAuditedEntityDto<string> {
|
|
|
170
171
|
docType?: number;
|
|
171
172
|
senderGB?: string;
|
|
172
173
|
entegratorErrorMessage?: string;
|
|
174
|
+
selectedReceiverPK?: string;
|
|
173
175
|
concurrencyStamp?: string;
|
|
174
176
|
}
|
|
175
177
|
export interface DespatchExcelDownloadDto {
|
|
@@ -262,6 +264,7 @@ export interface DespatchUpdateDto {
|
|
|
262
264
|
docType?: number;
|
|
263
265
|
senderGB?: string;
|
|
264
266
|
entegratorErrorMessage?: string;
|
|
267
|
+
selectedReceiverPK?: string;
|
|
265
268
|
concurrencyStamp?: string;
|
|
266
269
|
}
|
|
267
270
|
export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
@@ -380,4 +383,5 @@ export interface GetDespatchesInput extends PagedAndSortedResultRequestDto {
|
|
|
380
383
|
docTypeMax?: number;
|
|
381
384
|
senderGB?: string;
|
|
382
385
|
entegratorErrorMessage?: string;
|
|
386
|
+
selectedReceiverPK?: string;
|
|
383
387
|
}
|
|
@@ -110,6 +110,7 @@ export interface GetInvoicesInput extends PagedAndSortedResultRequestDto {
|
|
|
110
110
|
isEArchive?: boolean;
|
|
111
111
|
senderGB?: string;
|
|
112
112
|
entegratorErrorMessage?: string;
|
|
113
|
+
selectedReceiverPK?: string;
|
|
113
114
|
}
|
|
114
115
|
export interface InvoiceCreateDto {
|
|
115
116
|
ublVersionId: string;
|
|
@@ -191,6 +192,7 @@ export interface InvoiceCreateDto {
|
|
|
191
192
|
isEArchive?: boolean;
|
|
192
193
|
senderGB?: string;
|
|
193
194
|
entegratorErrorMessage?: string;
|
|
195
|
+
selectedReceiverPK?: string;
|
|
194
196
|
}
|
|
195
197
|
export interface InvoiceDto extends FullAuditedEntityDto<string> {
|
|
196
198
|
ublVersionId: string;
|
|
@@ -272,6 +274,7 @@ export interface InvoiceDto extends FullAuditedEntityDto<string> {
|
|
|
272
274
|
isEArchive?: boolean;
|
|
273
275
|
senderGB?: string;
|
|
274
276
|
entegratorErrorMessage?: string;
|
|
277
|
+
selectedReceiverPK?: string;
|
|
275
278
|
concurrencyStamp?: string;
|
|
276
279
|
}
|
|
277
280
|
export interface InvoiceExcelDownloadDto {
|
|
@@ -359,5 +362,6 @@ export interface InvoiceUpdateDto {
|
|
|
359
362
|
isEArchive?: boolean;
|
|
360
363
|
senderGB?: string;
|
|
361
364
|
entegratorErrorMessage?: string;
|
|
365
|
+
selectedReceiverPK?: string;
|
|
362
366
|
concurrencyStamp?: string;
|
|
363
367
|
}
|