Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/quickbooks/model/account.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class Account < BaseModel
XML_COLLECTION_NODE = "Account"
XML_NODE = "Account"
REST_RESOURCE = 'account'
MINORVERSION = 13
# MINORVERSION = 13

ASSET = 'Asset'
EQUITY = 'Equity'
Expand Down
2 changes: 2 additions & 0 deletions lib/quickbooks/model/base_model.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ class BaseModel
include ActiveModel::Validations
include Validator
include ROXML

MINORVERSION = 75

xml_convention :camelcase

Expand Down
2 changes: 1 addition & 1 deletion lib/quickbooks/model/customer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Customer < BaseModel
include NameEntity::Quality
include NameEntity::PermitAlterations

MINORVERSION = 33
# MINORVERSION = 33

xml_name XML_NODE
xml_accessor :id, :from => 'Id'
Expand Down
2 changes: 1 addition & 1 deletion lib/quickbooks/model/item.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Item < BaseModel
XML_COLLECTION_NODE = "Item"
XML_NODE = "Item"
REST_RESOURCE = 'item'
MINORVERSION = 33
# MINORVERSION = 33

INVENTORY_TYPE = 'Inventory'
NON_INVENTORY_TYPE = 'NonInventory'
Expand Down
2 changes: 1 addition & 1 deletion lib/quickbooks/model/preferences.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class Preferences < BaseModel
XML_COLLECTION_NODE = "Preferences"
XML_NODE = "Preferences"
REST_RESOURCE = 'preferences'
MINORVERSION = 21
# MINORVERSION = 21

xml_name XML_NODE

Expand Down