From 885ca29fc9126b2c4ed45f00bb52d8eb42319030 Mon Sep 17 00:00:00 2001 From: Gokul S Ashok Date: Mon, 8 Jul 2024 11:55:51 +0530 Subject: [PATCH] fix(Patient Appointment): remove redundant save command --- .../doctype/patient_appointment/patient_appointment.py | 1 - 1 file changed, 1 deletion(-) diff --git a/healthcare/healthcare/doctype/patient_appointment/patient_appointment.py b/healthcare/healthcare/doctype/patient_appointment/patient_appointment.py index 7efb957256..3f1e72d9cc 100755 --- a/healthcare/healthcare/doctype/patient_appointment/patient_appointment.py +++ b/healthcare/healthcare/doctype/patient_appointment/patient_appointment.py @@ -348,7 +348,6 @@ def update_event(self): event_doc.starts_on = starts_on 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