Fix HR state update

This commit is contained in:
2011-05-27 07:43:04 +01:00
parent 1f91e0c2de
commit a62a5d1c8d

View File

@@ -186,7 +186,9 @@ def update_application(request, applicationid, status):
""" Update a application's status """ """ Update a application's status """
app = get_object_or_404(Application, id=applicationid) app = get_object_or_404(Application, id=applicationid)
if check_permissions(request.user, app):
perm = check_permissions(request.user, app)
if perm == HR_ADMIN or (perm == HR_VIEWONLY and int(status) <= 1):
if not app.status == status: if not app.status == status:
app.status = status app.status = status
app.save(user=request.user) app.save(user=request.user)