mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-15 19:34:28 +08:00
* Initial setup for docx report * Add render for project, experiment, my_module * Implement converter for RTE fields * Add all report elements * fix markup * Change headers, remove empty blocks, refactored repository draw * Add smart annotations support * Fix justify fields * Prepare for addons integration * Fix markup * Add comments to GemFile * Fix TinyMCE error * Change UI for new report download selector * Fix file error in inventory cell for docx * Fix i18n object for header
20 lines
577 B
Ruby
20 lines
577 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DrawStepAsset
|
|
def draw_step_asset(subject)
|
|
asset = Asset.find_by_id(subject['id']['asset_id'])
|
|
return unless asset
|
|
|
|
is_image = asset.is_image?
|
|
timestamp = asset.created_at
|
|
@docx.p
|
|
@docx.p do
|
|
text I18n.t 'projects.reports.elements.step_asset.file_name', file: asset.file_file_name
|
|
text ' '
|
|
text I18n.t('projects.reports.elements.step_asset.user_time',
|
|
timestamp: I18n.l(timestamp, format: :full)), color: 'a0a0a0'
|
|
end
|
|
|
|
asset_image_preparing(asset) if is_image
|
|
end
|
|
end
|