From 8b000b9b8989db2615cde63570268926f8634b11 Mon Sep 17 00:00:00 2001 From: chiu Date: Wed, 18 Sep 2019 21:14:38 +0800 Subject: [PATCH] Update archive_files_controller.rb fix error --- app/controllers/admin/archive_files_controller.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/controllers/admin/archive_files_controller.rb b/app/controllers/admin/archive_files_controller.rb index a847f1c..0828e22 100644 --- a/app/controllers/admin/archive_files_controller.rb +++ b/app/controllers/admin/archive_files_controller.rb @@ -52,13 +52,13 @@ class Admin::ArchiveFilesController < OrbitAdminController def categories_order categories = @module_app.categories categories.each do |category| - archive_cat = ArchiveCategory.All.select{ |value| value.category_id.to_s == category.id.to_s} + archive_cat = ArchiveCategory.all.select{ |value| value.category_id.to_s == category.id.to_s} if archive_cat.length == 0 ArchiveCategory.create(category_id: category.id.to_s) end end - cats_with_nil = ArchiveCategory.All.in(sort_number: nil) - cats_no_nil = ArchiveCategory.All.not_in(sort_number: nil) + cats_with_nil = ArchiveCategory.all.in(sort_number: nil) + cats_no_nil = ArchiveCategory.all.not_in(sort_number: nil) @cats = cats_no_nil.concat(cats_with_nil).collect do |cat| [categories.where(:_id => cat.category_id).first,cat.sort_number.to_s] end