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

21 lines
599 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-09-17 16:50:01 +08:00
module Reports::Docx::DrawStepAsset
def draw_step_asset(subject)
asset = Asset.find_by_id(subject['id']['asset_id'])
return unless asset
timestamp = asset.created_at
color = @color
@docx.p
@docx.p do
text (I18n.t 'projects.reports.elements.step_asset.file_name', file: asset.file_name), italic: true
text ' '
text I18n.t('projects.reports.elements.step_asset.user_time',
timestamp: I18n.l(timestamp, format: :full)), color: color[:gray]
end
asset_image_preparing(asset) if asset.image?
end
end