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

27 lines
1,014 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-09-17 16:50:01 +08:00
module Reports::Docx::DrawResultAsset
def draw_result_asset(result)
asset = result.asset
timestamp = asset.created_at
2020-11-11 22:48:00 +08:00
asset_url = Rails.application.routes.url_helpers.asset_download_url(asset)
color = @color
@docx.p
@docx.p do
text result.name, italic: true
2020-11-11 22:48:00 +08:00
text ' '
link I18n.t('projects.reports.elements.download'), asset_url do
italic true
end
text ' ' + I18n.t('search.index.archived'), color: color[:gray] if result.archived?
text ' ' + I18n.t('projects.reports.elements.result_asset.file_name', file: asset.file_name)
text ' ' + I18n.t('projects.reports.elements.result_asset.user_time',
user: result.user.full_name, timestamp: I18n.l(timestamp, format: :full)), color: color[:gray]
end
2020-10-28 23:32:22 +08:00
Reports::DocxRenderer.render_asset_image(@docx, asset) if asset.previewable? && !asset.list?
draw_result_comments(result) if @settings.dig('task', 'result_comments')
end
end