class Quickeebooks::Windows::Service::Account

Public Instance Methods

create(account) click to toggle source
# File lib/quickeebooks/windows/service/account.rb, line 18
def create(account)
  # XML is a wrapped 'object' where the type is specified as an attribute
  #    <Object xsi:type="Account">
  xml_node = account.to_xml(:name => 'Object')
  xml_node.set_attribute('xsi:type', 'Account')

  xml = Quickeebooks::Shared::Service::OperationNode.new.add do |content|
    content << "<ExternalRealmId>#{self.realm_id}</ExternalRealmId>#{xml_node}"
  end

  perform_write(Quickeebooks::Windows::Model::Account, xml)
end
fetch_by_id(id, idDomain = 'QB', options = {}) click to toggle source
# File lib/quickeebooks/windows/service/account.rb, line 13
def fetch_by_id(id, idDomain = 'QB', options = {})
  url = "#{url_for_resource(Quickeebooks::Windows::Model::Account::REST_RESOURCE)}/#{id}"
  fetch_object(Quickeebooks::Windows::Model::Account, url, {:idDomain => idDomain})
end
list(filters = [], page = 1, per_page = 20, sort = nil, options = {}) click to toggle source
# File lib/quickeebooks/windows/service/account.rb, line 9
def list(filters = [], page = 1, per_page = 20, sort = nil, options = {})
  fetch_collection(Quickeebooks::Windows::Model::Account, nil, filters, page, per_page, sort, options)
end