scinote-web/app/services/reports/docx/draw_result_text.rb

24 lines
946 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-09-17 16:50:01 +08:00
module Reports::Docx::DrawResultText
def draw_result_text(element)
result = element.result
result_text = element.orderable
timestamp = result.created_at
color = @color
@docx.p
@docx.p do
2023-09-29 18:18:45 +08:00
text result.name.presence || I18n.t('projects.reports.unnamed'), italic: true
text " #{I18n.t('search.index.archived')} ", bold: true if result.archived?
text ' '
text I18n.t('projects.reports.elements.result_table.user_time',
timestamp: I18n.l(timestamp, format: :full), user: result.user.full_name), color: color[:gray]
end
html = custom_auto_link(result_text.text, team: @report_team)
Reports::HtmlToWordConverter.new(@docx, { scinote_url: @scinote_url,
link_style: @link_style }).html_to_word_converter(html)
draw_result_comments(result) if @settings.dig('task', 'result_comments')
end
end