Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. var descricao = "";
  2. descricao += "CPF: " + producer.cpf;
  3. descricao += "\nCNH: " + producer.cnh;
  4. descricao += "\nData de nascimento: " + producer.data_de_nascimento;
  5. descricao += "\nCEP da nova residência: " + producer.novo_cep;
  6. descricao += "\nNome da rua: " + producer.nome_da_rua;
  7. descricao += "\nNumero: " + producer.numero;
  8.  
  9. current.description = descricao;
  10. current.short_description = producer.curta_descricao;
  11.  
  12. current.category = 0;
  13. current.subcategory = 2;
  14. current.contact = gs.getUserID();
  15.  
  16. //Mapeia o usuário atual para o campo contact.
  17. current.contact = gs.getUserID();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement