class EfoNelfo::V40::BH

Private Instance Methods

add_order_line(line) click to toggle source

Appends a order line to the order

# File lib/efo_nelfo/v40/bh.rb, line 62
def add_order_line(line)
  line.index = lines.size + 1
  lines << line
end
add_text_to_order_line(text) click to toggle source

Add text to the last added orderline

# File lib/efo_nelfo/v40/bh.rb, line 68
def add_text_to_order_line(text)
  lines.last.text = text
end