mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-29 03:01:58 +08:00
Merge pull request #3296 from okriuchykhin/ok_SCI_5699
Improve handling of selected inventories in reports [SCI-5699]
This commit is contained in:
commit
56a6c0825d
1 changed files with 3 additions and 3 deletions
|
@ -115,9 +115,9 @@ class ReportsController < ApplicationController
|
|||
@report.settings = Report::DEFAULT_SETTINGS if @report.settings.blank?
|
||||
|
||||
@project_contents = {
|
||||
experiments: @report.report_elements.where(type_of: 'experiment').pluck(:experiment_id),
|
||||
my_modules: @report.report_elements.where(type_of: 'my_module').pluck(:my_module_id),
|
||||
repositories: @report.report_elements.where(type_of: 'my_module_repository').pluck(:repository_id).uniq
|
||||
experiments: @report.report_elements.experiment.pluck(:experiment_id),
|
||||
my_modules: @report.report_elements.my_module.pluck(:my_module_id),
|
||||
repositories: @report.report_elements.my_module_repository.distinct(:repository_id).pluck(:repository_id)
|
||||
}
|
||||
render :new
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue