Added customer to calender event
This commit is contained in:
parent
c9c8e19ec2
commit
1564f1476c
@ -22,6 +22,12 @@ class Appointment(Document):
|
|||||||
appointment_event.type = 'Private'
|
appointment_event.type = 'Private'
|
||||||
settings = frappe.get_doc('Appointment Booking Settings')
|
settings = frappe.get_doc('Appointment Booking Settings')
|
||||||
appointment_event.ends_on = self.scheduled_time + timedelta(minutes=settings.appointment_duration)
|
appointment_event.ends_on = self.scheduled_time + timedelta(minutes=settings.appointment_duration)
|
||||||
|
event_participants = []
|
||||||
|
event_participant_customer = frappe.new_doc('Event Participants')
|
||||||
|
event_participant_customer.reference_doctype = 'Lead'
|
||||||
|
event_participant_customer.reference_docname = self.lead
|
||||||
|
event_participants.append(event_participant_customer)
|
||||||
|
appointment_event.event_participants = event_participants
|
||||||
appointment_event.insert()
|
appointment_event.insert()
|
||||||
self.calender_event = appointment_event.name
|
self.calender_event = appointment_event.name
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user