92 lines
3.7 KiB
Ruby
92 lines
3.7 KiB
Ruby
# This file is a part of Redmine Checklists (redmine_checklists) plugin,
|
|
# issue checklists management plugin for Redmine
|
|
#
|
|
# Copyright (C) 2011-2017 RedmineUP
|
|
# http://www.redmineup.com/
|
|
#
|
|
# redmine_checklists 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 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# redmine_checklists 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 redmine_checklists. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
class Checklist < ActiveRecord::Base
|
|
unloadable
|
|
include Redmine::SafeAttributes
|
|
belongs_to :issue
|
|
belongs_to :author, :class_name => "User", :foreign_key => "author_id"
|
|
has_one :comment, :as => :commented, :dependent => :delete
|
|
if ActiveRecord::VERSION::MAJOR >= 4
|
|
attr_protected :id
|
|
end
|
|
acts_as_event :datetime => :created_at,
|
|
:url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.issue_id}},
|
|
:type => 'issue issue-closed',
|
|
:title => Proc.new {|o| o.subject },
|
|
:description => Proc.new {|o| "#{l(:field_issue)}: #{o.issue.subject}" }
|
|
|
|
|
|
if ActiveRecord::VERSION::MAJOR >= 4
|
|
acts_as_activity_provider :type => "checklists",
|
|
:permission => :view_checklists,
|
|
:scope => preload({:issue => :project})
|
|
acts_as_searchable :columns => ["#{table_name}.subject"],
|
|
:scope => lambda { includes([:issue => :project]).order("#{table_name}.id") },
|
|
:project_key => "#{Issue.table_name}.project_id"
|
|
|
|
else
|
|
acts_as_activity_provider :type => "checklists",
|
|
:permission => :view_checklists,
|
|
:find_options => {:issue => :project}
|
|
acts_as_searchable :columns => ["#{table_name}.subject"],
|
|
:include => [:issue => :project],
|
|
:project_key => "#{Issue.table_name}.project_id",
|
|
:order_column => "#{table_name}.id"
|
|
end
|
|
|
|
acts_as_list
|
|
|
|
validates_presence_of :subject
|
|
validates_length_of :subject, :maximum => 512
|
|
validates_presence_of :position
|
|
validates_numericality_of :position
|
|
|
|
def self.recalc_issue_done_ratio(issue_id)
|
|
issue = Issue.find(issue_id)
|
|
return false if (Setting.issue_done_ratio != "issue_field") || RedmineChecklists.settings["issue_done_ratio"].to_i < 1 || issue.checklists.empty?
|
|
done_checklist = issue.checklists.map{|c| c.is_done ? 1 : 0}
|
|
done_ratio = (done_checklist.count(1) * 10) / done_checklist.count * 10
|
|
issue.update_attribute(:done_ratio, done_ratio)
|
|
end
|
|
|
|
def self.old_format?(detail)
|
|
(detail.old_value.is_a?(String) && detail.old_value.match(/^\[[ |x]\] .+$/).present?) ||
|
|
(detail.value.is_a?(String) && detail.value.match(/^\[[ |x]\] .+$/).present?)
|
|
end
|
|
|
|
safe_attributes 'subject', 'position', 'issue_id', 'is_done'
|
|
|
|
def editable_by?(usr = User.current)
|
|
usr && (usr.allowed_to?(:edit_checklists, project) || (author == usr && usr.allowed_to?(:edit_own_checklists, project)))
|
|
end
|
|
|
|
def project
|
|
issue.project if issue
|
|
end
|
|
|
|
def info
|
|
"[#{is_done ? 'x' : ' '}] #{subject.strip}"
|
|
end
|
|
|
|
def add_to_list_bottom
|
|
return unless issue.checklists.select(&:persisted?).map(&:position).include?(self[position_column])
|
|
self[position_column] = bottom_position_in_list.to_i + 1
|
|
end
|
|
end
|