Blame view

lib/syspro/business_objects/models/inventory_inspection.rb 363 Bytes
6a873e0f   chadzink   Implement PorTii ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  module Syspro
    module BusinessObjects
      module Models
        class InventoryInspection
          attr_accessor :grn_number,
                        :quantity,
                        :unit_of_measure,
                        :units,
                        :pieces,
                        :document,
                        :inspection_completed
        end
      end
    end
b1c0def6   Samuel J Clopton   rubocop violation...
15
  end