mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-13 20:56:52 +08:00
20 lines
612 B
Ruby
20 lines
612 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Docx::DrawStepAsset
|
|
def draw_step_asset(subject, step)
|
|
asset = step.assets.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
|