|
|
|
|
@ -43,57 +43,47 @@ class PatientProfileScreen extends StatelessWidget {
|
|
|
|
|
|
|
|
|
|
return BaseView<PatientViewModel>(
|
|
|
|
|
onModelReady: (patientViewModel) async {
|
|
|
|
|
PatientModel patientReq = PatientModel(
|
|
|
|
|
ProjectID: 0,
|
|
|
|
|
ClinicID: 0,
|
|
|
|
|
DoctorID: 0,
|
|
|
|
|
FirstName: "0",
|
|
|
|
|
MiddleName: "0",
|
|
|
|
|
LastName: "0",
|
|
|
|
|
PatientMobileNumber: "0",
|
|
|
|
|
PatientIdentificationID: "0",
|
|
|
|
|
PatientID: patient.patientId,
|
|
|
|
|
From: "0",
|
|
|
|
|
To: "0",
|
|
|
|
|
LanguageID: 2,
|
|
|
|
|
stamp: "2020-03-02T13:56:39.170Z",
|
|
|
|
|
IPAdress: "11.11.11.11",
|
|
|
|
|
VersionID: 1.2,
|
|
|
|
|
Channel: 9,
|
|
|
|
|
TokenID: "@dm!n",
|
|
|
|
|
SessionID: "5G0yXn0Jnq",
|
|
|
|
|
IsLoginForDoctorApp: true,
|
|
|
|
|
PatientOutSA: false);
|
|
|
|
|
|
|
|
|
|
if(patient.patientType ==1 || patient.admissionNo==null || patient.admissionNo =="0" ) {
|
|
|
|
|
patientViewModel.getPatientList(patientReq, "1", isBusyLocal: false).then((response) {
|
|
|
|
|
if (response['MessageStatus'] == 1) {
|
|
|
|
|
|
|
|
|
|
if (response['List_MyInPatient'] != null) {
|
|
|
|
|
|
|
|
|
|
List<PatiantInformtion> patientList =
|
|
|
|
|
ModelResponse.fromJson(response['List_MyInPatient'])
|
|
|
|
|
.list;
|
|
|
|
|
patient.admissionNo = patientList[0].admissionNo;
|
|
|
|
|
patient.admissionDate = patientList[0].admissionDate;
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
DrAppToastMsg.showErrorToast('No patient');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PatientModel patientReq = PatientModel(
|
|
|
|
|
ProjectID: 0,
|
|
|
|
|
ClinicID: 0,
|
|
|
|
|
DoctorID: 0,
|
|
|
|
|
FirstName: "0",
|
|
|
|
|
MiddleName: "0",
|
|
|
|
|
LastName: "0",
|
|
|
|
|
PatientMobileNumber: "0",
|
|
|
|
|
PatientIdentificationID: "0",
|
|
|
|
|
PatientID: patient.patientId,
|
|
|
|
|
From: "0",
|
|
|
|
|
To: "0",
|
|
|
|
|
LanguageID: 2,
|
|
|
|
|
stamp: "2020-03-02T13:56:39.170Z",
|
|
|
|
|
IPAdress: "11.11.11.11",
|
|
|
|
|
VersionID: 1.2,
|
|
|
|
|
Channel: 9,
|
|
|
|
|
TokenID: "@dm!n",
|
|
|
|
|
SessionID: "5G0yXn0Jnq",
|
|
|
|
|
IsLoginForDoctorApp: true,
|
|
|
|
|
PatientOutSA: false);
|
|
|
|
|
|
|
|
|
|
if (patientType == "1" &&
|
|
|
|
|
(patient.admissionNo == null ||
|
|
|
|
|
patient.admissionNo == "0")) {
|
|
|
|
|
patientViewModel
|
|
|
|
|
.getPatientList(patientReq, "1", isBusyLocal: false)
|
|
|
|
|
.then((response) {
|
|
|
|
|
if (response['MessageStatus'] == 1) {
|
|
|
|
|
if (response['List_MyInPatient'] != null) {
|
|
|
|
|
List<PatiantInformtion> patientList = ModelResponse.fromJson(response['List_MyInPatient']).list;
|
|
|
|
|
patient.admissionNo = patientList[0].admissionNo;
|
|
|
|
|
patient.admissionDate = patientList[0].admissionDate;
|
|
|
|
|
} else {
|
|
|
|
|
DrAppToastMsg.showErrorToast('No patient');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}).catchError((error) {
|
|
|
|
|
// setState(() {
|
|
|
|
|
// isLoading = false;
|
|
|
|
|
// });
|
|
|
|
|
Helpers.showErrorToast(error.message);
|
|
|
|
|
//DrAppToastMsg.showErrorToast(error);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}).catchError((error) {
|
|
|
|
|
print(error);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
builder: (_, patientViewModel, w) => AppScaffold(
|
|
|
|
|
baseViewModel: patientViewModel,
|
|
|
|
|
@ -109,9 +99,9 @@ class PatientProfileScreen extends StatelessWidget {
|
|
|
|
|
children: [
|
|
|
|
|
!isFromSearch && patientType == "1"
|
|
|
|
|
? PatientProfileHeaderNewDesignInPatient(
|
|
|
|
|
patient, patientType, arrivalType)
|
|
|
|
|
patient, patientType, arrivalType)
|
|
|
|
|
: PatientProfileHeaderNewDesign(
|
|
|
|
|
patient, patientType, arrivalType),
|
|
|
|
|
patient, patientType, arrivalType),
|
|
|
|
|
Expanded(
|
|
|
|
|
child: Padding(
|
|
|
|
|
padding: const EdgeInsets.all(16.0),
|
|
|
|
|
@ -120,8 +110,8 @@ class PatientProfileScreen extends StatelessWidget {
|
|
|
|
|
children: [
|
|
|
|
|
isFromSearch
|
|
|
|
|
? ProfileMedicalInfoWidgetSearch(
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType: patientType,
|
|
|
|
|
patient: patient,
|
|
|
|
|
patientType: patientType,
|
|
|
|
|
arrivalType: arrivalType,
|
|
|
|
|
from: from,
|
|
|
|
|
to: to,
|
|
|
|
|
@ -149,82 +139,89 @@ class PatientProfileScreen extends StatelessWidget {
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if (int.parse(patientType) == 7 ||
|
|
|
|
|
int.parse(patientType) == 6)
|
|
|
|
|
BaseView<SOAPViewModel>(
|
|
|
|
|
onModelReady: (model) async {
|
|
|
|
|
},
|
|
|
|
|
builder: (_, model, w) => Positioned(
|
|
|
|
|
top: 175,
|
|
|
|
|
left: 20,
|
|
|
|
|
right: 20,
|
|
|
|
|
child: Row(
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(child: Container()),
|
|
|
|
|
if (patient.episodeNo == 0)
|
|
|
|
|
AppButton(
|
|
|
|
|
title:
|
|
|
|
|
"${TranslationBase.of(context).createNew}\n${TranslationBase.of(context).episode}",
|
|
|
|
|
color: patient.patientStatusType == 43
|
|
|
|
|
? Colors.red.shade700
|
|
|
|
|
: Colors.grey.shade700,
|
|
|
|
|
fontColor: Colors.white,
|
|
|
|
|
vPadding: 8,
|
|
|
|
|
radius: 30,
|
|
|
|
|
hPadding: 20,
|
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
|
fontSize: 1.6,
|
|
|
|
|
icon: Image.asset(
|
|
|
|
|
"assets/images/create-episod.png",
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
height: 30,
|
|
|
|
|
if (patient.patientStatusType !=null && patient.patientStatusType == 43 )
|
|
|
|
|
BaseView<SOAPViewModel>(
|
|
|
|
|
onModelReady: (model) async {},
|
|
|
|
|
builder: (_, model, w) => Positioned(
|
|
|
|
|
top: 175,
|
|
|
|
|
left: 20,
|
|
|
|
|
right: 20,
|
|
|
|
|
child: Row(
|
|
|
|
|
children: [
|
|
|
|
|
Expanded(child: Container()),
|
|
|
|
|
if (patient.episodeNo == 0)
|
|
|
|
|
AppButton(
|
|
|
|
|
title:
|
|
|
|
|
"${TranslationBase.of(context).createNew}\n${TranslationBase.of(context).episode}",
|
|
|
|
|
color: patient.patientStatusType == 43
|
|
|
|
|
? Colors.red.shade700
|
|
|
|
|
: Colors.grey.shade700,
|
|
|
|
|
fontColor: Colors.white,
|
|
|
|
|
vPadding: 8,
|
|
|
|
|
radius: 30,
|
|
|
|
|
hPadding: 20,
|
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
|
fontSize: 1.6,
|
|
|
|
|
icon: Image.asset(
|
|
|
|
|
"assets/images/create-episod.png",
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
height: 30,
|
|
|
|
|
),
|
|
|
|
|
onPressed: () async {
|
|
|
|
|
if (patient.patientStatusType == 43) {
|
|
|
|
|
PostEpisodeReqModel
|
|
|
|
|
postEpisodeReqModel =
|
|
|
|
|
PostEpisodeReqModel(
|
|
|
|
|
appointmentNo:
|
|
|
|
|
patient.appointmentNo,
|
|
|
|
|
patientMRN:
|
|
|
|
|
patient.patientMRN);
|
|
|
|
|
GifLoaderDialogUtils.showMyDialog(
|
|
|
|
|
context);
|
|
|
|
|
await model.postEpisode(
|
|
|
|
|
postEpisodeReqModel);
|
|
|
|
|
GifLoaderDialogUtils.hideDialog(
|
|
|
|
|
context);
|
|
|
|
|
patient.episodeNo = model.episodeID;
|
|
|
|
|
Navigator.of(context).pushNamed(
|
|
|
|
|
CREATE_EPISODE,
|
|
|
|
|
arguments: {
|
|
|
|
|
'patient': patient
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
if (patient.episodeNo != 0)
|
|
|
|
|
AppButton(
|
|
|
|
|
title:
|
|
|
|
|
"${TranslationBase.of(context).update}\n${TranslationBase.of(context).episode}",
|
|
|
|
|
color: patient.patientStatusType == 43
|
|
|
|
|
? Colors.red.shade700
|
|
|
|
|
: Colors.grey.shade700,
|
|
|
|
|
fontColor: Colors.white,
|
|
|
|
|
vPadding: 8,
|
|
|
|
|
radius: 30,
|
|
|
|
|
hPadding: 20,
|
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
|
fontSize: 1.6,
|
|
|
|
|
icon: Image.asset(
|
|
|
|
|
"assets/images/modilfy-episode.png",
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
height: 30,
|
|
|
|
|
),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
if (patient.patientStatusType ==
|
|
|
|
|
43) {
|
|
|
|
|
Navigator.of(context).pushNamed(
|
|
|
|
|
UPDATE_EPISODE,
|
|
|
|
|
arguments: {
|
|
|
|
|
'patient': patient
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
onPressed: () async {
|
|
|
|
|
if (patient.patientStatusType == 43) {
|
|
|
|
|
PostEpisodeReqModel postEpisodeReqModel =
|
|
|
|
|
PostEpisodeReqModel(
|
|
|
|
|
appointmentNo:
|
|
|
|
|
patient.appointmentNo,
|
|
|
|
|
patientMRN: patient.patientMRN);
|
|
|
|
|
GifLoaderDialogUtils.showMyDialog(context);
|
|
|
|
|
await model
|
|
|
|
|
.postEpisode(postEpisodeReqModel);
|
|
|
|
|
GifLoaderDialogUtils.hideDialog(context);
|
|
|
|
|
patient.episodeNo = model.episodeID;
|
|
|
|
|
Navigator.of(context).pushNamed(
|
|
|
|
|
CREATE_EPISODE,
|
|
|
|
|
arguments: {'patient': patient});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
if (patient.episodeNo != 0)
|
|
|
|
|
AppButton(
|
|
|
|
|
title:
|
|
|
|
|
"${TranslationBase.of(context).update}\n${TranslationBase.of(context).episode}",
|
|
|
|
|
color: patient.patientStatusType == 43
|
|
|
|
|
? Colors.red.shade700
|
|
|
|
|
: Colors.grey.shade700,
|
|
|
|
|
fontColor: Colors.white,
|
|
|
|
|
vPadding: 8,
|
|
|
|
|
radius: 30,
|
|
|
|
|
hPadding: 20,
|
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
|
fontSize: 1.6,
|
|
|
|
|
icon: Image.asset(
|
|
|
|
|
"assets/images/modilfy-episode.png",
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
height: 30,
|
|
|
|
|
),
|
|
|
|
|
onPressed: () {
|
|
|
|
|
if (patient.patientStatusType == 43) {
|
|
|
|
|
Navigator.of(context).pushNamed(
|
|
|
|
|
UPDATE_EPISODE,
|
|
|
|
|
arguments: {'patient': patient});
|
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
)),
|
|
|
|
|
)),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
@ -254,4 +251,3 @@ class AvatarWidget extends StatelessWidget {
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|