Blame view

lib/syspro/business_objects/models/receipt_interospection.rb 410 Bytes
f1e2e13b   chadzink   Implemented PorTo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  module Syspro
    module BusinessObjects
      module Models
        class ReceiptInterospection
          attr_accessor :purchase_order,
                        :warehouse,
                        :stock_code,
                        :quantity,
                        :counted_quantity_complete,
                        :delivery_note,
                        :certificate,
                        :lot
        end
      end
    end
  end