@hitsoft/e-donusum 1.0.119 → 1.0.121

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.
@@ -58,7 +58,6 @@ export declare class HitDespatchComponent implements OnInit {
58
58
  showAllFiles(record: any): void;
59
59
  DownloadFile(record: any): void;
60
60
  downloadPDFMultiple(): void;
61
- viewPDFsMultiple(): void;
62
61
  getZipDate(): string;
63
62
  getReceiptAdvicePreview(record: any): void;
64
63
  static ɵfac: i0.ɵɵFactoryDeclaration<HitDespatchComponent, never>;
@@ -33,9 +33,6 @@ export declare class HitInboundDespatchComponent implements OnInit {
33
33
  getReceiverResponseName(responseId: any): any;
34
34
  getIconClass(responseId: any): "" | "fas fa-clock" | "fas fa-check-circle" | "fas fa-times-circle" | "fas fa-minus-circle";
35
35
  getInboundDespatchPreview(record: any): void;
36
- downloadPDFMultiple(): void;
37
- getZipDate(): string;
38
- viewPDFsMultiple(): void;
39
36
  static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchComponent, never>;
40
37
  static ɵcmp: i0.ɵɵComponentDeclaration<HitInboundDespatchComponent, "lib-inbound-despatch", never, {}, {}, never, never, false>;
41
38
  }
@@ -102,7 +102,6 @@ export declare class HitInboundInvoiceComponent implements OnInit {
102
102
  ngOnInit(): void;
103
103
  getInboundInvoice(): void;
104
104
  getInvoicePreview(record: any): void;
105
- viewPDFsMultiple(): void;
106
105
  openResponseModal(record: any): void;
107
106
  buildForm(record: any): void;
108
107
  sendInvoiceResponse(response: boolean): void;
@@ -131,9 +130,6 @@ export declare class HitInboundInvoiceComponent implements OnInit {
131
130
  createMultipleEmptyDrafts(): void;
132
131
  onResultPopupClosed: () => void;
133
132
  closeResultPopup: () => void;
134
- downloadIncomingPDFMultiple(): void;
135
- downloadPDFMultiple(): void;
136
- getZipDate(): string;
137
133
  openBranchPopup(): void;
138
134
  confirmBranchSelection: () => void;
139
135
  static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceComponent, never>;
@@ -8,7 +8,6 @@ import { ToasterService } from '@abp/ng.theme.shared';
8
8
  import { HitDocumentSerialService } from '../../hit-proxy/hit-document-serials/hit-document-serial.service';
9
9
  import { ConfirmationService } from '@abp/ng.theme.shared';
10
10
  import { HitSharedService } from '../../hit-proxy/shared/hit-shared.service';
11
- import { EnvironmentService } from '@abp/ng.core';
12
11
  import * as i0 from "@angular/core";
13
12
  export declare class HitInvoiceComponent implements OnInit {
14
13
  readonly list: ListService;
@@ -19,7 +18,6 @@ export declare class HitInvoiceComponent implements OnInit {
19
18
  private readonly toasterService;
20
19
  private readonly confirmation;
21
20
  private readonly hitSharedService;
22
- private readonly environmentService;
23
21
  dxInvoiceInstance: DxDataGridComponent;
24
22
  dxInvoiceFileInstance: DxDataGridComponent;
25
23
  dxReceiverPKSInstance: DxDataGridComponent;
@@ -48,7 +46,7 @@ export declare class HitInvoiceComponent implements OnInit {
48
46
  faturaOnizleme: any;
49
47
  isModalOpenForNotQueue: boolean;
50
48
  invoiceNotSendQueueDataSource: any;
51
- constructor(list: ListService, invoiceService: HitInvoiceService, gibPartnerPkService: HitGibPartnerPkService, fileDocumentTypeService: HitFileDocumentTypeService, hitDocumentSerialService: HitDocumentSerialService, toasterService: ToasterService, confirmation: ConfirmationService, hitSharedService: HitSharedService, environmentService: EnvironmentService);
49
+ constructor(list: ListService, invoiceService: HitInvoiceService, gibPartnerPkService: HitGibPartnerPkService, fileDocumentTypeService: HitFileDocumentTypeService, hitDocumentSerialService: HitDocumentSerialService, toasterService: ToasterService, confirmation: ConfirmationService, hitSharedService: HitSharedService);
52
50
  ngOnInit(): void;
53
51
  sendInvoiceSingle(record: any): void;
54
52
  setInvoiceCancelWithOpen(record: any): void;
@@ -65,8 +63,6 @@ export declare class HitInvoiceComponent implements OnInit {
65
63
  getInvoicesFromConnector(): void;
66
64
  getInvoiceResponses(): void;
67
65
  getInvoiceView(record: any): void;
68
- debugger: any;
69
- viewPDFsMultiple(): void;
70
66
  showAllFiles(record: any): void;
71
67
  getInvoicePreview(record: any): void;
72
68
  getInvoiceXML(record: any): void;
@@ -1,20 +1,16 @@
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';
5
4
  import * as i0 from "@angular/core";
6
5
  export declare class HitInboundDespatchService {
7
6
  private restService;
8
7
  private devexService;
9
- private http;
10
8
  apiName: string;
11
9
  LoadInboundDespatches: import("devextreme-aspnet-data-nojquery").CustomStore;
12
10
  sendDespatchResponse: (mainResponse: DespatchMainResponseDto) => import("rxjs").Observable<any>;
13
11
  getInboundDespatch: (startDate: string, endDate: string) => import("rxjs").Observable<any>;
14
12
  getDespatchPreviewInbound: (despatchGUID: string) => import("rxjs").Observable<any>;
15
- getDespatchPdfsMultiple: (despatchIds: string[]) => import("rxjs").Observable<string>;
16
- getIncomingDespatchPdfsMultiple(ids: string[]): import("rxjs").Observable<Blob>;
17
- constructor(restService: RestService, devexService: DevexpressRestService, http: HttpClient);
13
+ constructor(restService: RestService, devexService: DevexpressRestService);
18
14
  static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundDespatchService, never>;
19
15
  static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundDespatchService>;
20
16
  }
@@ -22,7 +22,6 @@ 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
- getIncomingInvoicePdfsMultiple: (invoiceIds: string[]) => import("rxjs").Observable<Blob>;
26
25
  constructor(restService: RestService, devexService: DevexpressRestService);
27
26
  static ɵfac: i0.ɵɵFactoryDeclaration<HitInboundInvoiceService, never>;
28
27
  static ɵprov: i0.ɵɵInjectableDeclaration<HitInboundInvoiceService>;
@@ -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, fileName?: string) => void;
4
+ previewFile: (base64: any) => void;
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<HitSharedService, never>;
6
6
  static ɵprov: i0.ɵɵInjectableDeclaration<HitSharedService>;
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitsoft/e-donusum",
3
- "version": "1.0.119",
3
+ "version": "1.0.121",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=9",
6
6
  "@angular/core": ">=9",