mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
19 lines
656 B
Ruby
19 lines
656 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Docx::DrawStepTable
|
|
def draw_step_table(subject)
|
|
table = Table.find_by_id(subject['id']['table_id'])
|
|
return unless table
|
|
|
|
color = @color
|
|
timestamp = table.created_at
|
|
@docx.p
|
|
@docx.p do
|
|
text I18n.t('projects.reports.elements.step_table.table_name', name: table.name), italic: true
|
|
text ' '
|
|
text I18n.t('projects.reports.elements.step_table.user_time',
|
|
timestamp: I18n.l(timestamp, format: :full)), color: color[:gray]
|
|
end
|
|
@docx.table JSON.parse(table.contents_utf_8)['data'], border_size: Constants::REPORT_DOCX_TABLE_BORDER_SIZE
|
|
end
|
|
end
|