module Comm
  module Const
    module DispNameLists
      LIST_ALL   = -2147483648
      LIST_SELF  = LIST_ALL + 1
#      LIST_PRICE = LIST_ALL + 2
      LIST_BLANK = LIST_ALL + 3
      LIST_OWN_CUSTOMER = LIST_ALL + 4

      LIST_ALL_STR   = "全製品が対象"
      LIST_SELF_STR  = "self"
#      LIST_PRICE_STR = "価格調整"
      LIST_OWN_CUSTOMER_STR = "自社"

      LIST_INFO = {
        LIST_ALL   => LIST_ALL_STR,
        LIST_SELF  => LIST_SELF_STR,
        LIST_OWN_CUSTOMER => LIST_OWN_CUSTOMER_STR
#        LIST_PRICE => LIST_PRICE_STR
      }
    end
  end
end
