@hitsoft/e-donusum 1.0.78 → 1.0.80
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-despatches/hit-despatch.component.mjs +21 -15
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +20 -13
- package/esm2020/lib/components/hit-invoices/hit-invoice.component.mjs +18 -12
- package/esm2020/lib/components/hit-producer-receipts/hit-producer-receipt.component.mjs +1 -1
- package/esm2020/lib/paramse-dispatches/paramse-dispatch/paramse-dispatch.module.mjs +1 -1
- package/esm2020/lib/paramse-invoices/paramse-invoice/paramse-invoice.module.mjs +1 -1
- 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 +56 -37
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +56 -37
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-despatches/hit-despatch.component.d.ts +3 -2
- package/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.d.ts +3 -2
- package/lib/components/hit-invoices/hit-invoice.component.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ListService } from '@abp/ng.core';
|
|
1
|
+
import { EnvironmentService, ListService } from '@abp/ng.core';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
4
|
import { HitDespatchService } from '../../hit-proxy/hit-despatches/hit-despatch.service';
|
|
@@ -17,6 +17,7 @@ export declare class HitDespatchComponent implements OnInit {
|
|
|
17
17
|
private readonly confirmation;
|
|
18
18
|
private readonly toasterService;
|
|
19
19
|
private readonly hitSharedService;
|
|
20
|
+
private environmentService;
|
|
20
21
|
dxDespatchInstance: DxDataGridComponent;
|
|
21
22
|
dxDespatchFileInstance: DxDataGridComponent;
|
|
22
23
|
dxDespatchSerialInstance: DxDataGridComponent;
|
|
@@ -38,7 +39,7 @@ export declare class HitDespatchComponent implements OnInit {
|
|
|
38
39
|
isSerialModalBusy: boolean;
|
|
39
40
|
serialModalSelectedDespatchId: any;
|
|
40
41
|
serialModalSelectedDespatchResourceDocEntry: any;
|
|
41
|
-
constructor(list: ListService, service: HitDespatchService, fileDocumentTypeService: HitFileDocumentTypeService, gibPartnerPkService: HitGibPartnerPkService, hitDocumentSerialService: HitDocumentSerialService, confirmation: ConfirmationService, toasterService: ToasterService, hitSharedService: HitSharedService);
|
|
42
|
+
constructor(list: ListService, service: HitDespatchService, fileDocumentTypeService: HitFileDocumentTypeService, gibPartnerPkService: HitGibPartnerPkService, hitDocumentSerialService: HitDocumentSerialService, confirmation: ConfirmationService, toasterService: ToasterService, hitSharedService: HitSharedService, environmentService: EnvironmentService);
|
|
42
43
|
ngOnInit(): void;
|
|
43
44
|
sendDespatchSingle(record: any): void;
|
|
44
45
|
sendDespatchMultiple(): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ListService } from '@abp/ng.core';
|
|
1
|
+
import { EnvironmentService, ListService } from '@abp/ng.core';
|
|
2
2
|
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
3
3
|
import { DxDataGridComponent, DxTabPanelComponent } from 'devextreme-angular';
|
|
4
4
|
import { HitInboundInvoiceService } from '../../hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service';
|
|
@@ -25,6 +25,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
25
25
|
private readonly ref;
|
|
26
26
|
private readonly confirmation;
|
|
27
27
|
private readonly hitSharedService;
|
|
28
|
+
private environmentService;
|
|
28
29
|
dxInboundInvoiceInstance: DxDataGridComponent;
|
|
29
30
|
dxPurchaseOrderDocuments: DxDataGridComponent;
|
|
30
31
|
dxPurchaseDespatchDocuments: DxDataGridComponent;
|
|
@@ -83,7 +84,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
|
|
|
83
84
|
cityService: any;
|
|
84
85
|
isDraft: any;
|
|
85
86
|
isBranch: boolean;
|
|
86
|
-
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);
|
|
87
|
+
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, environmentService: EnvironmentService);
|
|
87
88
|
countryGridBox_displayExpr(): string;
|
|
88
89
|
stateGridBox_displayExpr(): string;
|
|
89
90
|
serialGridBox_displayExpr(): string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ListService } from '@abp/ng.core';
|
|
1
|
+
import { EnvironmentService, ListService } from '@abp/ng.core';
|
|
2
2
|
import { OnInit } from '@angular/core';
|
|
3
3
|
import { DxDataGridComponent } from 'devextreme-angular';
|
|
4
4
|
import { HitInvoiceService } from '../../hit-proxy/hit-invoices/hit-invoice.service';
|
|
@@ -18,6 +18,7 @@ export declare class HitInvoiceComponent implements OnInit {
|
|
|
18
18
|
private readonly toasterService;
|
|
19
19
|
private readonly confirmation;
|
|
20
20
|
private readonly hitSharedService;
|
|
21
|
+
private environmentService;
|
|
21
22
|
dxInvoiceInstance: DxDataGridComponent;
|
|
22
23
|
dxInvoiceFileInstance: DxDataGridComponent;
|
|
23
24
|
dxReceiverPKSInstance: DxDataGridComponent;
|
|
@@ -44,7 +45,7 @@ export declare class HitInvoiceComponent implements OnInit {
|
|
|
44
45
|
serialModalSelectedInvoiceResourceDocEntry: any;
|
|
45
46
|
selectedInvoiceIds: string[];
|
|
46
47
|
faturaOnizleme: any;
|
|
47
|
-
constructor(list: ListService, invoiceService: HitInvoiceService, gibPartnerPkService: HitGibPartnerPkService, fileDocumentTypeService: HitFileDocumentTypeService, hitDocumentSerialService: HitDocumentSerialService, toasterService: ToasterService, confirmation: ConfirmationService, hitSharedService: HitSharedService);
|
|
48
|
+
constructor(list: ListService, invoiceService: HitInvoiceService, gibPartnerPkService: HitGibPartnerPkService, fileDocumentTypeService: HitFileDocumentTypeService, hitDocumentSerialService: HitDocumentSerialService, toasterService: ToasterService, confirmation: ConfirmationService, hitSharedService: HitSharedService, environmentService: EnvironmentService);
|
|
48
49
|
ngOnInit(): void;
|
|
49
50
|
sendInvoiceSingle(record: any): void;
|
|
50
51
|
setInvoiceCancelWithOpen(record: any): void;
|