mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
41 lines
858 B
Ruby
41 lines
858 B
Ruby
module MyModulesHelper
|
|
def ordered_step_of(my_module)
|
|
my_module.protocol.steps.order(:position)
|
|
end
|
|
|
|
def ordered_checklist_items(checklist)
|
|
checklist.checklist_items.order(:position)
|
|
end
|
|
|
|
def ordered_assets(step)
|
|
step.assets.order(:file_updated_at)
|
|
end
|
|
|
|
def number_of_samples(my_module)
|
|
my_module.samples.count
|
|
end
|
|
|
|
def ordered_result_of(my_module)
|
|
my_module.results.where(archived: false).order(created_at: :desc)
|
|
end
|
|
|
|
def get_task_alert_color(my_module)
|
|
alert = ''
|
|
if !my_module.completed?
|
|
alert = ' alert-yellow' if my_module.is_one_day_prior?
|
|
alert = ' alert-red' if my_module.is_overdue?
|
|
elsif my_module.completed?
|
|
alert = ' alert-green'
|
|
end
|
|
alert
|
|
end
|
|
|
|
def is_steps_page?
|
|
action_name == "steps"
|
|
end
|
|
|
|
def is_results_page?
|
|
action_name == "results"
|
|
end
|
|
|
|
end
|