Repository URL to install this package:
|
Version:
0.1.8 ▾
|
module Quickbooks
module Model
class SubTotalLineDetail < BaseModel
xml_accessor :item_ref, :from => 'ItemRef', :as => BaseReference
xml_accessor :class_ref, :from => 'ClassRef', :as => BaseReference
xml_accessor :unit_price, :from => 'UnitPrice', :as => BigDecimal, :to_xml => Proc.new { |val| val.to_f }
xml_accessor :quantity, :from => 'Qty', :as => BigDecimal, :to_xml => Proc.new { |val| val.to_f }
xml_accessor :tax_code_ref, :from => 'TaxCodeRef', :as => BaseReference
reference_setters :item_ref, :class_ref, :tax_code_ref
end
end
end