現在、「勤務アプリ」を作成しており、画像のようなuserが持つshowページにて「出勤・退勤」が操作できる動きを作成しております。実際の日付にボタンを表示し、
出勤を押すと押した時刻が「出社の時と分」に表記され、退勤ボタンに切り替わるという内容です。
出勤時間を(started_at)退勤時間を(finished_at)と定義しました。
本来であれば、ボタンを押すとupdateアクションの内容が評価されるはずですが、if文のtureの条件を満たしているのに
elseのエラー文が表記されてしまいます。beybugも入れて調べてみましたが、解決策がわかりません。
お手数おかけしますが、解決策を教えていただけると幸いです。
宜しくお願い致します。
*users_showの画面*
*user_show_html.erb*
html
1<tr> 2 <td><%= l(day.worked_on, format: :short) %></td> 3 <td class="<%= css_class %>"><%= $days_of_the_week[day.worked_on.wday] %></td> 4 <td><%= l(day.started_at,format: :hour) if day.started_at.present? %></td> 5 <td><%= l(day.started_at,format: :min) if day.started_at.present? %></td> 6 <td> <!--繰り返し処理で表示している時間と本日が同じかつ出勤時間が空だったら、出勤ボタンを表示--> 7 <% if btn_text = attendance_state(day) %> 8 <%= link_to "#{btn_text}登録", user_attendance_path(@user, day), method: :patch, class: "btn btn-primary btn-attendance" %> 9 <% end %> 10 </td> 11 <td><%= l(day.finished_at, format: :hour) if day.finished_at.present? %></td> 12 <td><%= l(day.finished_at, format: :min) if day.finished_at.present? %></td> 13 <td></td> 14 <td> 15 <% if day.started_at.present? && day.finished_at.present? %> 16 <%= working_times(day.started_at, day.finished_at) %> 17 <% end %> 18 </td> 19 <td><%= day.note %></td> 20 </tr> 21 <% end %> 22 </tr>
*controller*
*ボタンを押すとこちらのupdateアクションが評価されますが、
elseの評価しかされません。
rb
1class AttendancesController < ApplicationController 2 3 before_action :set_user, only:[:edit_one_month, :update_one_month] 4 before_action :logged_in_user, only: [:update, :edit_one_month] 5 before_action :set_one_month, only: :edit_one_month 6 7 UPDATE_ERROR_MSG = "勤怠登録に失敗しました。やり直してください。" 8 9 10 def update 11 @user = User.find(params[:user_id]) 12 @attendance = Attendance.find(params[:id]) 13 # 出勤時間が未登録であることを判定します。 14 if @attendance.started_at.nil? 15 if @attendance.update_attributes(started_at: Time.current.change(sec: 0)) 16 flash[:info] = "おはようございます!" 17 else 18 flash[:danger] = UPDATE_ERROR_MSG 19 end 20 elsif @attendance.finished_at.nil? 21 if @attendance.update_attributes(finished_at: Time.current.change(sec: 0)) 22 flash[:info] = "お疲れ様でした。" 23 else 24 flash[:danger] = UPDATE_ERROR_MSG 25 end 26 end 27 redirect_to @user 28 end 29 30 def edit_one_month 31 end 32end 33
*スキーマです*
rb
1# This file is auto-generated from the current state of the database. Instead 2# of editing this file, please use the migrations feature of Active Record to 3# incrementally modify your database, and then regenerate this schema definition. 4# 5# Note that this schema.rb definition is the authoritative source for your 6# database schema. If you need to create the application database on another 7# system, you should be using db:schema:load, not running all the migrations 8# from scratch. The latter is a flawed and unsustainable approach (the more migrations 9# you'll amass, the slower it'll run and the greater likelihood for issues). 10# 11# It's strongly recommended that you check this file into your version control system. 12 13ActiveRecord::Schema.define(version: 20200803060313) do 14 15 create_table "attendances", force: :cascade do |t| 16 t.date "worked_on" 17 t.datetime "started_at" 18 t.datetime "finished_at" 19 t.string "note" 20 t.integer "user_id" 21 t.datetime "created_at", null: false 22 t.datetime "updated_at", null: false 23![イメージ説明](09e48a586e80f934055712e2fcb9a49f.png) end 24 25 create_table "users", force: :cascade do |t| 26 t.string "name" 27 t.string "email" 28 t.string "department" 29 t.datetime "created_at", null: false 30 t.datetime "updated_at", null: false 31 t.string "password_digest" 32 t.string "remember_digest" 33 t.datetime "basic_time", default: "2020-08-10 23:00:00" 34 t.datetime "work_time", default: "2020-08-10 22:30:00" 35 t.boolean "admin", default: false 36 t.index ["email"], name: "index_users_on_email", unique: true 37 end 38 39end 40 41 42
回答1件
あなたの回答
tips
プレビュー