Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. }else if(form_pg === 'BOLETO'){
  2. $.ajax({
  3. type:'POST',
  4. url: 'routers/boleto.php',
  5. data:{sHash:sHash,
  6. name:name,
  7. email:email,
  8. ddd:ddd,
  9. telephone:telephone,
  10. form_pg:form_pg,
  11. cep:cep,
  12. street:street,
  13. numberHouse:numberHouse,
  14. complement:complement,
  15. neighbordhood:neighborhood,
  16. city:city,
  17. state:state,
  18. cpf:cpfBoletoBalance,
  19. valor:valor
  20. },
  21. dataType:'json',
  22. success:function(response){
  23. if(response.error == true){
  24. alert('Ocorreu um erro: ' + response.msg);
  25. }else{
  26. alert('Pagamento efetuado com sucesso, um email foi enviado pra você com os dados do boleto. Obrigado pela compra.');
  27. }
  28. }
  29. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement