mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
22 lines
840 B
Ruby
22 lines
840 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Docx::DrawResultTable
|
|
def draw_result_table(result)
|
|
table = result.table
|
|
timestamp = table.created_at
|
|
color = @color
|
|
@docx.p
|
|
@docx.p do
|
|
text result.name, italic: true
|
|
text ' ' + I18n.t('search.index.archived'), color: color[:gray] if result.archived?
|
|
text ' '
|
|
text I18n.t 'projects.reports.elements.result_table.table_name', name: table.name
|
|
text ' '
|
|
text I18n.t('projects.reports.elements.result_text.user_time',
|
|
timestamp: I18n.l(timestamp, format: :full), user: result.user.full_name), color: color[:gray]
|
|
end
|
|
@docx.table JSON.parse(table.contents_utf_8)['data'], border_size: Constants::REPORT_DOCX_TABLE_BORDER_SIZE
|
|
|
|
draw_result_comments(result) if @settings.dig('task', 'result_comments')
|
|
end
|
|
end
|