@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.
@@ -5268,7 +5268,11 @@ var EventControlBoardComponent = /** @class */ (function () {
5268
5268
  this.sidebarTitle = this.translate.instant("agro.angular_components.event_sidebar_title", { eventNumber: title });
5269
5269
  };
5270
5270
  EventControlBoardComponent.prototype.getProducerInvoiceNumberAndSerie = function () {
5271
- return this.producerInvoice ? this.producerInvoice.number + " - " + this.producerInvoice.series : "aaa";
5271
+ var _a, _b;
5272
+ if (((_a = this.producerInvoice) === null || _a === void 0 ? void 0 : _a.number) && ((_b = this.producerInvoice) === null || _b === void 0 ? void 0 : _b.series)) {
5273
+ return this.producerInvoice.number + " - " + this.producerInvoice.series;
5274
+ }
5275
+ return "";
5272
5276
  };
5273
5277
  EventControlBoardComponent.prototype.reprocessEvent = function () {
5274
5278
  var _this = this;