Compare commits

..

No commits in common. "90f028651d5efbcbd595cd0b82717ed92b21dadb" and "642ad8e326d5e24df39f32e4a88a69bb616bdcd4" have entirely different histories.

1 changed files with 3 additions and 6 deletions

View File

@ -310,17 +310,13 @@ def submitApplication(request, id, email, user_type):
try:
data = request.data
if OPENING_TYPE in data:
if data[OPENING_TYPE] == "Internship":
opening_type= "Internship"
elif data[OPENING_TYPE] == "placements":
opening_type= "Placement"
opening_type= data[OPENING_TYPE]
else:
opening_type= "Placement"
if opening_type == "Internship":
opening = get_object_or_404(Internship, pk=data[OPENING_ID])
else:
opening = get_object_or_404(Placement, pk=data[OPENING_ID])
# print(opening);
student = get_object_or_404(Student, pk=data[STUDENT_ID])
# opening = get_object_or_404(Placement, pk=data[OPENING_ID])
student_user = get_object_or_404(User, id=student.id)
@ -450,7 +446,8 @@ def generateCSV(request, id, email, user_type):
row_details.append(apl.selected)
for i in opening.additional_info:
row_details.append(json.loads(apl.additional_info).get(i, ''))
row_details.append(json.loads(apl.additional_info)[i])
writer.writerow(row_details)
f.close()
file_path = LINK_TO_APPLICATIONS_CSV + urllib.parse.quote_plus(filename + ".csv")