Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. from django.shortcuts import render, redirect
  2. from core.forms import bilhete, ocorrencia, locais_de_ocorrencias, informacoes_de_ocorrencia, parecer_pop, servico_interjato, material, material_retorno
  3.  
  4.  
  5. # Create your views here.
  6.  
  7.  
  8. def home(request):
  9. var = '123'
  10. return render(request, 'core/index.html', {'var': var})
  11.  
  12.  
  13. def bilhetef(request):
  14. formbilhete = bilhete(request.POST or None)
  15. formocorre = ocorrencia(request.POST or None)
  16. formlocalocorre = locais_de_ocorrencias(request.POST or None)
  17. forminfoocorre = informacoes_de_ocorrencia(request.POST or None)
  18. formparecerpop = parecer_pop(request.POST or None)
  19. formserinterj = servico_interjato(request.POST or None)
  20. formmateriais = material(request.POST or None)
  21. formmatertrn = material_retorno(request.POST or None)
  22.  
  23. if request.POST:
  24.  
  25.  
  26. form_bilhete = formbilhete.save()
  27. formocorre.save(commit=False)
  28. formocorre.id_bilhete = form_bilhete
  29. formocorre.save()
  30. formlocalocorre.save(commit=False)
  31. formlocalocorre.id_bilhete = form_bilhete
  32. formlocalocorre.save()
  33. forminfoocorre.save(commit=False)
  34. forminfoocorre.id_bilhete = form_bilhete
  35. forminfoocorre.save()
  36. formparecerpop.save(commit=False)
  37. formparecerpop.id_bilhete = form_bilhete
  38. formparecerpop.save()
  39. formserinterj.save(commit=False)
  40. formserinterj.id_bilhete = form_bilhete
  41. formserinterj.save()
  42. formmateriais.save(commit=False)
  43. formmateriais.id_bilhete = form_bilhete
  44. formmateriais.save()
  45. formmatertrn.save(commit=False)
  46. formmatertrn.id_bilhete = form_bilhete
  47. formmatertrn.save()
  48.  
  49.  
  50.  
  51.  
  52. return render(request, 'core/formulario.html', {'bilhete': formbilhete, 'ocorre': formocorre, 'lococorre': formlocalocorre, 'infocorre': forminfoocorre,'parecerpop': formparecerpop, 'servinter': servico_interjato, 'material': formmateriais, 'materialretrn':formmatertrn})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement