Blame view

lib/syspro/business_objects/models/inv_qry_options.rb 1.15 KB
fb410806   chadzink   Add INVQRY busine...
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
  module Syspro
    module BusinessObjects
      module Models
        class InvQryOptions
          attr_accessor :multi_media_image_type,
                        :include_history,
                        :include_bins,
                        :include_lots,
                        :include_serials,
                        :include_movements,
                        :movement_date_sequence,
                        :movement_start_date,
                        :max_number_movements,
                        :include_custom_forms,
                        :include_movement_issues,
                        :include_movement_transfers,
                        :include_movement_receipts,
                        :include_movement_physical,
                        :include_movement_adjustments,
                        :include_movement_cost_changes,
                        :include_movement_cost_mods,
                        :include_movement_invoices,
                        :include_movement_credit_notes,
                        :include_movement_debit_notes,
                        :include_movement_dispatch_notes,
                        :include_ecc,
                        :xsl_stylesheet
fb410806   chadzink   Add INVQRY busine...
28
29
30
31
        end
      end
    end
  end