Include archived columns to inventories export

This commit is contained in:
Urban Rotnik 2020-06-22 14:28:49 +02:00
parent 47aac74719
commit d1b1b5f268
2 changed files with 14 additions and 0 deletions

View file

@ -361,6 +361,12 @@ var RepositoryDatatable = (function(global) {
case 'added-on':
val = -6;
break;
case 'archived-by':
val = -7;
break;
case 'archived-on':
val = -8;
break;
default:
val = th.attr('id');
}

View file

@ -34,6 +34,10 @@ module RepositoryZipExport
I18n.t('repositories.table.added_by')
when -6
I18n.t('repositories.table.added_on')
when -7
I18n.t('repositories.table.archived_by')
when -8
I18n.t('repositories.table.archived_on')
else
column = RepositoryColumn.find_by_id(c_id)
column ? column.name : nil
@ -56,6 +60,10 @@ module RepositoryZipExport
row.created_by.full_name
when -6
I18n.l(row.created_at, format: :full)
when -7
row.archived_by.full_name
when -8
I18n.l(row.archived_on, format: :full)
else
cell = row.repository_cells
.find_by(repository_column_id: c_id)