mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
4bae87e3f7
* Styling changes in DOCX report * Update result comments in docx report * Fix markup
26 lines
831 B
Ruby
26 lines
831 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DrawResultText
|
|
def draw_result_text(subject)
|
|
result = Result.find_by_id(subject['id']['result_id'])
|
|
return unless result
|
|
|
|
result_text = result.result_text
|
|
timestamp = result.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.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)
|
|
html_to_word_converter(html)
|
|
|
|
subject['children'].each do |child|
|
|
public_send("draw_#{child['type_of']}", child)
|
|
end
|
|
end
|
|
end
|