@eqproject/eqp-dynamic-module 2.10.27 → 2.10.28

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.
@@ -8918,7 +8918,7 @@ class TextFilterTemplateComponent {
8918
8918
  * Metodo per emettere l'evento che il valore del record è cambiato.
8919
8919
  */
8920
8920
  onFilterChange() {
8921
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
8921
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
8922
8922
  this.visible = true;
8923
8923
  }
8924
8924
  var statistic = {
@@ -8937,7 +8937,7 @@ class TextFilterTemplateComponent {
8937
8937
  */
8938
8938
  changeVisibility() {
8939
8939
  this.visible = !this.visible;
8940
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
8940
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
8941
8941
  this.visible = true;
8942
8942
  }
8943
8943
  this.onFilterChange();
@@ -9007,7 +9007,7 @@ class NumericFilterTemplateComponent {
9007
9007
  this.filterChange.emit(statistic);
9008
9008
  }
9009
9009
  createStatistic() {
9010
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9010
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9011
9011
  this.visible = true;
9012
9012
  }
9013
9013
  var statistic = {
@@ -9062,7 +9062,7 @@ class NumericFilterTemplateComponent {
9062
9062
  */
9063
9063
  changeVisibility() {
9064
9064
  this.visible = !this.visible;
9065
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9065
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9066
9066
  this.visible = true;
9067
9067
  }
9068
9068
  this.onFilterChange();
@@ -9124,7 +9124,7 @@ class BooleanFilterTemplateComponent {
9124
9124
  * Metodo per emettere l'evento che il valore del record è cambiato.
9125
9125
  */
9126
9126
  onFilterChange() {
9127
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9127
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9128
9128
  this.visible = true;
9129
9129
  }
9130
9130
  var statistic = {
@@ -9143,7 +9143,7 @@ class BooleanFilterTemplateComponent {
9143
9143
  */
9144
9144
  changeVisibility() {
9145
9145
  this.visible = !this.visible;
9146
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9146
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9147
9147
  this.visible = true;
9148
9148
  }
9149
9149
  this.onFilterChange();
@@ -9228,7 +9228,7 @@ class DateFilterTemplateComponent {
9228
9228
  this.filterChange.emit(statistic);
9229
9229
  }
9230
9230
  createStatistic() {
9231
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9231
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9232
9232
  this.visible = true;
9233
9233
  }
9234
9234
  var statistic = {
@@ -9263,7 +9263,7 @@ class DateFilterTemplateComponent {
9263
9263
  */
9264
9264
  changeVisibility() {
9265
9265
  this.visible = !this.visible;
9266
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9266
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9267
9267
  this.visible = true;
9268
9268
  }
9269
9269
  this.onFilterChange();
@@ -9327,7 +9327,7 @@ class ListValueFilterTemplateComponent {
9327
9327
  * Metodo per emettere l'evento che il valore del record è cambiato.
9328
9328
  */
9329
9329
  onFilterChange() {
9330
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9330
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9331
9331
  this.visible = true;
9332
9332
  }
9333
9333
  var statistic = {
@@ -9384,7 +9384,7 @@ class ListValueFilterTemplateComponent {
9384
9384
  */
9385
9385
  changeVisibility() {
9386
9386
  this.visible = !this.visible;
9387
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9387
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9388
9388
  this.visible = true;
9389
9389
  }
9390
9390
  this.onFilterChange();
@@ -9498,7 +9498,7 @@ class TextareaFilterTemplateComponent {
9498
9498
  * Metodo che genera l'oggetto da inviare all'esterno
9499
9499
  */
9500
9500
  generateCondition(mode) {
9501
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9501
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9502
9502
  this.visible = true;
9503
9503
  }
9504
9504
  let output = new Statistic();
@@ -9531,7 +9531,7 @@ class TextareaFilterTemplateComponent {
9531
9531
  */
9532
9532
  changeVisibility() {
9533
9533
  this.visible = !this.visible;
9534
- if ((this.aggregations != null && this.aggregations.length > 0) || this.operatorsGroupBy.length > 0) {
9534
+ if ((this.aggregations != null && this.aggregations.length > 0) || (this.operatorsGroupBy != null && this.operatorsGroupBy.length > 0)) {
9535
9535
  this.visible = true;
9536
9536
  }
9537
9537
  this.onFilterChange();