@senior-agronegocio/angular-components 0.0.78 → 0.0.79

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.
@@ -5444,7 +5444,11 @@
5444
5444
  this.sidebarTitle = this.translate.instant("agro.angular_components.event_sidebar_title", { eventNumber: title });
5445
5445
  };
5446
5446
  EventControlBoardComponent.prototype.getProducerInvoiceNumberAndSerie = function () {
5447
- return this.producerInvoice ? this.producerInvoice.number + " - " + this.producerInvoice.series : "aaa";
5447
+ var _a, _b;
5448
+ if (((_a = this.producerInvoice) === null || _a === void 0 ? void 0 : _a.number) && ((_b = this.producerInvoice) === null || _b === void 0 ? void 0 : _b.series)) {
5449
+ return this.producerInvoice.number + " - " + this.producerInvoice.series;
5450
+ }
5451
+ return "";
5448
5452
  };
5449
5453
  EventControlBoardComponent.prototype.reprocessEvent = function () {
5450
5454
  var _this = this;