class LeccaClient::Proposal::Phone

Public Instance Methods

build() click to toggle source
# File lib/lecca_client/proposal/phone.rb, line 12
def build
  parts = ''

  parts << justify_string(ddd_telefone, 4)
  parts << justify_number(telefone, 12)
  parts << justify_number(celular, 12)
  parts << justify_string(email, 50)
  parts << justify_string(ddd_celular, 4)
end