@seniorsistemas/yms-integration 1.40.0 → 1.41.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.
@@ -3298,6 +3298,7 @@ var InvoiceCondition;
3298
3298
  InvoiceCondition["MANUAL_AUTHORIZED"] = "MANUAL_AUTHORIZED";
3299
3299
  InvoiceCondition["DEVOLUTION"] = "DEVOLUTION";
3300
3300
  InvoiceCondition["REJECTED"] = "REJECTED";
3301
+ InvoiceCondition["DIVERGENCE"] = "DIVERGENCE";
3301
3302
  })(InvoiceCondition || (InvoiceCondition = {}));
3302
3303
 
3303
3304
  function getInvoiceConditions(translate) {
@@ -3308,6 +3309,7 @@ function getInvoiceConditions(translate) {
3308
3309
  { label: translate.instant("yms.int.wms_grid_document_invoice_condition_partial_authorized"), value: InvoiceCondition.PARTIAL_AUTHORIZED },
3309
3310
  { label: translate.instant("yms.int.wms_grid_document_invoice_condition_devolution"), value: InvoiceCondition.DEVOLUTION },
3310
3311
  { label: translate.instant("yms.int.wms_grid_document_invoice_condition_rejected"), value: InvoiceCondition.REJECTED },
3312
+ { label: translate.instant("yms.int.wms_grid_document_invoice_condition_divergence"), value: InvoiceCondition.DIVERGENCE },
3311
3313
  ];
3312
3314
  }
3313
3315
 
@@ -4274,6 +4276,7 @@ var DocumentListComponent = /** @class */ (function (_super) {
4274
4276
  { label: _this.translate.instant("yms.int.wms_grid_document_invoice_condition_partial_authorized"), value: InvoiceCondition.PARTIAL_AUTHORIZED },
4275
4277
  { label: _this.translate.instant("yms.int.wms_grid_document_invoice_condition_devolution"), value: InvoiceCondition.DEVOLUTION },
4276
4278
  { label: _this.translate.instant("yms.int.wms_grid_document_invoice_condition_rejected"), value: InvoiceCondition.REJECTED },
4279
+ { label: _this.translate.instant("yms.int.wms_grid_document_invoice_condition_divergence"), value: InvoiceCondition.DIVERGENCE },
4277
4280
  ];
4278
4281
  _this.isAuthorized = function (condition) { return (condition === InvoiceCondition.AUTHORIZED); };
4279
4282
  return _this;