Sha256: 175545c111a9a0adb310266aecb7f99ba52264e323acdd01195c886bc83a146c

Contents?: true

Size: 1.48 KB

Versions: 11

Compression:

Stored size: 1.48 KB

Contents

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
class CustomFieldDatePair < CustomFieldPair

  # For rendering paired values
  # Handle case where both pairs are blank
  #------------------------------------------------------------------------------
  def render_value(object)
    return "" unless paired_with.present?
    from = render(object.send(name))
    to = render(object.send(paired_with.name))
    if from.present? and to.present?
      I18n.t('pair.from_to', :from => from, :to => to)
    elsif from.present? and !to.present?
      I18n.t('pair.from_only', :from => from)
    elsif !from.present? and to.present?
      I18n.t('pair.to_only', :to => to)
    else
      ""
    end
  end

  def render(value)
    value && value.strftime(I18n.t("date.formats.mmddyy"))
  end

  def custom_validator(obj)
    super
    # validate when we get to 2nd of the pair
    if pair_id.present?
      start = CustomFieldPair.find(pair_id)
      return if start.nil?
      from = obj.send(start.name)
      to = obj.send(name)
      obj.errors.add(name.to_sym, ::I18n.t('activerecord.errors.models.custom_field.endbeforestart', :field => start.label)) if from.present? and to.present? and (from > to)
    end
  end

  ActiveSupport.run_load_hooks(:fat_free_crm_date_pair, self)
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
fat_free_crm-0.13.6 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.13.5 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.13.4 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.13.3 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.13.2 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.12.3 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.12.2 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.13.1 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.12.1 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.13.0 app/models/fields/custom_field_date_pair.rb
fat_free_crm-0.12.0 app/models/fields/custom_field_date_pair.rb