From 062717b10fbe018564413fcb17f0e5c05573c2c8 Mon Sep 17 00:00:00 2001 From: Aibel Date: Thu, 15 Feb 2024 12:25:48 +0530 Subject: [PATCH] fix(Patient Appointment): event permission issue --- .../doctype/patient_appointment/patient_appointment.py | 1 + 1 file changed, 1 insertion(+) diff --git a/healthcare/healthcare/doctype/patient_appointment/patient_appointment.py b/healthcare/healthcare/doctype/patient_appointment/patient_appointment.py index e8152ce107..7efb957256 100755 --- a/healthcare/healthcare/doctype/patient_appointment/patient_appointment.py +++ b/healthcare/healthcare/doctype/patient_appointment/patient_appointment.py @@ -349,6 +349,7 @@ def update_event(self): event_doc.ends_on = ends_on event_doc.add_video_conferencing = self.add_video_conferencing event_doc.save() + event_doc.save(ignore_permissions=True) event_doc.reload() self.google_meet_link = event_doc.google_meet_link