@seniorsistemas/yms-integration 1.33.0 → 1.34.0
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/bundles/seniorsistemas-yms-integration.umd.js +48 -29
- package/bundles/seniorsistemas-yms-integration.umd.js.map +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js.map +1 -1
- package/esm2015/src/wms/components/document-list/document-list.component.js +48 -28
- package/esm5/src/wms/components/document-list/document-list.component.js +51 -30
- package/fesm2015/seniorsistemas-yms-integration.js +45 -27
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +48 -29
- package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-yms-integration.metadata.json +1 -1
- package/src/wms/components/document-list/document-list.component.d.ts +10 -5
|
@@ -1,26 +1,31 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
1
|
import { DocumentService } from "../../entities/document/document.service";
|
|
3
2
|
import { Document } from "../../entities/document/document";
|
|
4
3
|
import { WmsSystem } from "../../entities/wms-system/wms-system";
|
|
5
4
|
import { AgendaDto } from "../../entities/agenda/agenda-dto";
|
|
5
|
+
import { LazyLoadEvent } from "primeng/api";
|
|
6
6
|
declare class DocumentListDescritor {
|
|
7
7
|
}
|
|
8
|
-
export declare class DocumentListComponent extends DocumentListDescritor
|
|
8
|
+
export declare class DocumentListComponent extends DocumentListDescritor {
|
|
9
9
|
private readonly documentService;
|
|
10
10
|
agenda: AgendaDto;
|
|
11
11
|
wmsSystem: WmsSystem;
|
|
12
12
|
getColumns: any;
|
|
13
13
|
documents: Document[];
|
|
14
14
|
labels: string[];
|
|
15
|
+
gridTotalRecords: number;
|
|
16
|
+
selected: any[];
|
|
17
|
+
gridLoading: boolean;
|
|
18
|
+
private readonly ngUnsubscribe;
|
|
15
19
|
constructor(documentService: DocumentService);
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
private getSystemIntegration;
|
|
18
|
-
private getDocumentBySchedulingId;
|
|
19
20
|
getColumnLabels(): {
|
|
21
|
+
field: string;
|
|
20
22
|
label: string;
|
|
21
23
|
}[];
|
|
22
24
|
isWmsSeniorConnect(): boolean;
|
|
23
25
|
isWmsWIS(): boolean;
|
|
24
26
|
private getLabelsInvoice;
|
|
27
|
+
getInvoiceConditionTranslation(invoiceCondition: string | null): string;
|
|
28
|
+
updateGridData(event: LazyLoadEvent): void;
|
|
29
|
+
private searchDocument;
|
|
25
30
|
}
|
|
26
31
|
export {};
|