Update journal_papers_controller.rb
This commit is contained in:
parent
0392c1a8d7
commit
42088a1472
|
@ -10,6 +10,7 @@ class Admin::JournalPapersController < OrbitMemberController
|
|||
before_action :need_access_right
|
||||
before_action :allow_admin_only, :only => [:index, :setting]
|
||||
def merge
|
||||
puts ['id',params['journal_id']]
|
||||
@journals=JournalPaper.order_by(:year=>'desc').map{|value| value}.group_by{|v| [v[:paper_title],v[:journal_title]]}
|
||||
@journals.each do |key,value|
|
||||
if value.length==1
|
||||
|
@ -40,7 +41,6 @@ class Admin::JournalPapersController < OrbitMemberController
|
|||
end
|
||||
end
|
||||
end
|
||||
puts ['hi',@journals]
|
||||
end
|
||||
def index
|
||||
@writing_journals = JournalPaper.order_by(:year=>'desc').page(params[:page]).per(10)
|
||||
|
|
Loading…
Reference in New Issue