2013-08-01 10:33:49 +08:00
|
|
|
# Redmine - project management software
|
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
class JournalDetail < ActiveRecord::Base
|
2014-07-24 18:05:37 +08:00
|
|
|
include UserScoreHelper
|
2013-08-01 10:33:49 +08:00
|
|
|
belongs_to :journal
|
|
|
|
before_save :normalize_values
|
2014-08-13 11:17:22 +08:00
|
|
|
after_save :be_user_score
|
|
|
|
after_destroy :down_user_score
|
|
|
|
#before_destroy :down_user_score
|
2013-08-01 10:33:49 +08:00
|
|
|
private
|
|
|
|
|
|
|
|
def normalize_values
|
|
|
|
self.value = normalize(value)
|
|
|
|
self.old_value = normalize(old_value)
|
|
|
|
end
|
|
|
|
|
|
|
|
def normalize(v)
|
|
|
|
case v
|
|
|
|
when true
|
|
|
|
"1"
|
|
|
|
when false
|
|
|
|
"0"
|
|
|
|
when Date
|
|
|
|
v.strftime("%Y-%m-%d")
|
|
|
|
else
|
|
|
|
v
|
|
|
|
end
|
|
|
|
end
|
2014-07-24 18:05:37 +08:00
|
|
|
|
|
|
|
def be_user_score
|
|
|
|
#更新缺陷完成度
|
2014-07-29 10:06:48 +08:00
|
|
|
if self.prop_key == 'done_ratio'
|
2014-08-13 11:17:22 +08:00
|
|
|
update_issue_done_ratio(self.journal.user,1)
|
2014-08-18 17:14:31 +08:00
|
|
|
unless self.journal.project.nil?
|
|
|
|
update_issue_done_ratio(self.journal.user,2,self.journal.project)
|
|
|
|
end
|
2014-07-24 18:05:37 +08:00
|
|
|
#更新缺陷状态
|
2014-07-29 10:06:48 +08:00
|
|
|
elsif self.prop_key == 'status_id'
|
2014-08-13 11:17:22 +08:00
|
|
|
update_issues_status(self.journal.user , 1)
|
2014-08-18 17:14:31 +08:00
|
|
|
unless self.journal.project.nil?
|
|
|
|
update_issues_status(self.journal.user,2,self.journal.project)
|
|
|
|
end
|
2014-07-24 18:05:37 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-07-29 10:06:48 +08:00
|
|
|
#更新用户分数
|
|
|
|
def down_user_score
|
2014-07-29 18:04:35 +08:00
|
|
|
|
|
|
|
if self.prop_key == 'done_ratio'
|
2014-08-13 11:17:22 +08:00
|
|
|
update_issue_done_ratio(self.journal.user,1)
|
2014-08-18 17:14:31 +08:00
|
|
|
unless self.journal.project.nil?
|
|
|
|
update_issue_done_ratio(self.journal.user,2,self.journal.project)
|
|
|
|
end
|
|
|
|
|
2014-07-29 18:04:35 +08:00
|
|
|
#更新缺陷状态
|
|
|
|
elsif self.prop_key == 'status_id'
|
2014-08-13 11:17:22 +08:00
|
|
|
update_issues_status(self.journal.user, 1)
|
2014-08-18 17:14:31 +08:00
|
|
|
unless self.journal.project.nil?
|
|
|
|
update_issues_status(self.journal.user,2,self.journal.project)
|
|
|
|
end
|
2014-07-29 18:04:35 +08:00
|
|
|
end
|
2014-07-29 10:06:48 +08:00
|
|
|
end
|
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
end
|