estimancy/projestimate

View on GitHub
app/models/record_status.rb

Summary

Maintainability
A
15 mins
Test Coverage
# encoding: utf-8
#############################################################################
#
# Estimancy, Open Source project estimation web application
# Copyright (c) 2014 Estimancy (http://www.estimancy.com)
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU Affero General Public License as
#    published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
#
#    ======================================================================
#
# ProjEstimate, Open Source project estimation web application
# Copyright (c) 2013 Spirula (http://www.spirula.fr)
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU Affero General Public License as
#    published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
#
#    You should have received a copy of the GNU Affero General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################

#Master Data
class RecordStatus < ActiveRecord::Base
  attr_accessible :name, :description, :record_status_id, :custom_value, :change_comment

  include MasterDataHelper #Module master data management (UUID generation, deep clone, ...)

  has_many :acquisition_categories
  has_many :associated_attributes, :class_name => 'PeAttribute'
  has_many :attribute_modules
  has_many :currencies
  has_many :event_types
  has_many :labor_categories
  has_many :languages
  has_many :pemodules
  has_many :platform_categories
  has_many :project_areas
  has_many :project_categories
  has_many :project_security_levels
  has_many :work_element_types
  has_many :profiles

  has_many :admin_settings
  has_many :auth_methods
  has_many :groups
  has_many :permissions

  #self relation for status
  has_many :record_statuses, :class_name => 'RecordStatus', :foreign_key => 'record_status_id'
  belongs_to :record_status, :class_name => 'RecordStatus', :foreign_key => 'record_status_id'

  belongs_to :owner_of_change, :class_name => 'User', :foreign_key => 'owner_id'

  validates :description, :presence => true #:record_status,
  validates :uuid, :presence => true, :uniqueness => {:case_sensitive => false}
  validates :name, :presence => true, :uniqueness => {:case_sensitive => false, :scope => :record_status_id}
  validates :custom_value, :presence => true, :if => :is_custom?

  amoeba do
    enable

    recognize [:belongs_to]

    customize(lambda { |original_record, new_record|
      new_record.reference_uuid = original_record.uuid
      new_record.reference_id = original_record.id
      new_record.record_status = RecordStatus.find_by_name('Proposed') #RecordStatus.first
    })
  end


  def to_s
    name
  end
end