class Patrimonio::OrigemDeRecursoPatrimonial < ApplicationRecord
  has_paper_trail

  has_many :recebimentos_de_bens, class_name: "Patrimonio::RecebimentoDeBem"

  validates_presence_of :nome
  
  def esta_em_recebimento?
    self.recebimentos_de_bens.any?
  end

end
