-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
當假單被刪除或駁回時,可以從 LeaveTime 之 locked_hours return usable_hours #115
Conversation
@Eileen0917 已經修好駁回的bug 請再測試幾種情形(A, B 分別為不同的使用者):
然後順便run run 看 |
@YushengLi
|
ffbe396
to
75a519a
Compare
@Eileen0917 已經再次更新了,再測一個小東西,如果假單被駁回或者被刪除時,不會出現取消的按鈕(編輯的按鈕出現狀況會在 #38 處理) 辛苦了> < |
操作測試ok |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…m locked_hours in LeaveTime record and delete corresponding usages
75a519a
to
6506cbf
Compare
app/models/leave_application.rb
Outdated
LeaveTimeUsage.where(leave_application: self).each do |usage| | ||
usage.leave_time.unlock_hours!(usage.used_hours) | ||
usage.destroy | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
之後可能會再新增 before_destroy callback 並判斷要 unlock_hours 還是 unuse_hours
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
為什麼不使用 leave_time_usages.each { ... }
?
app/models/leave_application.rb
Outdated
LeaveTimeUsage.where(leave_application: self).each do |usage| | ||
usage.leave_time.unlock_hours!(usage.used_hours) | ||
usage.destroy | ||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
為什麼不使用 leave_time_usages.each { ... }
?
spec/models/leave_time_usage_spec.rb
Outdated
|
||
describe "#callback" do | ||
context "should lock LeaveTime usable_hours after LeaveTimeUsage created" do | ||
it { is_expected.to callback(:lock_leave_time_hours).after(:create) } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
這邊只有測到確保 :lock_leave_time_hours
有被執行,應該要做一下結果的 assertion 確保執行後的結果是不是正確?
@@ -61,6 +61,12 @@ | |||
end | |||
end | |||
|
|||
describe "#callback" do | |||
context "should create LeaveTimeUsage after LeaveApplication created" do | |||
it { is_expected.to callback(:create_leave_time_usages).after(:create) } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
這邊只有測到確保 : create_leave_time_usages
有被執行,應該要做一下結果的 assertion 確保執行後的結果是不是正確?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
issue #77
但這邊駁回目前不知道為何無效(駁回完全沒動作)