@seniorsistemas/yms-integration 1.35.0-edb4b1f3-35b3-4e2e-822e-0ece0140f6fb → 1.36.0-15117912-25b1-4e30-9f5f-7a7f4d9cc22e

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.
@@ -37,6 +37,10 @@ export declare class DocumentListComponent extends DocumentListDescritor {
37
37
  private getLabelsInvoice;
38
38
  getInvoiceConditionTranslation(invoiceCondition: string | null): string;
39
39
  updateGridData(event: LazyLoadEvent): void;
40
+ getFilteredInvoiceConditions(invoiceConditions: any): {
41
+ label: string;
42
+ value: InvoiceCondition | null;
43
+ }[];
40
44
  onInvoiceConditionChange(event: any, document: Document): void;
41
45
  isAuthorized: (condition: InvoiceCondition) => boolean;
42
46
  save(): void;
@@ -4,4 +4,5 @@ export interface FindDocumentsInput {
4
4
  logistcUnitName: string;
5
5
  size: number;
6
6
  offset: number;
7
+ purchaseOrder: string;
7
8
  }