class Pumi::DataSource::NCDD

def parse_location_code(row)

def parse_location_code(row)
  code = row.fetch("code")
  return if code.to_s.gsub(/\D/, "").empty?
  code = code.rjust(code.length + 1, "0") if code.length.odd?
  code
end