Class: Eddy::Elements::E648

Inherits:
Models::Element::ID show all
Defined in:
lib/definitions/elements/generated/648.price_multiplier_qualifier.rb

Overview

Element Summary:

  • Id: 648
  • Name: Price Multiplier Qualifier
  • Type: ID
  • Min/Max: 3/3
  • Description: Code indicating the type of price multiplier

Instance Attribute Summary

Attributes inherited from Models::Element::Base

#description, #id, #max, #min, #name, #ref, #type

Instance Method Summary collapse

Methods inherited from Models::Element::ID

#process_value, process_value, #value, #value=

Methods inherited from Models::Element::Base

#doc_comment, #process_value, process_value, #req, #req=, #value, #value=

Constructor Details

#initialize(val: nil, req: nil, ref: nil) ⇒ void

Parameters:

  • val (String) (defaults to: nil)
  • req (String) (defaults to: nil)
  • ref (String) (defaults to: nil)


16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/definitions/elements/generated/648.price_multiplier_qualifier.rb', line 16

def initialize(val: nil, req: nil, ref: nil)
  @id = "648"
  @name = "Price Multiplier Qualifier"
  @description = "Code indicating the type of price multiplier"
  super(
    min: 3,
    max: 3,
    req: req,
    ref: ref,
    val: val,
  )
end

Instance Method Details

#code_listArray<String>

Returns:

  • (Array<String>)


30
31
32
33
34
35
36
37
38
39
# File 'lib/definitions/elements/generated/648.price_multiplier_qualifier.rb', line 30

def code_list()
  return [
    "CSD", # Cost Markup Multiplier - Original Cost
    "CSR", # Cost Markup Multiplier - Retail Cost
    "DIS", # Discount Multiplier
    "ILP", # Cost Markup Multiplier - Wholesale Cost
    "PSP", # Percent Solution Multiplier
    "SEL", # Selling Multiplier
  ]
end