@hitsoft/e-donusum 1.0.113 → 1.0.115
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-auto-send-rules/hit-auto-send-rule.component.mjs +3 -3
- package/esm2020/lib/components/hit-despatches/hit-despatch.component.mjs +36 -11
- package/esm2020/lib/components/hit-inbound-despatches/hit-inbound-despatch.component.mjs +50 -6
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +36 -10
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +37 -8
- package/esm2020/lib/document-serials/document-serial/document-serial.module.mjs +1 -1
- package/esm2020/lib/hit-proxy/hit-despatches/hit-despatch.service.mjs +28 -5
- package/esm2020/lib/hit-proxy/hit-inbound-despatches/hit-inbound-despatch.service.mjs +3 -3
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +16 -2
- package/esm2020/lib/hit-proxy/hit-invoices/hit-invoice.service.mjs +44 -8
- package/esm2020/lib/hit-proxy/shared/hit-shared.service.mjs +94 -7
- package/esm2020/lib/proxy/auto-send-rule-doc-types/index.mjs +1 -1
- package/esm2020/lib/proxy/auto-send-rule-scenarios/index.mjs +1 -1
- package/esm2020/lib/proxy/auto-send-rules/index.mjs +1 -1
- package/esm2020/lib/proxy/document-serials/index.mjs +1 -1
- package/esm2020/lib/proxy/gib-partner-pks/index.mjs +1 -1
- package/esm2020/lib/proxy/note-rule-doc-types/index.mjs +1 -1
- package/esm2020/lib/proxy/note-rule-scenarios/index.mjs +1 -1
- package/esm2020/lib/proxy/note-rules/index.mjs +1 -1
- package/esm2020/lib/proxy/params-companies/index.mjs +1 -1
- package/esm2020/lib/proxy/params-generals/index.mjs +1 -1
- package/esm2020/lib/proxy/params-integrators/index.mjs +1 -1
- package/esm2020/lib/proxy/paramse-dispatches/index.mjs +1 -1
- package/esm2020/lib/proxy/paramse-invoices/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-formats/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-rule-doc-types/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-rule-scenarios/index.mjs +1 -1
- package/esm2020/lib/proxy/xslt-rules/index.mjs +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +337 -55
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +335 -55
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/hit-proxy/hit-despatches/hit-despatch.service.d.ts +7 -2
- package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +4 -1
- package/lib/hit-proxy/hit-invoices/hit-invoice.service.d.ts +11 -2
- package/lib/hit-proxy/shared/hit-shared.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { RestService } from "@abp/ng.core";
|
|
2
2
|
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class HitDespatchService {
|
|
5
6
|
private restService;
|
|
6
7
|
private devexService;
|
|
8
|
+
private http;
|
|
7
9
|
apiName: string;
|
|
8
10
|
LoadDespatches: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
11
|
LoadDespatchFiles: (despatchGUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
@@ -13,7 +15,10 @@ export declare class HitDespatchService {
|
|
|
13
15
|
sendDespatchById: (despatchIds: string[]) => import("rxjs").Observable<any>;
|
|
14
16
|
getDespatchPreview: (despatchGUID: string, tableValue: number) => import("rxjs").Observable<any>;
|
|
15
17
|
getDespatchResponses: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
16
|
-
getDespatchView: (despatchUUID: string) => import("rxjs").Observable<
|
|
18
|
+
getDespatchView: (despatchUUID: string) => import("rxjs").Observable<{
|
|
19
|
+
blobUrl: string;
|
|
20
|
+
filename: any;
|
|
21
|
+
}>;
|
|
17
22
|
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
18
23
|
getReceiptAdvicePreview: (despatchGUID: string) => import("rxjs").Observable<any>;
|
|
19
24
|
returnBaseStateDespatchById: (despatchIds: string[]) => import("rxjs").Observable<any>;
|
|
@@ -23,7 +28,7 @@ export declare class HitDespatchService {
|
|
|
23
28
|
updateDespatchSerial: (despatchId: string, serial: string) => import("rxjs").Observable<any>;
|
|
24
29
|
getDespatchXML: (despatchGUID: string, tableValue: number) => import("rxjs").Observable<any>;
|
|
25
30
|
getDespatchPdfsMultiple: (despatchIds: string[]) => import("rxjs").Observable<any>;
|
|
26
|
-
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
31
|
+
constructor(restService: RestService, devexService: DevexpressRestService, http: HttpClient);
|
|
27
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchService, never>;
|
|
28
33
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitDespatchService>;
|
|
29
34
|
}
|
|
@@ -9,7 +9,10 @@ export declare class HitInboundInvoiceService {
|
|
|
9
9
|
LoadInboundInvoices: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
10
10
|
sendInvoiceResponse: (invoiceUUID: string, isConfirm: boolean, id: string) => import("rxjs").Observable<any>;
|
|
11
11
|
getInboundInvoice: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
12
|
-
getInboundInvoiceView: (invoiceGUID: string) => import("rxjs").Observable<
|
|
12
|
+
getInboundInvoiceView: (invoiceGUID: string) => import("rxjs").Observable<{
|
|
13
|
+
blobUrl: string;
|
|
14
|
+
filename: any;
|
|
15
|
+
}>;
|
|
13
16
|
getBankAccountByCurrency: (actCurr: string) => import("rxjs").Observable<any>;
|
|
14
17
|
checkBusinessPartnerExist: (tcknVkn: string) => import("rxjs").Observable<any>;
|
|
15
18
|
getPartnerNumberingSeries: () => import("rxjs").Observable<any>;
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { RestService } from "@abp/ng.core";
|
|
2
2
|
import { DevexpressRestService } from "../devexpress-query-builder/devexpress-query-builder";
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { ConfigStateService } from '@abp/ng.core';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
export declare class HitInvoiceService {
|
|
5
7
|
private restService;
|
|
6
8
|
private devexService;
|
|
9
|
+
private http;
|
|
10
|
+
private configState;
|
|
7
11
|
apiName: string;
|
|
8
12
|
LoadInvoices: import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
9
13
|
LoadInvoiceFiles: (invoiceUUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
|
|
@@ -20,12 +24,17 @@ export declare class HitInvoiceService {
|
|
|
20
24
|
getSapObjects: () => import("rxjs").Observable<any>;
|
|
21
25
|
getReceiverResponses: () => import("rxjs").Observable<any>;
|
|
22
26
|
getInvoiceResponses: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
|
|
23
|
-
|
|
27
|
+
getInvoiceViewUrl(invoiceUUID: string): string;
|
|
28
|
+
getInvoiceViewToken: (invoiceUUID: string) => import("rxjs").Observable<{
|
|
29
|
+
blobUrl: string;
|
|
30
|
+
filename: string;
|
|
31
|
+
}>;
|
|
32
|
+
private getToken;
|
|
24
33
|
showAllFiles: (invoiceUUID: string) => import("rxjs").Observable<any>;
|
|
25
34
|
getInvoicePreview: (invoiceGUID: string, tableValue: number) => import("rxjs").Observable<any>;
|
|
26
35
|
getXMLPreview: (invoiceGUID: string, tableValue: number) => import("rxjs").Observable<any>;
|
|
27
36
|
downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
|
|
28
|
-
constructor(restService: RestService, devexService: DevexpressRestService);
|
|
37
|
+
constructor(restService: RestService, devexService: DevexpressRestService, http: HttpClient, configState: ConfigStateService);
|
|
29
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitInvoiceService, never>;
|
|
30
39
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitInvoiceService>;
|
|
31
40
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class HitSharedService {
|
|
3
3
|
apiName: string;
|
|
4
|
-
previewFile: (base64: any) => void;
|
|
4
|
+
previewFile: (base64: any, filename?: string) => void;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<HitSharedService, never>;
|
|
6
6
|
static ɵprov: i0.ɵɵInjectableDeclaration<HitSharedService>;
|
|
7
7
|
}
|