Я пытаюсь создать приложение ruby на рельсах, где несколько строк данных обновляются, когда пользователь нажимает кнопку. Всякий раз, когда я нажимаю кнопку, я получаю ActiveRecord :: StatementInvalid в PagesController # call_action SQLite3 :: SQLException: нет такого столбца: посещаемость.2 ошибка. Я предполагаю, что данные не передаются правильно, следовательно, поиск не работает, но я не уверен, почему он не работает.
Что находится в представлении
<%= link_to 'Approve',
{controller: 'pages',
action: 'call_action',
store_id: @store.id,
period_id: period.id},
class: 'button' %>
my pages_controller. rb
def call_action
@attendances = Attendance.where(params[:store_id] => :store_id,params[:period_id] => :period_id)
.update_all(status: "Approved")
if @attendances!=nil
@attendances.each do |var|
var.save!
end
redirect_to root_path
end
end
Файл моих маршрутов
get '/pages/call_action' => 'pages#call_action', :as => :call_action
Моя схема
create_table "attendances", force: :cascade do |t|
t.integer "period_id", null: false
t.integer "employee_id", null: false
t.integer "store_id", null: false
t.decimal "hours_assigned"
t.decimal "hours_worked"
t.decimal "days_worked"
t.decimal "regular_holidays_worked"
t.decimal "special_holidays_worked"
t.decimal "leaves"
t.decimal "rest_days"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.integer "oic"
t.string "status"
t.index ["employee_id"], name: "index_attendances_on_employee_id"
t.index ["period_id"], name: "index_attendances_on_period_id"
t.index ["store_id"], name: "index_attendances_on_store_id"
end
Что я получаю в терминале
Processing by PagesController#call_action as HTML
Parameters: {"period_id"=>"9", "store_id"=>"2"}
User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 3], ["LIMIT", 1]]
Attendance Update All (0.8ms) UPDATE "attendances" SET "status" = ? WHERE "attendances"."2" = ? AND "attendances"."9" = ? [["status", "Approved"], ["2", "store_id"], ["9", "period_id"]]
↳ app/controllers/pages_controller.rb:13:in `call_action'
Completed 500 Internal Server Error in 6ms (ActiveRecord: 1.0ms | Allocations: 2936)