mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-13 02:17:23 +08:00
19 lines
564 B
Ruby
19 lines
564 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DrawStepTable
|
||
|
def draw_step_table(subject)
|
||
|
table = Table.find_by_id(subject['id']['table_id'])
|
||
|
return unless table
|
||
|
|
||
|
timestamp = table.created_at
|
||
|
@docx.p
|
||
|
@docx.p do
|
||
|
text I18n.t 'projects.reports.elements.step_table.table_name', name: table.name
|
||
|
text ' '
|
||
|
text I18n.t('projects.reports.elements.step_table.user_time',
|
||
|
timestamp: I18n.l(timestamp, format: :full)), color: 'a0a0a0'
|
||
|
end
|
||
|
@docx.table JSON.parse(table.contents_utf_8)['data'], border_size: 4
|
||
|
end
|
||
|
end
|