Blame view

lib/syspro/business_objects/models/invsws_item.rb 1.5 KB
762ae45f   chadzink   Added InvSws Busi...
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
46
47
  module Syspro
    module BusinessObjects
      module Models
        class InvSwsItem
          attr_accessor :key_stock_code,
                        :key_warehouse,
                        :cost_multiplier,
                        :minimum_qty,
                        :maximum_qty,
                        :unit_cost,
                        :default_bin,
                        :safety_stock_qty,
                        :re_order_qty,
                        :pallet_qty,
                        :user_field1,
                        :user_field2,
                        :user_field3,
                        :order_policy,
                        :major_order_mult,
                        :minor_order_mult,
                        :order_minimum,
                        :order_maximum,
                        :order_fix_period,
                        :trf_supplied_item,
                        :default_source_wh,
                        :trf_lead_time,
                        :trf_cost_gl_code,
                        :trf_cost_multiply,
                        :trf_replenish_wh,
                        :trf_buying_rule,
                        :trf_dock_to_stock,
                        :trf_fix_time_period,
                        :labour_cost,
                        :material_cost,
                        :fixed_overhead,
                        :variable_overhead,
                        :sub_contract_cost,
                        :manual_cost_flag,
                        :e_signature
          end
  
          class InvSwsItemKey
            attr_accessor
          end
      end
    end
  end