Blame view

lib/syspro/business_objects/models/receipt_interospection.rb 851 Bytes
f1e2e13b   chadzink   Implemented PorTo...
1
2
3
4
5
6
7
8
9
10
11
  module Syspro
    module BusinessObjects
      module Models
        class ReceiptInterospection
          attr_accessor :purchase_order,
                        :warehouse,
                        :stock_code,
                        :quantity,
                        :counted_quantity_complete,
                        :delivery_note,
                        :certificate,
97edea7d   chadzink   Expanded PORTOR (...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
                        :narration,
                        :lot,
                        :grn_number,
                        :concession,
                        :cost_basis,
                        :notation,
                        :reference,
                        :grn_source,
                        :bins
          def initialize
            @bins = []
          end
        end
  
        class InterospectionBin
          attr_accessor :bin_location,
                        :bin_quantity
f1e2e13b   chadzink   Implemented PorTo...
29
30
31
        end
      end
    end
b1c0def6   Samuel J Clopton   rubocop violation...
32
  end