@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.
@@ -1,4 +1,4 @@
1
- import { AfterContentChecked, EventEmitter, OnInit, TemplateRef } from "@angular/core";
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, AfterContentChecked {
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
- private isClienteExterno;
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
- field: string;
67
- header: any;
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>;