приложение / модели / концерн / fiscalable.rb
module Fiscalable
extend ActiveSupport::Concern
def office_id
super || 1 # default office_id
end
def fiscal_year_id
super || Time.zone.now.year
end
end
И в ваших моделях.
class Model < ActiveRecord
include Fiscalable
...
end
В просмотрах.
<%= @object.fiscal_year_id %>