diff --git a/lib/config/config.dart b/lib/config/config.dart index e1177a58..edfda947 100644 --- a/lib/config/config.dart +++ b/lib/config/config.dart @@ -267,6 +267,9 @@ const GET_OBGYNE_ORDERS_LIST = const GET_OBGYNE_DOCTORS_LIST = "services/Doctors.svc/REST/HIS_ObgyneUltrasoundDoctors"; +const OBGYNE_PROCEDURE_UPDATE = + "services/Patients.svc/REST/HIS_OBGYNEProcedure_Update"; + const DOCTOR_SCHEDULE_URL = 'Services/Doctors.svc/REST/GetDoctorWorkingHoursTable'; diff --git a/lib/services/appointment_services/GetDoctorsList.dart b/lib/services/appointment_services/GetDoctorsList.dart index 15a97515..e9613628 100644 --- a/lib/services/appointment_services/GetDoctorsList.dart +++ b/lib/services/appointment_services/GetDoctorsList.dart @@ -1525,7 +1525,7 @@ class DoctorsListService extends BaseService { }; dynamic localRes; - await baseAppClient.post(UPDATE_COVID_QUESTIONNAIRE, onSuccess: (response, statusCode) async { + await baseAppClient.post(OBGYNE_PROCEDURE_UPDATE, onSuccess: (response, statusCode) async { localRes = response; }, onFailure: (String error, int statusCode) { throw error;