Blame view

lib/syspro/business_objects/models/purchase_orders/freight_line.rb 402 Bytes
d9a9cb5d   chadzink   Add portoi and co...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  module Syspro
    module BusinessObjects
      module Models
        module PurchaseOrders
          class FreightLine
            attr_accessor :purchase_order_line,
                          :line_action_type,
                          :freight_value,
                          :freight_tax_code,
                          :freight_taxable
                          :freight_f_loc
          end
        end
      end
    end
  end