Advertisement
Guest User

Untitled

a guest
Mar 26th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. if int(request.user.typeprofile) == 2: # 2 = admin company | 1 = normal user | 3 = supervisor branche
  2. brancheselect = Branche.objects.get(code=id1)
  3. moduledata = Module.objects.get(id=5)
  4. listhistoryproduct = HistoryProduct.objects.filter(product__branche=brancheselect).order_by('-id')
  5. return render(request,'apps/reports/products/historyproduct.html',{'listhistoryproduct':listhistoryproduct,'brancheselect':brancheselect,'moduledata':moduledata})
  6. else:
  7. return HttpResponseRedirect('/error001/')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement