@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.
- package/esm2020/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.mjs +43 -23
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.mjs +8 -1
- package/esm2020/lib/hit-proxy/hit-inbound-invoices/models.mjs +1 -1
- package/fesm2015/hitsoft-e-donusum.mjs +50 -23
- package/fesm2015/hitsoft-e-donusum.mjs.map +1 -1
- package/fesm2020/hitsoft-e-donusum.mjs +49 -22
- package/fesm2020/hitsoft-e-donusum.mjs.map +1 -1
- package/lib/components/hit-inbound-invoices/hit-inbound-invoice.component.d.ts +2 -0
- package/lib/hit-proxy/hit-inbound-invoices/hit-inbound-invoice.service.d.ts +1 -0
- package/lib/hit-proxy/hit-inbound-invoices/models.d.ts +9 -0
- package/package.json +1 -1
|
@@ -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;
|