Class: ActiveZuora::DateField

Inherits:
Field
  • Object
show all
Defined in:
lib/active_zuora/fields/date_field.rb

Instance Attribute Summary

Attributes inherited from Field

#default, #name, #namespace, #zuora_name

Instance Method Summary collapse

Methods inherited from Field

#clear_changed_attributes, #define_instance_methods, #initialize

Constructor Details

This class inherits a constructor from ActiveZuora::Field

Instance Method Details

#build_xml(xml, soap, value, options = {}) ⇒ Object



11
12
13
14
# File 'lib/active_zuora/fields/date_field.rb', line 11

def build_xml(xml, soap, value, options={})
  value = value ? value.strftime("%Y-%m-%d") : ''
  super(xml, soap, value, options)
end

#type_cast(value) ⇒ Object



4
5
6
7
8
9
# File 'lib/active_zuora/fields/date_field.rb', line 4

def type_cast(value)
  return value if value.nil?
  return value.to_date if value.is_a?(Date)
  return value.to_date if value.is_a?(DateTime)
  value.to_date rescue default
end