public
Description: Simplying working with models that rely on parsing QuickBooks SDK qbXML messages
Homepage:
Clone URL: git://github.com/zackchandler/acts_as_quickbooks_model.git
zackchandler (author)
Fri Feb 13 12:04:18 -0800 2009
commit  ae590a1b67882b0d2bcd8c2d73d1d906c3e827ac
tree    7bce1bcdea12a87cd3c27e7440738189fa77a519
parent  9872b6d2a1db36fd9618cb09e695ff852a17647c
acts_as_quickbooks_model / model_maps / SalesOrderLineGroup.rb
100644 18 lines (17 sloc) 0.595 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# auto-generated from json definitions
module QBXML
  module ModelMaps
    SalesOrderLineGroup = {
      :txn_line_id => 'TxnLineID',
      :item_group_ref_list_id => 'ItemGroupRef/ListID',
      :item_group_ref_full_name => 'ItemGroupRef/FullName',
      :desc => 'Desc',
      :quantity => 'Quantity',
      :unit_of_measure => 'UnitOfMeasure',
      :override_uom_set_ref_list_id => 'OverrideUOMSetRef/ListID',
      :override_uom_set_ref_full_name => 'OverrideUOMSetRef/FullName',
      :is_print_items_in_group => 'IsPrintItemsInGroup',
      :total_amount => 'TotalAmount'
    }
  end
end