@hitsoft/e-donusum 100.1.3-Edo-Test → 100.1.5-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/esm2020/lib/auto-send-rules/auto-send-rule/auto-send-rule.module.mjs +1 -1
- 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-inbound-invoices/hit-inbound-invoice.component.mjs +3 -3
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +26 -11
- package/esm2020/lib/document-serials/document-serial/document-serial.module.mjs +1 -1
- package/esm2020/lib/hit-proxy/hit-business-partners/hit-business-partner.service.mjs +10 -1
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +3 -3
- package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +210 -96
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +209 -94
- 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-invoices/hit-invoice.component.d.ts +2 -0
- package/lib/hit-proxy/hit-business-partners/hit-business-partner.service.d.ts +4 -0
- package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +1 -1
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +1 -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
|
}
|
|
@@ -66,6 +66,8 @@ export declare class HitInvoiceComponent implements OnInit, OnDestroy {
|
|
|
66
66
|
sendInvoiceToEntegrator(): void;
|
|
67
67
|
getInvoicesFromConnector(): void;
|
|
68
68
|
triggerGetInvoicesFromConnector(): void;
|
|
69
|
+
private buildQueueIssues;
|
|
70
|
+
private notifyQueuedSuccess;
|
|
69
71
|
private _stopPolling;
|
|
70
72
|
ngOnDestroy(): void;
|
|
71
73
|
getInvoiceResponses(): 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>;
|
|
@@ -11,7 +11,7 @@ export declare class HitInboundInvoiceService {
|
|
|
11
11
|
getInboundInvoice: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
12
12
|
getInboundInvoiceView: (invoiceGUID: string) => import("rxjs").Observable<any>;
|
|
13
13
|
getBankAccountByCurrency: (actCurr: string) => import("rxjs").Observable<any>;
|
|
14
|
-
checkBusinessPartnerExist: (tcknVkn: string) => import("rxjs").Observable<any>;
|
|
14
|
+
checkBusinessPartnerExist: (tcknVkn: string, cardType?: string) => import("rxjs").Observable<any>;
|
|
15
15
|
getPartnerNumberingSeries: () => import("rxjs").Observable<any>;
|
|
16
16
|
getPartnerDetails: (invoiceGuid: string) => import("rxjs").Observable<any>;
|
|
17
17
|
getCountries: () => import("rxjs").Observable<any>;
|
|
@@ -11,6 +11,7 @@ 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>;
|
|
16
17
|
getInvoicePdfsMerged: (input: string[]) => import("rxjs").Observable<any>;
|