Blame view

lib/syspro/business_objects/models/purchase_orders/stock_line.rb 1.11 KB
d9a9cb5d   chadzink   Add portoi and co...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  module Syspro
    module BusinessObjects
      module Models
        module PurchaseOrders
          class StockLine
            attr_accessor :purchase_order_line,
              :line_action_type,
              :stock_code,
              :stock_description,
              :warehouse,
              :sup_catalogue,
              :order_qty,
              :order_uom,
              :units,
              :pieces,
              :price_method,
              :supplier_contract,
              :price,
              :price_uom,
              :line_disc_type,
              :line_disc_less_plus,
              :line_disc_percent1,
              :line_disc_percent2,
              :line_disc_percent3,
              :line_disc_value,
              :taxable,
              :tax_codev,
              :job,
              :version,
              :release,
              :latest_due_date,
              :original_due_date,
              :reschedule_due_date,
              :ledger_code,
              :password_for_ledger_code,
              :subcontract_op,
              :inspection_reqd,
              :product_class,
              :nons_unit_mass,
              :nons_unit_vol
          end
        end
      end
    end
  end