mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
24 lines
901 B
Ruby
24 lines
901 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Docx::DrawMyModuleProtocol
|
|
def draw_my_module_protocol(my_module)
|
|
protocol = my_module.protocol
|
|
|
|
@docx.p
|
|
if protocol.name.present?
|
|
@docx.h4 protocol.name, italic: false
|
|
else
|
|
@docx.h4 I18n.t('projects.reports.elements.module.protocol.name'), italic: false
|
|
end
|
|
|
|
if @settings.dig('task', 'protocol', 'description') && protocol.description.present?
|
|
@docx.p I18n.t('projects.reports.elements.module.protocol.user_time',
|
|
timestamp: I18n.l(protocol.created_at, format: :full)), color: @color[:gray]
|
|
html = custom_auto_link(protocol.description, team: @report_team)
|
|
Reports::HtmlToWordConverter.new(@docx, { scinote_url: @scinote_url,
|
|
link_style: @link_style }).html_to_word_converter(html)
|
|
@docx.p
|
|
@docx.p
|
|
end
|
|
end
|
|
end
|