@hitsoft/e-donusum 100.1.18-Edo-Test → 100.1.20-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.
@@ -111,6 +111,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
111
111
  isModalBusyForManualLine: boolean;
112
112
  manualLines: ManualLineDto[];
113
113
  itemsGridStore: any;
114
+ taxGroupsGridStore: any;
114
115
  taxGroups: SapTaxGroupDto[];
115
116
  isModalOpenForCatalog: boolean;
116
117
  isModalBusyForCatalog: boolean;
@@ -164,6 +165,7 @@ export declare class HitInboundInvoiceComponent implements OnInit {
164
165
  processManual(record: any): void;
165
166
  openManualLineModal(): void;
166
167
  onItemGridSelectionChanged(event: any, lineIndex: number): void;
168
+ onTaxGroupGridSelectionChanged(event: any, lineIndex: number): void;
167
169
  toggleAllManualLines(event: any): void;
168
170
  openCatalogMatchModal(): void;
169
171
  addCatalogLinesToDocument(): void;
@@ -27,6 +27,7 @@ export declare class HitInboundInvoiceService {
27
27
  getInvoiceXmlLines: (invoiceId: string) => import("rxjs").Observable<any>;
28
28
  getItems: (searchText: string) => import("rxjs").Observable<any>;
29
29
  itemsGridStore: import("devextreme-aspnet-data-nojquery").CustomStore;
30
+ taxGroupsGridStore: (category: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
30
31
  getTaxGroups: (category: string) => import("rxjs").Observable<any>;
31
32
  LoadInboundInvoiceFiles: (invoiceGUID: string) => import("devextreme-aspnet-data-nojquery").CustomStore;
32
33
  downloadFileById: (blobID: string) => import("rxjs").Observable<any>;
@@ -93,6 +93,14 @@ export interface ConnectorPurchaseInvoiceDocumentLineDto {
93
93
  baseType: number | null;
94
94
  baseEntry: number | null;
95
95
  baseLine: number | null;
96
+ itemCode?: string;
97
+ itemDescription?: string;
98
+ unitPrice?: number | null;
99
+ taxCode?: string;
100
+ vatGroup?: string;
101
+ currency?: string;
102
+ uomCode?: string;
103
+ discPrcnt?: number | null;
96
104
  }
97
105
  export interface ConnectorMultipleEmptyDraftDto {
98
106
  invoiceID: string;
@@ -126,6 +134,7 @@ export interface ManualLineDto {
126
134
  currencyCode: string;
127
135
  selected: boolean;
128
136
  itemBoxOpened?: boolean;
137
+ taxBoxOpened?: boolean;
129
138
  }
130
139
  export interface CatalogMatchLineDto {
131
140
  lineNumber: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitsoft/e-donusum",
3
- "version": "100.1.18-Edo-Test",
3
+ "version": "100.1.20-Edo-Test",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=9",
6
6
  "@angular/core": ">=9",