mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-10-01 09:24:59 +08:00
Fix archived on in xlsx repository export [SCI-10856]
This commit is contained in:
parent
76bb77d7cf
commit
84f47db907
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ module RepositoryXlsxExport
|
||||||
when -9
|
when -9
|
||||||
row_data << (row.archived? && row.archived_by.present? ? row.archived_by.full_name : '')
|
row_data << (row.archived? && row.archived_by.present? ? row.archived_by.full_name : '')
|
||||||
when -10
|
when -10
|
||||||
row_data << (row.archived? && row.archived_on)
|
row_data << row.archived_on
|
||||||
when -11
|
when -11
|
||||||
row_data << row.parent_repository_rows.map(&:code).join(' | ')
|
row_data << row.parent_repository_rows.map(&:code).join(' | ')
|
||||||
row_data << row.child_repository_rows.map(&:code).join(' | ')
|
row_data << row.child_repository_rows.map(&:code).join(' | ')
|
||||||
|
|
Loading…
Add table
Reference in a new issue