|
|
|
@ -8,7 +8,6 @@ angular.module('openproject.models') |
|
|
|
|
angular.extend(this, data, options); |
|
|
|
|
|
|
|
|
|
this.group_by = this.group_by || ''; |
|
|
|
|
this.selectedColumns = this.selectedColumns || []; |
|
|
|
|
|
|
|
|
|
if (this.filters === undefined){ |
|
|
|
|
this.filters = []; |
|
|
|
@ -32,9 +31,9 @@ angular.module('openproject.models') |
|
|
|
|
return angular.extend.apply(this, [ |
|
|
|
|
{ |
|
|
|
|
'f[]': this.getFilterNames(this.getActiveConfiguredFilters()), |
|
|
|
|
'c[]': ['id'].concat(this.selectedColumns.map(function(column) { |
|
|
|
|
'c[]': this.columns.map(function(column) { |
|
|
|
|
return column.name; |
|
|
|
|
})), |
|
|
|
|
}), |
|
|
|
|
'group_by': this.group_by, |
|
|
|
|
'query_id': this.id, |
|
|
|
|
'sort': this.sortation.encode() |
|
|
|
|