development-3.3_voipCall
haroon amjad 1 year ago
parent 8b515ee14d
commit fde016c38b

@ -30,7 +30,7 @@ android {
signingConfigs { signingConfigs {
release { release {
storeFile file('/Users/mohamedmekawy/Documents/Work/DoctorApp/android/doctor app key') storeFile file('/Users/mohamedmekawy/Documents/Work/DoctorApp/android/doctor_app_key')
storePassword 'Hmgdoctor1234' storePassword 'Hmgdoctor1234'
keyAlias 'hmgdoctor' keyAlias 'hmgdoctor'
keyPassword 'Hmgdoctor1234' keyPassword 'Hmgdoctor1234'

@ -10,9 +10,9 @@ const BASE_URL_LIVE_CARE = 'https://livecare.hmg.com/';
// const BASE_URL = 'https://uat.hmgwebservices.com/'; // const BASE_URL = 'https://uat.hmgwebservices.com/';
// const BASE_URL = 'https://vidauat.cloudsolutions.com.sa/'; //Vida Plus URL const BASE_URL = 'https://vidauat.cloudsolutions.com.sa/'; //Vida Plus URL
const BASE_URL = 'https://vidamergeuat.cloudsolutions.com.sa/'; //Vida Plus URL // const BASE_URL = 'https://vidamergeuat.cloudsolutions.com.sa/'; //Vida Plus URL
const PHARMACY_ITEMS_URL = "Services/Lists.svc/REST/GetPharmcyItems_Region_enh"; const PHARMACY_ITEMS_URL = "Services/Lists.svc/REST/GetPharmcyItems_Region_enh";
const PHARMACY_LIST_URL = "Services/Patients.svc/REST/GetPharmcyList"; const PHARMACY_LIST_URL = "Services/Patients.svc/REST/GetPharmcyList";

@ -378,14 +378,13 @@ class _AddAssessmentDetailsState extends State<AddAssessmentDetails> {
} else { } else {
Map profile = await sharedPref.getObj(DOCTOR_PROFILE); Map profile = await sharedPref.getObj(DOCTOR_PROFILE);
DoctorProfileModel doctorProfile = DoctorProfileModel.fromJson(profile); DoctorProfileModel doctorProfile = DoctorProfileModel.fromJson(profile);
PostAssessmentRequestModel postAssessmentRequestModel = PostAssessmentRequestModel postAssessmentRequestModel = new PostAssessmentRequestModel(
new PostAssessmentRequestModel( patientMRN: widget.patientInfo.patientMRN,
patientMRN: widget.patientInfo.patientMRN, episodeId: widget.patientInfo.episodeNo,
episodeId: widget.patientInfo.episodeNo, appointmentNo: widget.patientInfo.appointmentNo,
appointmentNo: widget.patientInfo.appointmentNo, createdByName: doctorProfile.doctorName,
createdByName: doctorProfile.doctorName, createdBy: doctorProfile.doctorID,
createdBy: doctorProfile.doctorID, icdCodeDetails: [
icdCodeDetails: [
new IcdCodeDetails( new IcdCodeDetails(
remarks: mySelectedAssessment.remark, remarks: mySelectedAssessment.remark,
complexDiagnosis: true, complexDiagnosis: true,

Loading…
Cancel
Save