소스 검색

Fix that updating time tracking activities in a project may take a long time (#33289).

Patch by Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@20066 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.2.0
Go MAEDA 3 년 전
부모
커밋
75b3e88cee
2개의 변경된 파일22개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      app/models/enumeration.rb
  2. 20
    0
      test/unit/time_entry_activity_test.rb

+ 2
- 2
app/models/enumeration.rb 파일 보기

@@ -24,7 +24,7 @@ class Enumeration < ActiveRecord::Base

belongs_to :project

acts_as_positioned :scope => :parent_id
acts_as_positioned :scope => %i[project_id parent_id]
acts_as_customizable
acts_as_tree

@@ -149,7 +149,7 @@ class Enumeration < ActiveRecord::Base
# position as the overridden enumeration
def update_position
super
if saved_change_to_position?
if saved_change_to_position? && self.parent_id.nil?
self.class.where.not(:parent_id => nil).update_all(
"position = coalesce((
select position

+ 20
- 0
test/unit/time_entry_activity_test.rb 파일 보기

@@ -131,4 +131,24 @@ class TimeEntryActivityTest < ActiveSupport::TestCase
assert_include activity, project.activities
assert_include TimeEntryActivity.find(9), project.activities
end

def test_project_activity_should_have_the_same_position_as_parent_activity
project = Project.find(1)

parent_activity = TimeEntryActivity.find_by(position: 3, parent_id: nil)
project.update_or_create_time_entry_activities({parent_activity.id.to_s => {'parent_id' => parent_activity.id.to_s, 'active' => '0', 'custom_field_values' => {'7' => ''}}})
project_activity = TimeEntryActivity.find_by(position: 3, parent_id: parent_activity.id, project_id: 1)
assert_equal parent_activity.position, project_activity.position

# Changing the position of the parent activity also changes the position of the activity in each project.
other_parent_activity = TimeEntryActivity.find_by(position: 4, parent_id: nil)
project.update_or_create_time_entry_activities({other_parent_activity.id.to_s => {'parent_id' => other_parent_activity.id.to_s, 'active' => '0', 'custom_field_values' => {'7' => ''}}})
other_project_activity = TimeEntryActivity.find_by(position: 4, parent_id: other_parent_activity.id, project_id: 1)

parent_activity.update(position: 4)
assert_equal 4, parent_activity.reload.position
assert_equal parent_activity.position, project_activity.reload.position
assert_equal 3, other_parent_activity.reload.position
assert_equal other_parent_activity.position, other_project_activity.reload.position
end
end

Loading…
취소
저장