class SuperFormatter::Ecan::Row

Public Instance Methods

global_order_id() click to toggle source
# File lib/super_formatter/ecan/row.rb, line 6
def global_order_id
  order_id = (find(:global_order_id) || "")
  if order_id[0] == 'C'
    order_id[1, order_id.length - 1]
  else
    order_id
  end
end