# HG changeset patch # User Lennard de Rijk # Date 1246531572 -7200 # Node ID f41a9e1eeeeab8a32b2514fdc6d594c37303e52d # Parent be8a113ee02143a9e5b9a1c6b7dd26f2d2bfd7da Add a base implementation of takePost. Normal Surveys can now be taken, however comments are not stored yet. diff -r be8a113ee021 -r f41a9e1eeeea app/soc/views/models/survey.py --- a/app/soc/views/models/survey.py Thu Jul 02 12:45:06 2009 +0200 +++ b/app/soc/views/models/survey.py Thu Jul 02 12:46:12 2009 +0200 @@ -496,6 +496,7 @@ # TODO(ljvderijk) deal with the SurveyProperty name in subclasses filter = {'survey': entity, 'user': user_entity} + survey_record = record_logic.getForFields(filter, unique=True) if request.POST: @@ -537,9 +538,23 @@ rest: see base.View.public() """ - # TODO(ljvderijk) implement takePost + survey_logic = params['logic'] + record_logic = survey_logic.getRecordLogic() + + # TODO: check the validity of the form data + properties = surveys.getSurveyResponseFromPost(entity, request.POST) - return http.HttpResponse("Work in Progress") + # add the required SurveyRecord properties + properties['user'] = user_logic.getForCurrentAccount() + properties['survey'] = entity + + # update the record entity if any and clear all dynamic properties + record_logic.updateOrCreateFromFields(record, properties, clear_dynamic=True) + + # TODO: add notice to page that the response has been saved successfully + # redirect to the same page for now + redirect = request.path + return http.HttpResponseRedirect(redirect) def setHelpAndStatus(self, context, survey, survey_record): """Get help_text and status for template use.