Class: Quickbooks::Model::Item

Inherits:
BaseModel show all
Defined in:
lib/quickbooks/model/item.rb

Constant Summary collapse

XML_COLLECTION_NODE =
"Item"
XML_NODE =
"Item"
REST_RESOURCE =
'item'
INVENTORY_TYPE =
'Inventory'
NON_INVENTORY_TYPE =
'Non Inventory'
SERVICE_TYPE =
'Service'
ITEM_TYPES =
[INVENTORY_TYPE, NON_INVENTORY_TYPE, SERVICE_TYPE]

Instance Method Summary collapse

Methods inherited from BaseModel

attribute_names, #attributes, attrs_with_types, #ensure_line_items_initialization, #inspect, inspect, reference_setters, resource_for_collection, resource_for_singular, to_xml_big_decimal, #to_xml_inject_ns, #to_xml_ns

Methods included from Validator

#line_item_size

Constructor Details

#initialize(*args) ⇒ Item

Returns a new instance of Item.



56
57
58
59
# File 'lib/quickbooks/model/item.rb', line 56

def initialize(*args)
  self.type = INVENTORY_TYPE
  super
end

Instance Method Details

#valid_for_create?Boolean

Returns:

  • (Boolean)


61
62
63
64
# File 'lib/quickbooks/model/item.rb', line 61

def valid_for_create?
  valid?
  errors.empty?
end

#valid_for_deletion?Boolean

To delete an object Intuit requires we provide Id and SyncToken fields

Returns:

  • (Boolean)


67
68
69
70
# File 'lib/quickbooks/model/item.rb', line 67

def valid_for_deletion?
  return false if(id.nil? || sync_token.nil?)
  id.to_i > 0 && !sync_token.to_s.empty? && sync_token.to_i >= 0
end

#valid_for_update?Boolean

Returns:

  • (Boolean)


72
73
74
75
76
77
# File 'lib/quickbooks/model/item.rb', line 72

def valid_for_update?
  if sync_token.nil?
    errors.add(:sync_token, "Missing required attribute SyncToken for update")
  end
  errors.empty?
end