medical file model

merge-requests/211/head
hussam al-habibeh 5 years ago
parent 9210600e15
commit b3567df020

@ -133,8 +133,6 @@ const POST_PROGRESS_NOTE =
'Services/DoctorApplication.svc/REST/PostProgressNote';
const POST_ASSESSMENT = 'Services/DoctorApplication.svc/REST/PostAssessment';
const PATCH_ALLERGY = 'Services/DoctorApplication.svc/REST/PatchAllergies';
const PATCH_HISTORY = 'Services/DoctorApplication.svc/REST/PatchHistory';
const PATCH_CHIEF_COMPLAINT =
@ -143,19 +141,15 @@ const PATCH_PHYSICAL_EXAM =
'Services/DoctorApplication.svc/REST/PatchPhysicalExam';
const PATCH_PROGRESS_NOTE =
'Services/DoctorApplication.svc/REST/PatchProgressNote';
const PATCH_ASSESSMENT =
'Services/DoctorApplication.svc/REST/PatchAssessment';
const PATCH_ASSESSMENT = 'Services/DoctorApplication.svc/REST/PatchAssessment';
const GET_ALLERGY = 'Services/DoctorApplication.svc/REST/GetAllergies';
const GET_HISTORY = 'Services/DoctorApplication.svc/REST/GetHistory';
const GET_CHIEF_COMPLAINT =
'Services/DoctorApplication.svc/REST/GetChiefcomplaint';
const GET_PHYSICAL_EXAM =
'Services/DoctorApplication.svc/REST/GetPhysicalExam';
const GET_PROGRESS_NOTE =
'Services/DoctorApplication.svc/REST/GetProgressNote';
const GET_ASSESSMENT =
'Services/DoctorApplication.svc/REST/GetAssessment';
const GET_PHYSICAL_EXAM = 'Services/DoctorApplication.svc/REST/GetPhysicalExam';
const GET_PROGRESS_NOTE = 'Services/DoctorApplication.svc/REST/GetProgressNote';
const GET_ASSESSMENT = 'Services/DoctorApplication.svc/REST/GetAssessment';
const GET_CATEGORISE_PROCEDURE =
'Services/DoctorApplication.svc/REST/GetProcedure';

File diff suppressed because it is too large Load Diff

@ -284,7 +284,7 @@ void addPrescriptionForm(context, PrescriptionViewModel model) {
formKey.currentState.save();
if (formKey.currentState.validate()) {
postPrescription(
postProcedure(
model: model,
duration: durationController.text,
dose: doseController.text,
@ -326,7 +326,7 @@ void addPrescriptionForm(context, PrescriptionViewModel model) {
});
}
postPrescription(
postProcedure(
{String duration,
String dose,
String drugId,

@ -440,7 +440,7 @@ packages:
name: js
url: "https://pub.dartlang.org"
source: hosted
version: "0.6.2"
version: "0.6.3-nullsafety.1"
json_annotation:
dependency: transitive
description:
@ -482,7 +482,7 @@ packages:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0-nullsafety.3"
version: "1.3.0-nullsafety.4"
mime:
dependency: transitive
description:
@ -739,7 +739,7 @@ packages:
name: stack_trace
url: "https://pub.dartlang.org"
source: hosted
version: "1.10.0-nullsafety.1"
version: "1.10.0-nullsafety.2"
stream_channel:
dependency: transitive
description:
@ -874,5 +874,5 @@ packages:
source: hosted
version: "2.2.1"
sdks:
dart: ">=2.10.0 <2.11.0"
dart: ">=2.10.0 <=2.11.0-213.1.beta"
flutter: ">=1.22.0 <2.0.0"

Loading…
Cancel
Save