Class: Quickbooks::Model::Account
Constant Summary
collapse
- XML_COLLECTION_NODE =
"Account"
- XML_NODE =
"Account"
- REST_RESOURCE =
'account'
- ASSET =
'Asset'
- EQUITY =
'Equity'
- EXPENSE =
'Expense'
- LIABILITY =
'Liability'
- REVENUE =
'Revenue'
- ACCOUNT_CLASSIFICATION =
[ASSET, EQUITY, EXPENSE, LIABILITY, REVENUE]
Instance Method Summary
collapse
Methods inherited from BaseModel
reference_setters, resource_for_collection, resource_for_singular, #to_xml_inject_ns, #to_xml_ns
Instance Method Details
#active? ⇒ Boolean
81
82
83
|
# File 'lib/quickbooks/model/account.rb', line 81
def active?
active.to_s == 'true'
end
|
#has_attachment? ⇒ Boolean
73
74
75
|
# File 'lib/quickbooks/model/account.rb', line 73
def has_attachment?
has_attachment.to_s == 'true'
end
|
#name_cannot_contain_invalid_characters ⇒ Object
50
51
52
53
54
|
# File 'lib/quickbooks/model/account.rb', line 50
def name_cannot_contain_invalid_characters
if name && (name.index(':') || name.index('"'))
errors.add('name', ":#{name} cannot contain a colon (:) or double quotes (\").")
end
end
|
#sub_account? ⇒ Boolean
77
78
79
|
# File 'lib/quickbooks/model/account.rb', line 77
def sub_account?
sub_account.to_s == 'true'
end
|
#tax_account? ⇒ Boolean
85
86
87
|
# File 'lib/quickbooks/model/account.rb', line 85
def tax_account?
tax_account.to_s == 'true'
end
|
#valid_for_create? ⇒ Boolean
63
64
65
66
|
# File 'lib/quickbooks/model/account.rb', line 63
def valid_for_create?
valid?
errors.empty?
end
|
#valid_for_deletion? ⇒ Boolean
68
69
70
71
|
# File 'lib/quickbooks/model/account.rb', line 68
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
56
57
58
59
60
61
|
# File 'lib/quickbooks/model/account.rb', line 56
def valid_for_update?
if sync_token.nil?
errors.add(:sync_token, "Missing required attribute SyncToken for update")
end
errors.empty?
end
|