Browse Source

Fixed: time entries created with the default activity even if a different one is specified (#1302).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1533 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/0.8.0-RC1
Jean-Philippe Lang 16 years ago
parent
commit
846045fd05
2 changed files with 7 additions and 3 deletions
  1. 4
    2
      app/models/time_entry.rb
  2. 3
    1
      test/functional/timelog_controller_test.rb

+ 4
- 2
app/models/time_entry.rb View File

@@ -30,8 +30,10 @@ class TimeEntry < ActiveRecord::Base
validates_length_of :comments, :maximum => 255

def after_initialize
if new_record?
self.activity ||= Enumeration.default('ACTI')
if new_record? && self.activity.nil?
if default_activity = Enumeration.default('ACTI')
self.activity_id = default_activity.id
end
end
end

+ 3
- 1
test/functional/timelog_controller_test.rb View File

@@ -44,7 +44,8 @@ class TimelogControllerTest < Test::Unit::TestCase
@request.session[:user_id] = 3
post :edit, :project_id => 1,
:time_entry => {:comments => 'Some work on TimelogControllerTest',
:activity_id => '10',
# Not the default activity
:activity_id => '11',
:spent_on => '2008-03-14',
:issue_id => '1',
:hours => '7.3'}
@@ -53,6 +54,7 @@ class TimelogControllerTest < Test::Unit::TestCase
i = Issue.find(1)
t = TimeEntry.find_by_comments('Some work on TimelogControllerTest')
assert_not_nil t
assert_equal 11, t.activity_id
assert_equal 7.3, t.hours
assert_equal 3, t.user_id
assert_equal i, t.issue

Loading…
Cancel
Save