brotherton-erpnext/erpnext/www/book-appointment/verify/index.py

14 lines
468 B
Python
Raw Normal View History

2019-09-20 04:38:48 +00:00
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