Merge branch 'development' of https://gitlab.com/Cloud_Solution/doctor_app_flutter into sultan
commit
a8ef4a98a5
@ -1,17 +1,521 @@
|
|||||||
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/enum/master_lookup_key.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/viewModel/SOAP_view_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
||||||
|
import 'package:doctor_app_flutter/models/SOAP/GeneralGetReqForSOAP.dart';
|
||||||
|
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/date-utils.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/patients/profile/profile_medical_info_widget.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
import '../../../widgets/patients/profile/patient_profile_widget.dart';
|
|
||||||
import '../../../widgets/shared/app_scaffold_widget.dart';
|
|
||||||
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
*@author: Elham Rababah
|
||||||
|
*@Date:22/4/2020
|
||||||
|
*@param:
|
||||||
|
*@return:PatientProfileWidget
|
||||||
|
*@desc: Patient Profile Widget
|
||||||
|
*/
|
||||||
|
// ignore: must_be_immutable
|
||||||
class PatientProfileScreen extends StatelessWidget {
|
class PatientProfileScreen extends StatelessWidget {
|
||||||
const PatientProfileScreen({Key key}) : super(key: key);
|
PatiantInformtion patient;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final routeArgs = ModalRoute.of(context).settings.arguments as Map;
|
||||||
|
ProjectViewModel projectViewModel = Provider.of(context);
|
||||||
|
|
||||||
|
patient = routeArgs['patient'];
|
||||||
|
String patientType = routeArgs['patientType'];
|
||||||
|
String from = routeArgs['from'];
|
||||||
|
String to = routeArgs['to'];
|
||||||
|
|
||||||
|
return BaseView<SOAPViewModel>(
|
||||||
|
onModelReady: (model) async {
|
||||||
|
GeneralGetReqForSOAP generalGetReqForSOAP = GeneralGetReqForSOAP(
|
||||||
|
patientMRN: patient.patientMRN??patient.patientId,
|
||||||
|
doctorID: '',
|
||||||
|
editedBy: '');
|
||||||
|
await model.getPatientAllergy(generalGetReqForSOAP);
|
||||||
|
if (model.allergiesList.length == 0) {
|
||||||
|
await model.getMasterLookup(MasterKeysService.Allergies);
|
||||||
|
}
|
||||||
|
if (model.allergySeverityList.length == 0) {
|
||||||
|
await model.getMasterLookup(MasterKeysService.AllergySeverity);
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
builder: (_, model, w) =>AppScaffold(
|
||||||
|
baseViewModel: model,
|
||||||
|
appBarTitle: TranslationBase.of(context).patientProfile,
|
||||||
|
|
||||||
|
|
||||||
|
body: Container(
|
||||||
|
color: Color(0XFFF2F2F2),
|
||||||
|
child: CustomScrollView(primary: false, slivers: <Widget>[
|
||||||
|
SliverList(
|
||||||
|
delegate: SliverChildListDelegate(
|
||||||
|
[
|
||||||
|
Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
decoration: BoxDecoration(boxShadow: <BoxShadow>[
|
||||||
|
BoxShadow(
|
||||||
|
color: Colors.grey.shade300,
|
||||||
|
blurRadius: 10.0,
|
||||||
|
spreadRadius: 0,
|
||||||
|
offset: Offset(0, 10)),
|
||||||
|
], color: Colors.white),
|
||||||
|
child: Column(children: <Widget>[
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: Row(
|
||||||
|
children: <Widget>[
|
||||||
|
AvatarWidget(
|
||||||
|
Icon(
|
||||||
|
patient.genderDescription == "Male"
|
||||||
|
? DoctorApp.male
|
||||||
|
: DoctorApp.female_icon,
|
||||||
|
size: 70,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 20,
|
||||||
|
),
|
||||||
|
Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
patient.firstName + ' ' + patient.lastName,
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(context).fileNo,
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 4,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
patient.patientId.toString(),
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.normal,
|
||||||
|
),
|
||||||
|
|
||||||
|
|
||||||
|
],
|
||||||
|
),
|
||||||
|
model.patientAllergiesList.isNotEmpty && model.getAllergicNames(projectViewModel.isArabic)!='' ?Container(
|
||||||
|
width: MediaQuery.of(context).size.width *0.65,
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(vertical: 8),
|
||||||
|
child: AppText(
|
||||||
|
TranslationBase.of(context).allergicTO +" : "+model.getAllergicNames(projectViewModel.isArabic),
|
||||||
|
color: Color(0xFFB9382C),
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
) : AppText(''),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
width: double.infinity,
|
||||||
|
height: 1,
|
||||||
|
color: Color(0xffCCCCCC),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
height: 11 * SizeConfig.textMultiplier,
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(
|
||||||
|
16.0, 8.0, 8.0, 8.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(context).age,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 2 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 4,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
"${DateUtils.convertDateFromServerFormat(patient.dateofBirth, 'dd-MM-yyyy')} / ${DateUtils.getAgeByBirthday(patient.dateofBirth, context)/*patient.age*/}",
|
||||||
|
fontWeight: FontWeight.normal,
|
||||||
|
fontSize: 1.6 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
width: 1,
|
||||||
|
color: Color(0xffCCCCCC),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(
|
||||||
|
16.0, 8.0, 8.0, 8.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(context).nationality,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 2 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 4,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
patient.nationalityName ??patient.nationality ,
|
||||||
|
fontWeight: FontWeight.normal,
|
||||||
|
fontSize: 1.7 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
width: 1,
|
||||||
|
color: Color(0xffCCCCCC),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(
|
||||||
|
16.0, 8.0, 8.0, 8.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(context).gender,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 2 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 4,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
patient.gender.toString() == '1' ? 'Male' : 'Female',
|
||||||
|
fontWeight: FontWeight.normal,
|
||||||
|
fontSize: 1.8 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
width: double.infinity,
|
||||||
|
height: 1,
|
||||||
|
color: Color(0xffCCCCCC),
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
),
|
||||||
|
if (patient.admissionNo != null)
|
||||||
|
Container(
|
||||||
|
margin: EdgeInsets.all(16),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(context).admissionDetail,
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 1.8 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 4,
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Colors.white,
|
||||||
|
shape: BoxShape.rectangle,
|
||||||
|
borderRadius: BorderRadius.circular(8),
|
||||||
|
border: Border.fromBorderSide(BorderSide(
|
||||||
|
color: Color(0xffBBBBBB),
|
||||||
|
width: 1,
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsets.all(16),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width:
|
||||||
|
14 * SizeConfig.textMultiplier,
|
||||||
|
child: AppText(
|
||||||
|
TranslationBase.of(context)
|
||||||
|
.dateTime,
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 1.6 *
|
||||||
|
SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: AppText(
|
||||||
|
patient.createdOn != null
|
||||||
|
? "${DateUtils.convertDateFromServerFormat(patient.createdOn, 'EEEE dd, MMMM yyyy hh:mm a')}"
|
||||||
|
: "",
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.normal,
|
||||||
|
fontSize:
|
||||||
|
1.6 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 4,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width:
|
||||||
|
14 * SizeConfig.textMultiplier,
|
||||||
|
child: AppText(
|
||||||
|
TranslationBase.of(context)
|
||||||
|
.admissionNo,
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 1.6 *
|
||||||
|
SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
patient.admissionNo != null
|
||||||
|
? patient.admissionNo
|
||||||
|
: '',
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.normal,
|
||||||
|
fontSize:
|
||||||
|
1.6 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 4,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width:
|
||||||
|
14 * SizeConfig.textMultiplier,
|
||||||
|
child: AppText(
|
||||||
|
TranslationBase.of(context).losNo,
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 1.6 *
|
||||||
|
SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
patient.createdOn != null
|
||||||
|
? DateUtils
|
||||||
|
.differenceBetweenServerDateAndCurrent(
|
||||||
|
patient.createdOn, context)
|
||||||
|
: "",
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.normal,
|
||||||
|
fontSize:
|
||||||
|
1.6 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const Divider(
|
||||||
|
color: Color(0xffCCCCCC),
|
||||||
|
height: 5,
|
||||||
|
thickness: 1,
|
||||||
|
indent: 0,
|
||||||
|
endIndent: 0,
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
height: 10 * SizeConfig.textMultiplier,
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(
|
||||||
|
16.0, 8.0, 8.0, 8.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment:
|
||||||
|
CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(context)
|
||||||
|
.area,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 1.6 *
|
||||||
|
SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 4,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
patient.clinicDescription,
|
||||||
|
fontWeight: FontWeight.normal,
|
||||||
|
fontSize: 1.6 *
|
||||||
|
SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
width: 1,
|
||||||
|
color: Color(0xffCCCCCC),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.fromLTRB(
|
||||||
|
16.0, 8.0, 8.0, 8.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment:
|
||||||
|
CrossAxisAlignment.start,
|
||||||
|
mainAxisAlignment:
|
||||||
|
MainAxisAlignment.spaceEvenly,
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Row(
|
||||||
|
crossAxisAlignment:
|
||||||
|
CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(
|
||||||
|
context)
|
||||||
|
.room,
|
||||||
|
fontWeight:
|
||||||
|
FontWeight.bold,
|
||||||
|
fontSize: 1.6 *
|
||||||
|
SizeConfig
|
||||||
|
.textMultiplier,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 4,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: AppText(
|
||||||
|
"${patient.nursingStationName}\n${patient.roomId}",
|
||||||
|
fontWeight:
|
||||||
|
FontWeight.normal,
|
||||||
|
fontSize: 1.4 *
|
||||||
|
SizeConfig
|
||||||
|
.textMultiplier,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 4,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Row(
|
||||||
|
crossAxisAlignment:
|
||||||
|
CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(
|
||||||
|
context)
|
||||||
|
.bed,
|
||||||
|
fontWeight:
|
||||||
|
FontWeight.bold,
|
||||||
|
fontSize: 1.6 *
|
||||||
|
SizeConfig
|
||||||
|
.textMultiplier,
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 4,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
"${patient.bedId}",
|
||||||
|
fontWeight:
|
||||||
|
FontWeight.normal,
|
||||||
|
fontSize: 1.6 *
|
||||||
|
SizeConfig
|
||||||
|
.textMultiplier,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SliverPadding(
|
||||||
|
padding: const EdgeInsets.all(16.0),
|
||||||
|
sliver: ProfileMedicalInfoWidget(
|
||||||
|
patient: patient, patientType:patientType, from: from, to: to,
|
||||||
|
))
|
||||||
|
]),
|
||||||
|
),
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class AvatarWidget extends StatelessWidget {
|
||||||
|
final Widget avatarIcon;
|
||||||
|
|
||||||
|
AvatarWidget(this.avatarIcon);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return AppScaffold(
|
return Container(
|
||||||
appBarTitle: TranslationBase.of(context).patientProfile,
|
decoration: BoxDecoration(
|
||||||
body: PatientProfileWidget(),
|
boxShadow: [
|
||||||
|
BoxShadow(
|
||||||
|
color: Color.fromRGBO(0, 0, 0, 0.08),
|
||||||
|
offset: Offset(0.0, 5.0),
|
||||||
|
blurRadius: 16.0)
|
||||||
|
],
|
||||||
|
borderRadius: BorderRadius.all(Radius.circular(35.0)),
|
||||||
|
color: Color(0xffCCCCCC),
|
||||||
|
),
|
||||||
|
child: avatarIcon,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,517 @@
|
|||||||
|
import 'package:doctor_app_flutter/core/viewModel/prescription_view_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
||||||
|
import 'package:doctor_app_flutter/screens/prescription/add_prescription_form.dart';
|
||||||
|
import 'package:doctor_app_flutter/screens/prescription/update_prescription_form.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/helpers.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/patients/profile/patient-page-header-widget.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/network_base_view.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:intl/intl.dart';
|
||||||
|
|
||||||
|
class NewPrescriptionHistoryScreen extends StatefulWidget {
|
||||||
|
@override
|
||||||
|
_NewPrescriptionHistoryScreenState createState() =>
|
||||||
|
_NewPrescriptionHistoryScreenState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _NewPrescriptionHistoryScreenState
|
||||||
|
extends State<NewPrescriptionHistoryScreen> {
|
||||||
|
PersistentBottomSheetController _controller;
|
||||||
|
final _scaffoldKey = GlobalKey<ScaffoldState>();
|
||||||
|
TextEditingController strengthController = TextEditingController();
|
||||||
|
int testNum = 0;
|
||||||
|
int strengthChar;
|
||||||
|
PatiantInformtion patient;
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
final screenSize = MediaQuery.of(context).size;
|
||||||
|
final routeArgs = ModalRoute.of(context).settings.arguments as Map;
|
||||||
|
patient = routeArgs['patient'];
|
||||||
|
return BaseView<PrescriptionViewModel>(
|
||||||
|
onModelReady: (model) => model.getPrescription(mrn: patient.patientId),
|
||||||
|
builder:
|
||||||
|
(BuildContext context, PrescriptionViewModel model, Widget child) =>
|
||||||
|
AppScaffold(
|
||||||
|
isShowAppBar: true,
|
||||||
|
appBarTitle: TranslationBase.of(context).prescription,
|
||||||
|
body: NetworkBaseView(
|
||||||
|
baseViewModel: model,
|
||||||
|
child: SingleChildScrollView(
|
||||||
|
child: Container(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
PatientPageHeaderWidget(patient),
|
||||||
|
Divider(
|
||||||
|
height: 1.0,
|
||||||
|
thickness: 1.0,
|
||||||
|
color: Colors.grey,
|
||||||
|
),
|
||||||
|
(model.prescriptionList.length != 0)
|
||||||
|
? SizedBox(
|
||||||
|
height:
|
||||||
|
model.prescriptionList[0].rowcount == 0
|
||||||
|
? 200.0
|
||||||
|
: 10.0)
|
||||||
|
: SizedBox(height: 200.0),
|
||||||
|
//model.prescriptionList == null
|
||||||
|
(model.prescriptionList.length != 0)
|
||||||
|
? model.prescriptionList[0].rowcount == 0
|
||||||
|
? Container(
|
||||||
|
child: AppText(
|
||||||
|
'Sorry , Theres no prescriptions for this patient',
|
||||||
|
color: Color(0xFFB9382C),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: Padding(
|
||||||
|
padding: EdgeInsets.all(14.0),
|
||||||
|
child: NetworkBaseView(
|
||||||
|
baseViewModel: model,
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment:
|
||||||
|
MainAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
...List.generate(
|
||||||
|
model.prescriptionList[0]
|
||||||
|
.rowcount,
|
||||||
|
(index) => Container(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
height: MediaQuery.of(
|
||||||
|
context)
|
||||||
|
.size
|
||||||
|
.height *
|
||||||
|
0.022,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment:
|
||||||
|
MainAxisAlignment
|
||||||
|
.spaceBetween,
|
||||||
|
// crossAxisAlignment:
|
||||||
|
// CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
height: MediaQuery.of(
|
||||||
|
context)
|
||||||
|
.size
|
||||||
|
.height *
|
||||||
|
0.21,
|
||||||
|
width: MediaQuery.of(
|
||||||
|
context)
|
||||||
|
.size
|
||||||
|
.width *
|
||||||
|
0.1,
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
(DateTime.parse(model.prescriptionList[0].entityList[index].createdOn) !=
|
||||||
|
null
|
||||||
|
? (DateTime.parse(model.prescriptionList[0].entityList[index].createdOn).year)
|
||||||
|
.toString()
|
||||||
|
: DateTime.now()
|
||||||
|
.year)
|
||||||
|
.toString(),
|
||||||
|
color: Colors
|
||||||
|
.green,
|
||||||
|
fontSize:
|
||||||
|
13.5,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
Helpers.getMonth(model.prescriptionList[0].entityList[index].createdOn !=
|
||||||
|
null
|
||||||
|
? (DateTime.parse(model.prescriptionList[0].entityList[index].createdOn)
|
||||||
|
.month)
|
||||||
|
: DateTime.now()
|
||||||
|
.month)
|
||||||
|
.toUpperCase(),
|
||||||
|
color: Colors
|
||||||
|
.green,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
DateTime.parse(model
|
||||||
|
.prescriptionList[
|
||||||
|
0]
|
||||||
|
.entityList[
|
||||||
|
index]
|
||||||
|
.createdOn)
|
||||||
|
.day
|
||||||
|
.toString(),
|
||||||
|
color: Colors
|
||||||
|
.green,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
Helpers.getTimeFormated(DateTime.parse(model
|
||||||
|
.prescriptionList[
|
||||||
|
0]
|
||||||
|
.entityList[
|
||||||
|
index]
|
||||||
|
.createdOn))
|
||||||
|
.toString(),
|
||||||
|
color: Colors
|
||||||
|
.green,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
// height: MediaQuery.of(
|
||||||
|
// context)
|
||||||
|
// .size
|
||||||
|
// .height *
|
||||||
|
// 0.3499,
|
||||||
|
width: MediaQuery.of(
|
||||||
|
context)
|
||||||
|
.size
|
||||||
|
.width *
|
||||||
|
0.77,
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
'Start Date:',
|
||||||
|
fontWeight:
|
||||||
|
FontWeight
|
||||||
|
.w700,
|
||||||
|
fontSize:
|
||||||
|
14.0,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
AppText(
|
||||||
|
Helpers.getDateFormatted(DateTime.parse(model
|
||||||
|
.prescriptionList[0]
|
||||||
|
.entityList[index]
|
||||||
|
.startDate)),
|
||||||
|
fontSize:
|
||||||
|
13.5,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width:
|
||||||
|
6.0,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
'Order Type:',
|
||||||
|
fontWeight:
|
||||||
|
FontWeight
|
||||||
|
.w700,
|
||||||
|
fontSize:
|
||||||
|
14.0,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
AppText(
|
||||||
|
model
|
||||||
|
.prescriptionList[0]
|
||||||
|
.entityList[index]
|
||||||
|
.orderTypeDescription,
|
||||||
|
fontSize:
|
||||||
|
13.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 5.5,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
child:
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
AppText(
|
||||||
|
model
|
||||||
|
.prescriptionList[0]
|
||||||
|
.entityList[index]
|
||||||
|
.medicationName,
|
||||||
|
fontWeight:
|
||||||
|
FontWeight.w700,
|
||||||
|
fontSize:
|
||||||
|
15.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 5.5,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
AppText(
|
||||||
|
model
|
||||||
|
.prescriptionList[0]
|
||||||
|
.entityList[index]
|
||||||
|
.doseDetail,
|
||||||
|
fontSize:
|
||||||
|
15.0,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 10.0,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
'Indication: ',
|
||||||
|
fontWeight:
|
||||||
|
FontWeight
|
||||||
|
.w700,
|
||||||
|
fontSize:
|
||||||
|
17.0,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
RichText(
|
||||||
|
maxLines:
|
||||||
|
3,
|
||||||
|
overflow:
|
||||||
|
TextOverflow.ellipsis,
|
||||||
|
strutStyle:
|
||||||
|
StrutStyle(fontSize: 12.0),
|
||||||
|
text: TextSpan(
|
||||||
|
style:
|
||||||
|
TextStyle(color: Colors.black),
|
||||||
|
text: model.prescriptionList[0].entityList[index].indication),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
'UOM: ',
|
||||||
|
fontWeight:
|
||||||
|
FontWeight
|
||||||
|
.w700,
|
||||||
|
fontSize:
|
||||||
|
17.0,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
RichText(
|
||||||
|
maxLines:
|
||||||
|
3,
|
||||||
|
overflow:
|
||||||
|
TextOverflow.ellipsis,
|
||||||
|
strutStyle:
|
||||||
|
StrutStyle(fontSize: 12.0),
|
||||||
|
text: TextSpan(
|
||||||
|
style:
|
||||||
|
TextStyle(color: Colors.black),
|
||||||
|
text: model.prescriptionList[0].entityList[index].uom),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
'BOX Quantity: ',
|
||||||
|
fontWeight:
|
||||||
|
FontWeight
|
||||||
|
.w700,
|
||||||
|
fontSize:
|
||||||
|
17.0,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
RichText(
|
||||||
|
maxLines:
|
||||||
|
3,
|
||||||
|
overflow:
|
||||||
|
TextOverflow.ellipsis,
|
||||||
|
strutStyle:
|
||||||
|
StrutStyle(fontSize: 12.0),
|
||||||
|
text: TextSpan(
|
||||||
|
style:
|
||||||
|
TextStyle(color: Colors.black),
|
||||||
|
text: model.prescriptionList[0].entityList[index].quantity.toString() == null ? "" : model.prescriptionList[0].entityList[index].quantity.toString()),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
'pharmacy Intervention ',
|
||||||
|
fontWeight:
|
||||||
|
FontWeight
|
||||||
|
.w700,
|
||||||
|
fontSize:
|
||||||
|
17.0,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
RichText(
|
||||||
|
maxLines:
|
||||||
|
3,
|
||||||
|
overflow:
|
||||||
|
TextOverflow.ellipsis,
|
||||||
|
strutStyle:
|
||||||
|
StrutStyle(fontSize: 12.0),
|
||||||
|
text: TextSpan(
|
||||||
|
style:
|
||||||
|
TextStyle(color: Colors.black),
|
||||||
|
text: model.prescriptionList[0].entityList[index].pharmacyInervention == null ? "" : model.prescriptionList[0].entityList[index].pharmacyInervention.toString()),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height:
|
||||||
|
5.0),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
'pharmacist Remarks : ',
|
||||||
|
fontWeight:
|
||||||
|
FontWeight
|
||||||
|
.w700,
|
||||||
|
fontSize:
|
||||||
|
15.0,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: AppText(
|
||||||
|
// commening below code because there is an error coming in the model please fix it before pushing it
|
||||||
|
model.prescriptionList[0].entityList[index].pharmacistRemarks == null ? "" : model.prescriptionList[0].entityList[index].pharmacistRemarks,
|
||||||
|
fontSize: 15.0),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20.0,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(context)
|
||||||
|
.doctorName +
|
||||||
|
": ",
|
||||||
|
fontWeight:
|
||||||
|
FontWeight
|
||||||
|
.w600,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
AppText(
|
||||||
|
model
|
||||||
|
.prescriptionList[0]
|
||||||
|
.entityList[index]
|
||||||
|
.doctorName,
|
||||||
|
fontWeight:
|
||||||
|
FontWeight.w700,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 8.0,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
'Doctor Remarks : ',
|
||||||
|
fontWeight:
|
||||||
|
FontWeight
|
||||||
|
.w700,
|
||||||
|
fontSize:
|
||||||
|
13.0,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child:
|
||||||
|
Container(
|
||||||
|
// height: MediaQuery.of(context).size.height *
|
||||||
|
// 0.038,
|
||||||
|
child:
|
||||||
|
RichText(
|
||||||
|
// maxLines:
|
||||||
|
// 2,
|
||||||
|
// overflow:
|
||||||
|
// TextOverflow.ellipsis,
|
||||||
|
strutStyle:
|
||||||
|
StrutStyle(fontSize: 10.0),
|
||||||
|
text:
|
||||||
|
TextSpan(
|
||||||
|
style:
|
||||||
|
TextStyle(color: Colors.black),
|
||||||
|
text: model.prescriptionList[0].entityList[index].remarks != null
|
||||||
|
? model.prescriptionList[0].entityList[index].remarks
|
||||||
|
: "",
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 10.0,
|
||||||
|
),
|
||||||
|
|
||||||
|
// SizedBox(
|
||||||
|
// height: 40,
|
||||||
|
// ),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Divider(
|
||||||
|
height: 0,
|
||||||
|
thickness: 1.0,
|
||||||
|
color: Colors.grey,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: Container(
|
||||||
|
child: AppText(
|
||||||
|
'Sorry , theres no prescriptions listed for this patient',
|
||||||
|
color: Color(0xFFB9382C),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
selectDate(BuildContext context, PrescriptionViewModel model) async {
|
||||||
|
DateTime selectedDate;
|
||||||
|
selectedDate = DateTime.now();
|
||||||
|
final DateTime picked = await showDatePicker(
|
||||||
|
context: context,
|
||||||
|
initialDate: selectedDate,
|
||||||
|
firstDate: DateTime.now().add(Duration(hours: 2)),
|
||||||
|
lastDate: DateTime(2040),
|
||||||
|
initialEntryMode: DatePickerEntryMode.calendar,
|
||||||
|
);
|
||||||
|
if (picked != null && picked != selectedDate) {
|
||||||
|
setState(() {
|
||||||
|
selectedDate = picked;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,477 +0,0 @@
|
|||||||
import 'package:doctor_app_flutter/config/size_config.dart';
|
|
||||||
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
|
||||||
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
|
||||||
import 'package:doctor_app_flutter/util/date-utils.dart';
|
|
||||||
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
|
||||||
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
|
|
||||||
import './profile_medical_info_widget.dart';
|
|
||||||
|
|
||||||
/*
|
|
||||||
*@author: Elham Rababah
|
|
||||||
*@Date:22/4/2020
|
|
||||||
*@param:
|
|
||||||
*@return:PatientProfileWidget
|
|
||||||
*@desc: Patient Profile Widget
|
|
||||||
*/
|
|
||||||
class PatientProfileWidget extends StatelessWidget {
|
|
||||||
PatiantInformtion patient;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
final routeArgs = ModalRoute.of(context).settings.arguments as Map;
|
|
||||||
patient = routeArgs['patient'];
|
|
||||||
String patientType = routeArgs['patientType'];
|
|
||||||
String from = routeArgs['from'];
|
|
||||||
String to = routeArgs['to'];
|
|
||||||
|
|
||||||
return Container(
|
|
||||||
color: Color(0XFFF2F2F2),
|
|
||||||
child: CustomScrollView(primary: false, slivers: <Widget>[
|
|
||||||
SliverList(
|
|
||||||
delegate: SliverChildListDelegate(
|
|
||||||
[
|
|
||||||
Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
decoration: BoxDecoration(boxShadow: <BoxShadow>[
|
|
||||||
BoxShadow(
|
|
||||||
color: Colors.grey.shade300,
|
|
||||||
blurRadius: 10.0,
|
|
||||||
spreadRadius: 0,
|
|
||||||
offset: Offset(0, 10)),
|
|
||||||
], color: Colors.white),
|
|
||||||
child: Column(children: <Widget>[
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.all(8.0),
|
|
||||||
child: Row(
|
|
||||||
children: <Widget>[
|
|
||||||
AvatarWidget(
|
|
||||||
Icon(
|
|
||||||
patient.genderDescription == "Male"
|
|
||||||
? DoctorApp.male
|
|
||||||
: DoctorApp.female_icon,
|
|
||||||
size: 70,
|
|
||||||
color: Colors.white,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 20,
|
|
||||||
),
|
|
||||||
Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
patient.firstName + ' ' + patient.lastName,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).fileNo,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 4,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
patient.patientId.toString(),
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
width: double.infinity,
|
|
||||||
height: 1,
|
|
||||||
color: Color(0xffCCCCCC),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
height: 11 * SizeConfig.textMultiplier,
|
|
||||||
child: Row(
|
|
||||||
children: [
|
|
||||||
Expanded(
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.fromLTRB(
|
|
||||||
16.0, 8.0, 8.0, 8.0),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).age,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 2 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 4,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
"${DateUtils.convertDateFromServerFormat(patient.dateofBirth, 'dd-MM-yyyy')} / ${DateUtils.getAgeByBirthday(patient.dateofBirth, context)/*patient.age*/}",
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
width: 1,
|
|
||||||
color: Color(0xffCCCCCC),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.fromLTRB(
|
|
||||||
16.0, 8.0, 8.0, 8.0),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).nationality,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 2 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 4,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
patient.nationalityName ??patient.nationality ,
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
fontSize: 1.7 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
width: 1,
|
|
||||||
color: Color(0xffCCCCCC),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.fromLTRB(
|
|
||||||
16.0, 8.0, 8.0, 8.0),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).gender,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 2 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 4,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
patient.gender.toString() == '1' ? 'Male' : 'Female',
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
fontSize: 1.8 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
width: double.infinity,
|
|
||||||
height: 1,
|
|
||||||
color: Color(0xffCCCCCC),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
if (patient.admissionNo != null)
|
|
||||||
Container(
|
|
||||||
margin: EdgeInsets.all(16),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).admissionDetail,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 1.8 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 4,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.white,
|
|
||||||
shape: BoxShape.rectangle,
|
|
||||||
borderRadius: BorderRadius.circular(8),
|
|
||||||
border: Border.fromBorderSide(BorderSide(
|
|
||||||
color: Color(0xffBBBBBB),
|
|
||||||
width: 1,
|
|
||||||
)),
|
|
||||||
),
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsets.all(16),
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
width:
|
|
||||||
14 * SizeConfig.textMultiplier,
|
|
||||||
child: AppText(
|
|
||||||
TranslationBase.of(context)
|
|
||||||
.dateTime,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
patient.createdOn != null
|
|
||||||
? "${DateUtils.convertDateFromServerFormat(patient.createdOn, 'EEEE dd, MMMM yyyy hh:mm a')}"
|
|
||||||
: "",
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
fontSize:
|
|
||||||
1.6 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 4,
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
width:
|
|
||||||
14 * SizeConfig.textMultiplier,
|
|
||||||
child: AppText(
|
|
||||||
TranslationBase.of(context)
|
|
||||||
.admissionNo,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
patient.admissionNo != null
|
|
||||||
? patient.admissionNo
|
|
||||||
: '',
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
fontSize:
|
|
||||||
1.6 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 4,
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
width:
|
|
||||||
14 * SizeConfig.textMultiplier,
|
|
||||||
child: AppText(
|
|
||||||
TranslationBase.of(context).losNo,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
patient.createdOn != null
|
|
||||||
? DateUtils
|
|
||||||
.differenceBetweenServerDateAndCurrent(
|
|
||||||
patient.createdOn, context)
|
|
||||||
: "",
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
fontSize:
|
|
||||||
1.6 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const Divider(
|
|
||||||
color: Color(0xffCCCCCC),
|
|
||||||
height: 5,
|
|
||||||
thickness: 1,
|
|
||||||
indent: 0,
|
|
||||||
endIndent: 0,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
height: 10 * SizeConfig.textMultiplier,
|
|
||||||
child: Row(
|
|
||||||
children: [
|
|
||||||
Expanded(
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.fromLTRB(
|
|
||||||
16.0, 8.0, 8.0, 8.0),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment:
|
|
||||||
CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context)
|
|
||||||
.area,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 4,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
patient.clinicDescription,
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
width: 1,
|
|
||||||
color: Color(0xffCCCCCC),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.fromLTRB(
|
|
||||||
16.0, 8.0, 8.0, 8.0),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment:
|
|
||||||
CrossAxisAlignment.start,
|
|
||||||
mainAxisAlignment:
|
|
||||||
MainAxisAlignment.spaceEvenly,
|
|
||||||
children: [
|
|
||||||
Expanded(
|
|
||||||
child: Row(
|
|
||||||
crossAxisAlignment:
|
|
||||||
CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(
|
|
||||||
context)
|
|
||||||
.room,
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.bold,
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig
|
|
||||||
.textMultiplier,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 4,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
"${patient.nursingStationName}\n${patient.roomId}",
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.normal,
|
|
||||||
fontSize: 1.4 *
|
|
||||||
SizeConfig
|
|
||||||
.textMultiplier,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 4,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Row(
|
|
||||||
crossAxisAlignment:
|
|
||||||
CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(
|
|
||||||
context)
|
|
||||||
.bed,
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.bold,
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig
|
|
||||||
.textMultiplier,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 4,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
"${patient.bedId}",
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.normal,
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig
|
|
||||||
.textMultiplier,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SliverPadding(
|
|
||||||
padding: const EdgeInsets.all(16.0),
|
|
||||||
sliver: ProfileMedicalInfoWidget(
|
|
||||||
patient: patient, patientType:patientType, from: from, to: to,
|
|
||||||
))
|
|
||||||
]),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class AvatarWidget extends StatelessWidget {
|
|
||||||
final Widget avatarIcon;
|
|
||||||
|
|
||||||
AvatarWidget(this.avatarIcon);
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Container(
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
boxShadow: [
|
|
||||||
BoxShadow(
|
|
||||||
color: Color.fromRGBO(0, 0, 0, 0.08),
|
|
||||||
offset: Offset(0.0, 5.0),
|
|
||||||
blurRadius: 16.0)
|
|
||||||
],
|
|
||||||
borderRadius: BorderRadius.all(Radius.circular(35.0)),
|
|
||||||
color: Color(0xffCCCCCC),
|
|
||||||
),
|
|
||||||
child: avatarIcon,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue