brotherton-erpnext/erpnext/www/book-appointment/verify/index.py
2019-09-20 10:08:48 +05:30

14 lines
468 B
Python

import frappe
@frappe.whitelist(allow_guest=True)
def get_context(context):
email = frappe.form_dict['email']
appointment_name = frappe.form_dict['appointment']
if email and appointment_name:
appointment = frappe.get_doc('Appointment',appointment_name)
appointment.set_verified(email)
context.success = True
return context
else:
print('Something not found')
context.success = False
return context