Blame view

lib/syspro/business_objects/models/purchase_orders/comment_line.rb 436 Bytes
d9a9cb5d   chadzink   Add portoi and co...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  module Syspro
    module BusinessObjects
      module Models
        module PurchaseOrders
          class CommentLine
            attr_accessor :purchase_order_line,
                          :line_action_type,
                          :comment,
                          :attached_to_stk_line_number,
                          :delete_attached_comment_lines,
                          :change_single_comment_line
          end
        end
      end
    end
b1c0def6   Samuel J Clopton   rubocop violation...
16
  end