mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-29 11:45:18 +08:00
Merge pull request #2675 from urbanrotnik/ur-sci-4782
Include archived columns to inventories export [SCI-4782]
This commit is contained in:
commit
efbc05e00e
2 changed files with 14 additions and 0 deletions
|
@ -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');
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue