@seniorsistemas/yms-integration 1.32.0-7a92407d-4195-45d3-80d8-96605c56a35a → 1.32.0-ff302779-aa64-4fa8-b207-6d6eb93c6d69
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 +49 -26
- 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-grid/document-grid.component.js +47 -26
- package/esm2015/src/wms/components/document-grid/register-document/register-document.component.js +6 -2
- package/esm5/src/wms/components/document-grid/document-grid.component.js +44 -25
- package/esm5/src/wms/components/document-grid/register-document/register-document.component.js +6 -2
- package/fesm2015/seniorsistemas-yms-integration.js +52 -27
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +49 -26
- 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-grid/document-grid.component.d.ts +8 -8
- package/src/wms/components/document-grid/register-document/register-document.component.d.ts +1 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter, OnInit, TemplateRef } from "@angular/core";
|
|
2
2
|
import { TranslateService } from "@ngx-translate/core";
|
|
3
3
|
import { ConfirmationService, MenuItem } from "primeng/api";
|
|
4
4
|
import { Table } from "primeng/table";
|
|
@@ -9,7 +9,7 @@ import { DocumentService } from '../../entities/document/document.service';
|
|
|
9
9
|
import { WmsSystem } from '../../entities/wms-system/wms-system';
|
|
10
10
|
import { IntegrationService, ProcessType } from './../../entities/integration/integration.service';
|
|
11
11
|
import { InvoiceCondition } from "../../../../src/wms/entities/invoice-condition/invoice-condition";
|
|
12
|
-
export declare class DocumentGridComponent implements OnInit
|
|
12
|
+
export declare class DocumentGridComponent implements OnInit {
|
|
13
13
|
private readonly translate;
|
|
14
14
|
private readonly documentService;
|
|
15
15
|
private readonly confirmationService;
|
|
@@ -30,7 +30,7 @@ export declare class DocumentGridComponent implements OnInit, AfterContentChecke
|
|
|
30
30
|
document: Document;
|
|
31
31
|
edit: boolean;
|
|
32
32
|
processType: ProcessType;
|
|
33
|
-
|
|
33
|
+
isClienteExterno: boolean;
|
|
34
34
|
enableButtonIsClienteExterno: boolean;
|
|
35
35
|
private readonly summary;
|
|
36
36
|
private readonly ngUnsubscribe;
|
|
@@ -46,7 +46,6 @@ export declare class DocumentGridComponent implements OnInit, AfterContentChecke
|
|
|
46
46
|
}[];
|
|
47
47
|
constructor(translate: TranslateService, documentService: DocumentService, confirmationService: ConfirmationService, integrationService: IntegrationService, agendaService: AgendaService, utils: UtilsMessageService);
|
|
48
48
|
ngOnInit(): void;
|
|
49
|
-
ngAfterContentChecked(): void;
|
|
50
49
|
private verifyClienteExterno;
|
|
51
50
|
private getProcessTypeByScheduling;
|
|
52
51
|
onChangeDocument(document: Document): void;
|
|
@@ -62,13 +61,14 @@ export declare class DocumentGridComponent implements OnInit, AfterContentChecke
|
|
|
62
61
|
onDelete(): void;
|
|
63
62
|
private removeDocumentIfIdUndfined;
|
|
64
63
|
listDocuments(isDelete: boolean): void;
|
|
65
|
-
getGridColumns
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
64
|
+
private getGridColumns;
|
|
65
|
+
private wmsSeniorConnectIntegration;
|
|
66
|
+
private wmsWisIntegration;
|
|
67
|
+
private wmsSiltIntegration;
|
|
69
68
|
private getColumninvoiceCondition;
|
|
70
69
|
private getColumnInvoiceAndlogistcUnit;
|
|
71
70
|
private getColumnPartner;
|
|
71
|
+
private addInvoiceSituationIfNotClienteExterno;
|
|
72
72
|
isWmsSeniorConnect(): boolean;
|
|
73
73
|
isWmsWIS(): boolean;
|
|
74
74
|
isWmsSilt(): boolean;
|
|
@@ -11,6 +11,7 @@ export declare class RegisterDocumentComponent implements OnInit, OnChanges {
|
|
|
11
11
|
viewDocument: Document[];
|
|
12
12
|
edit: boolean;
|
|
13
13
|
agenda: Agenda;
|
|
14
|
+
isClienteExterno: boolean;
|
|
14
15
|
document: EventEmitter<Document>;
|
|
15
16
|
wmsSystem: WmsSystem;
|
|
16
17
|
visible: EventEmitter<boolean>;
|