Merge branch 'development' into video-streaming-android
commit
61b0f6c22c
@ -0,0 +1,72 @@
|
|||||||
|
class AddReferredRemarksRequestModel {
|
||||||
|
int projectID;
|
||||||
|
int admissionNo;
|
||||||
|
int lineItemNo;
|
||||||
|
String referredDoctorRemarks;
|
||||||
|
int editedBy;
|
||||||
|
int referalStatus;
|
||||||
|
bool isLoginForDoctorApp;
|
||||||
|
String iPAdress;
|
||||||
|
bool patientOutSA;
|
||||||
|
String tokenID;
|
||||||
|
int languageID;
|
||||||
|
double versionID;
|
||||||
|
int channel;
|
||||||
|
String sessionID;
|
||||||
|
int deviceTypeID;
|
||||||
|
|
||||||
|
AddReferredRemarksRequestModel(
|
||||||
|
{this.projectID,
|
||||||
|
this.admissionNo,
|
||||||
|
this.lineItemNo,
|
||||||
|
this.referredDoctorRemarks,
|
||||||
|
this.editedBy,
|
||||||
|
this.referalStatus,
|
||||||
|
this.isLoginForDoctorApp,
|
||||||
|
this.iPAdress,
|
||||||
|
this.patientOutSA,
|
||||||
|
this.tokenID,
|
||||||
|
this.languageID,
|
||||||
|
this.versionID,
|
||||||
|
this.channel,
|
||||||
|
this.sessionID,
|
||||||
|
this.deviceTypeID});
|
||||||
|
|
||||||
|
AddReferredRemarksRequestModel.fromJson(Map<String, dynamic> json) {
|
||||||
|
projectID = json['ProjectID'];
|
||||||
|
admissionNo = json['AdmissionNo'];
|
||||||
|
lineItemNo = json['LineItemNo'];
|
||||||
|
referredDoctorRemarks = json['ReferredDoctorRemarks'];
|
||||||
|
editedBy = json['EditedBy'];
|
||||||
|
referalStatus = json['ReferalStatus'];
|
||||||
|
isLoginForDoctorApp = json['IsLoginForDoctorApp'];
|
||||||
|
iPAdress = json['IPAdress'];
|
||||||
|
patientOutSA = json['PatientOutSA'];
|
||||||
|
tokenID = json['TokenID'];
|
||||||
|
languageID = json['LanguageID'];
|
||||||
|
versionID = json['VersionID'];
|
||||||
|
channel = json['Channel'];
|
||||||
|
sessionID = json['SessionID'];
|
||||||
|
deviceTypeID = json['DeviceTypeID'];
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<String, dynamic> toJson() {
|
||||||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||||||
|
data['ProjectID'] = this.projectID;
|
||||||
|
data['AdmissionNo'] = this.admissionNo;
|
||||||
|
data['LineItemNo'] = this.lineItemNo;
|
||||||
|
data['ReferredDoctorRemarks'] = this.referredDoctorRemarks;
|
||||||
|
data['EditedBy'] = this.editedBy;
|
||||||
|
data['ReferalStatus'] = this.referalStatus;
|
||||||
|
data['IsLoginForDoctorApp'] = this.isLoginForDoctorApp;
|
||||||
|
data['IPAdress'] = this.iPAdress;
|
||||||
|
data['PatientOutSA'] = this.patientOutSA;
|
||||||
|
data['TokenID'] = this.tokenID;
|
||||||
|
data['LanguageID'] = this.languageID;
|
||||||
|
data['VersionID'] = this.versionID;
|
||||||
|
data['Channel'] = this.channel;
|
||||||
|
data['SessionID'] = this.sessionID;
|
||||||
|
data['DeviceTypeID'] = this.deviceTypeID;
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
}
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,591 +0,0 @@
|
|||||||
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/date-utils.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';
|
|
||||||
|
|
||||||
class NewPrescriptionScreen extends StatefulWidget {
|
|
||||||
@override
|
|
||||||
_NewPrescriptionScreenState createState() => _NewPrescriptionScreenState();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _NewPrescriptionScreenState extends State<NewPrescriptionScreen> {
|
|
||||||
PersistentBottomSheetController _controller;
|
|
||||||
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(
|
|
||||||
color: Colors.white,
|
|
||||||
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
|
|
||||||
? Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
||||||
children: [
|
|
||||||
InkWell(
|
|
||||||
onTap: () {
|
|
||||||
addPrescriptionForm(context, model, patient, model.prescriptionList);
|
|
||||||
//model.postPrescription();
|
|
||||||
},
|
|
||||||
child: CircleAvatar(
|
|
||||||
radius: 65,
|
|
||||||
backgroundColor: Color(0XFFB8382C),
|
|
||||||
child: CircleAvatar(
|
|
||||||
radius: 60,
|
|
||||||
backgroundColor: Colors.white,
|
|
||||||
child: Icon(
|
|
||||||
Icons.add,
|
|
||||||
color: Colors.black,
|
|
||||||
size: 45.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 15.0,
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).noPrescriptionListed,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.w900,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).addNow,
|
|
||||||
color: Color(0XFFB8382C),
|
|
||||||
fontWeight: FontWeight.w900,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
: Padding(
|
|
||||||
padding: EdgeInsets.all(14.0),
|
|
||||||
child: NetworkBaseView(
|
|
||||||
baseViewModel: model,
|
|
||||||
child: Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
InkWell(
|
|
||||||
child: Container(
|
|
||||||
height: 50.0,
|
|
||||||
width: 450.0,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.white,
|
|
||||||
border: Border.all(color: Colors.grey),
|
|
||||||
borderRadius: BorderRadius.circular(10.0),
|
|
||||||
),
|
|
||||||
child: Padding(
|
|
||||||
padding: EdgeInsets.all(8.0),
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
' Add more medication',
|
|
||||||
fontWeight: FontWeight.w100,
|
|
||||||
fontSize: 12.5,
|
|
||||||
),
|
|
||||||
Icon(
|
|
||||||
Icons.add,
|
|
||||||
color: Color(0XFFB8382C),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
onTap: () {
|
|
||||||
addPrescriptionForm(context, model, patient, model.prescriptionList);
|
|
||||||
//model.postPrescription();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 10.0,
|
|
||||||
),
|
|
||||||
...List.generate(
|
|
||||||
model.prescriptionList[0].rowcount,
|
|
||||||
(index) => Container(
|
|
||||||
color: Colors.white,
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
SizedBox(
|
|
||||||
height: MediaQuery.of(context).size.height * 0.022,
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
// crossAxisAlignment:
|
|
||||||
// CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
color: Colors.white,
|
|
||||||
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(
|
|
||||||
AppDateUtils.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(
|
|
||||||
AppDateUtils.getTimeFormated(DateTime.parse(model
|
|
||||||
.prescriptionList[0].entityList[index].createdOn))
|
|
||||||
.toString(),
|
|
||||||
color: Colors.green,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
color: Colors.white,
|
|
||||||
// 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(
|
|
||||||
AppDateUtils.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(
|
|
||||||
color: Colors.white,
|
|
||||||
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(
|
|
||||||
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(
|
|
||||||
color: Colors.white,
|
|
||||||
// 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,
|
|
||||||
// ),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
color: Colors.white,
|
|
||||||
height: MediaQuery.of(context).size.height * 0.16,
|
|
||||||
width: MediaQuery.of(context).size.width * 0.06,
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
InkWell(
|
|
||||||
child: Icon(Icons.edit),
|
|
||||||
onTap: () {
|
|
||||||
updatePrescriptionForm(
|
|
||||||
box: model
|
|
||||||
.prescriptionList[0].entityList[index].quantity,
|
|
||||||
uom: model.prescriptionList[0].entityList[index].uom,
|
|
||||||
drugNameGeneric: model.prescriptionList[0]
|
|
||||||
.entityList[index].medicationName,
|
|
||||||
doseUnit: model.prescriptionList[0].entityList[index]
|
|
||||||
.doseDailyUnitID
|
|
||||||
.toString(),
|
|
||||||
doseStreangth: model.prescriptionList[0]
|
|
||||||
.entityList[index].doseDailyQuantity
|
|
||||||
.toString(),
|
|
||||||
duration: model.prescriptionList[0].entityList[index]
|
|
||||||
.doseDurationDays
|
|
||||||
.toString(),
|
|
||||||
startDate: model
|
|
||||||
.prescriptionList[0].entityList[index].startDate
|
|
||||||
.toString(),
|
|
||||||
dose: model.prescriptionList[0].entityList[index].doseTimingID
|
|
||||||
.toString(),
|
|
||||||
frequency: model
|
|
||||||
.prescriptionList[0].entityList[index].frequencyID
|
|
||||||
.toString(),
|
|
||||||
rouat: model.prescriptionList[0].entityList[index].routeID
|
|
||||||
.toString(),
|
|
||||||
patient: patient,
|
|
||||||
drugId: model.prescriptionList[0].entityList[index].medicineCode,
|
|
||||||
drugName: model.prescriptionList[0].entityList[index].medicationName,
|
|
||||||
remarks: model.prescriptionList[0].entityList[index].remarks,
|
|
||||||
model: model,
|
|
||||||
enteredRemarks: model.prescriptionList[0].entityList[index].remarks,
|
|
||||||
context: context);
|
|
||||||
//model.postPrescription();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Divider(
|
|
||||||
height: 0,
|
|
||||||
thickness: 1.0,
|
|
||||||
color: Colors.grey,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
: Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
||||||
children: [
|
|
||||||
InkWell(
|
|
||||||
onTap: () {
|
|
||||||
addPrescriptionForm(context, model, patient, model.prescriptionList);
|
|
||||||
//model.postPrescription();
|
|
||||||
},
|
|
||||||
child: CircleAvatar(
|
|
||||||
radius: 65,
|
|
||||||
backgroundColor: Color(0XFFB8382C),
|
|
||||||
child: CircleAvatar(
|
|
||||||
radius: 60,
|
|
||||||
backgroundColor: Colors.white,
|
|
||||||
child: Icon(
|
|
||||||
Icons.add,
|
|
||||||
color: Colors.black,
|
|
||||||
size: 45.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 15.0,
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).noPrescriptionListed,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.w900,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).addNow,
|
|
||||||
color: Color(0XFFB8382C),
|
|
||||||
fontWeight: FontWeight.w900,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
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,516 +0,0 @@
|
|||||||
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/util/date-utils.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';
|
|
||||||
|
|
||||||
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(
|
|
||||||
color: Colors.white,
|
|
||||||
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(
|
|
||||||
color: Colors.white,
|
|
||||||
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(
|
|
||||||
AppDateUtils.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(
|
|
||||||
AppDateUtils.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(
|
|
||||||
AppDateUtils.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,349 +0,0 @@
|
|||||||
import 'package:doctor_app_flutter/config/config.dart';
|
|
||||||
import 'package:doctor_app_flutter/config/size_config.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/patient/patiant_info_model.dart';
|
|
||||||
import 'package:doctor_app_flutter/util/date-utils.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/shared/app_texts_widget.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:hexcolor/hexcolor.dart';
|
|
||||||
import 'package:provider/provider.dart';
|
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
|
||||||
|
|
||||||
class GeneralLabResultHeader extends StatelessWidget
|
|
||||||
with PreferredSizeWidget {
|
|
||||||
final PatiantInformtion patient;
|
|
||||||
final String patientType;
|
|
||||||
final String arrivalType;
|
|
||||||
final String doctorName;
|
|
||||||
final String branch;
|
|
||||||
final DateTime appointmentDate;
|
|
||||||
final String profileUrl;
|
|
||||||
final String invoiceNO;
|
|
||||||
final String orderNo;
|
|
||||||
final bool isPrescriptions;
|
|
||||||
final bool isMedicalFile;
|
|
||||||
final String episode;
|
|
||||||
final String vistDate;
|
|
||||||
|
|
||||||
final String clinic;
|
|
||||||
GeneralLabResultHeader(
|
|
||||||
{this.patient,
|
|
||||||
this.patientType,
|
|
||||||
this.arrivalType,
|
|
||||||
this.doctorName,
|
|
||||||
this.branch,
|
|
||||||
this.appointmentDate,
|
|
||||||
this.profileUrl,
|
|
||||||
this.invoiceNO,
|
|
||||||
this.orderNo,
|
|
||||||
this.isPrescriptions = false,
|
|
||||||
this.clinic,
|
|
||||||
this.isMedicalFile = false,
|
|
||||||
this.episode,
|
|
||||||
this.vistDate});
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
ProjectViewModel projectViewModel = Provider.of(context);
|
|
||||||
int gender = 1;
|
|
||||||
if (patient.patientDetails != null) {
|
|
||||||
gender = patient.patientDetails.gender;
|
|
||||||
} else {
|
|
||||||
gender = patient.gender;
|
|
||||||
}
|
|
||||||
|
|
||||||
return Container(
|
|
||||||
padding: EdgeInsets.only(left: 0, right: 5, bottom: 5, top: 5),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.white,
|
|
||||||
),
|
|
||||||
height: MediaQuery.of(context).size.height * 0.23,
|
|
||||||
child: Container(
|
|
||||||
padding: EdgeInsets.only(left: 10, right: 10, bottom: 10),
|
|
||||||
margin: EdgeInsets.only(top: 50),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Row(children: [
|
|
||||||
IconButton(
|
|
||||||
icon: Icon(Icons.arrow_back_ios),
|
|
||||||
color: Colors.black, //Colors.black,
|
|
||||||
onPressed: () => Navigator.pop(context),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
patient.firstName != null
|
|
||||||
? (Helpers.capitalize(patient.firstName) +
|
|
||||||
" " +
|
|
||||||
Helpers.capitalize(patient.lastName))
|
|
||||||
: Helpers.capitalize(patient.fullName??patient?.patientDetails?.fullName??""),
|
|
||||||
fontSize: SizeConfig.textMultiplier * 2.2,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
gender == 1
|
|
||||||
? Icon(
|
|
||||||
DoctorApp.male_2,
|
|
||||||
color: Colors.blue,
|
|
||||||
)
|
|
||||||
: Icon(
|
|
||||||
DoctorApp.female_1,
|
|
||||||
color: Colors.pink,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
margin: EdgeInsets.symmetric(horizontal: 4),
|
|
||||||
child: InkWell(
|
|
||||||
onTap: () {
|
|
||||||
launch("tel://" + patient?.mobileNumber??"");
|
|
||||||
},
|
|
||||||
child: Icon(
|
|
||||||
Icons.phone,
|
|
||||||
color: Colors.black87,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
Row(children: [
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Container(
|
|
||||||
width: 60,
|
|
||||||
height: 60,
|
|
||||||
child: Image.asset(
|
|
||||||
gender == 1
|
|
||||||
? 'assets/images/male_avatar.png'
|
|
||||||
: 'assets/images/female_avatar.png',
|
|
||||||
fit: BoxFit.cover,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 10,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
SERVICES_PATIANT2[int.parse(patientType)] ==
|
|
||||||
"patientArrivalList"
|
|
||||||
? Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
patient.patientStatusType == 43
|
|
||||||
? AppText(
|
|
||||||
TranslationBase.of(context).arrivedP,
|
|
||||||
color: Colors.green,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
TranslationBase.of(context).notArrived,
|
|
||||||
color: Colors.red[800],
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
arrivalType == '1' || patient.arrivedOn == null
|
|
||||||
? AppText(
|
|
||||||
patient.startTime != null
|
|
||||||
? patient.startTime
|
|
||||||
: '',
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
AppDateUtils.convertStringToDateFormat(
|
|
||||||
patient.arrivedOn,
|
|
||||||
'MM-dd-yyyy HH:mm'),
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
))
|
|
||||||
: SizedBox(),
|
|
||||||
if (SERVICES_PATIANT2[int.parse(patientType)] ==
|
|
||||||
"List_MyOutPatient")
|
|
||||||
Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).appointmentDate +
|
|
||||||
" : ",
|
|
||||||
fontSize: 14,
|
|
||||||
),
|
|
||||||
patient.startTime != null
|
|
||||||
? Container(
|
|
||||||
height: 15,
|
|
||||||
width: 60,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.circular(25),
|
|
||||||
color: HexColor("#20A169"),
|
|
||||||
),
|
|
||||||
child: AppText(
|
|
||||||
patient.startTime ?? "",
|
|
||||||
color: Colors.white,
|
|
||||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
|
||||||
textAlign: TextAlign.center,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
: SizedBox(),
|
|
||||||
SizedBox(
|
|
||||||
width: 3.5,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: AppText(
|
|
||||||
convertDateFormat2(
|
|
||||||
patient.appointmentDate.toString() ?? ''),
|
|
||||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 0.5,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
margin: EdgeInsets.only(
|
|
||||||
top: 8,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
RichText(
|
|
||||||
text: TextSpan(
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: TranslationBase.of(context).fileNumber,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14, fontFamily: 'Poppins')),
|
|
||||||
new TextSpan(
|
|
||||||
text: patient?.patientId?.toString() ?? "",
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
patient.nationalityName ??
|
|
||||||
patient.nationality ??
|
|
||||||
"",
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
patient.nationality != null
|
|
||||||
? ClipRRect(
|
|
||||||
borderRadius: BorderRadius.circular(20.0),
|
|
||||||
child: Image.network(
|
|
||||||
patient?.nationalityFlagURL??"",
|
|
||||||
height: 25,
|
|
||||||
width: 30,
|
|
||||||
errorBuilder: (BuildContext context,
|
|
||||||
Object exception,
|
|
||||||
StackTrace stackTrace) {
|
|
||||||
return Text('No Image');
|
|
||||||
},
|
|
||||||
))
|
|
||||||
: SizedBox()
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: RichText(
|
|
||||||
text: new TextSpan(
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: TranslationBase.of(context).age + " : ",
|
|
||||||
style: TextStyle(fontSize: 14)),
|
|
||||||
new TextSpan(
|
|
||||||
text:
|
|
||||||
"${AppDateUtils.getAgeByBirthday(patient.patientDetails != null ? patient.patientDetails.dateofBirth : patient.dateofBirth, context)}",
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700, fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: RichText(
|
|
||||||
text: new TextSpan(
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: "Result Date: ",
|
|
||||||
style: TextStyle(fontSize: 14)),
|
|
||||||
new TextSpan(
|
|
||||||
text:
|
|
||||||
'${AppDateUtils.getDayMonthYearDateFormatted(appointmentDate, isArabic: projectViewModel.isArabic)}',
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700, fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
convertDateFormat2(String str) {
|
|
||||||
String newDate = "";
|
|
||||||
const start = "/Date(";
|
|
||||||
const end = "+0300)";
|
|
||||||
|
|
||||||
if (str.isNotEmpty) {
|
|
||||||
final startIndex = str.indexOf(start);
|
|
||||||
final endIndex = str.indexOf(end, startIndex + start.length);
|
|
||||||
|
|
||||||
var date = new DateTime.fromMillisecondsSinceEpoch(
|
|
||||||
int.parse(str.substring(startIndex + start.length, endIndex)));
|
|
||||||
newDate = date.year.toString() +
|
|
||||||
"/" +
|
|
||||||
date.month.toString().padLeft(2, '0') +
|
|
||||||
"/" +
|
|
||||||
date.day.toString().padLeft(2, '0');
|
|
||||||
}
|
|
||||||
|
|
||||||
return newDate.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@override
|
|
||||||
Size get preferredSize => Size(double.maxFinite, 310);
|
|
||||||
}
|
|
||||||
@ -1,73 +0,0 @@
|
|||||||
import 'package:doctor_app_flutter/config/size_config.dart';
|
|
||||||
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
|
||||||
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
|
|
||||||
class PatientHeaderWidgetNoAvatar extends StatelessWidget {
|
|
||||||
final PatiantInformtion patient;
|
|
||||||
|
|
||||||
PatientHeaderWidgetNoAvatar(this.patient);
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
return Column(
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
margin: EdgeInsets.all(16),
|
|
||||||
child: Row(
|
|
||||||
children: [
|
|
||||||
Expanded(
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
patient.firstName + ' ' + patient.lastName,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: SizeConfig.textMultiplier * 2.2,
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
"VIP",
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: SizeConfig.textMultiplier * 2.2,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 8,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
" ${patient.age}",
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
fontSize: SizeConfig.textMultiplier * 2.0,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
patient.visitType ?? "",
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: SizeConfig.textMultiplier * 2.0,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
"${patient.companyName != null ? patient.companyName : ""}",
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: SizeConfig.textMultiplier * 2.0,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Icon(
|
|
||||||
Icons.info_outline,
|
|
||||||
color: Colors.black,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
width: double.infinity,
|
|
||||||
height: 1,
|
|
||||||
color: Color(0xffCCCCCC),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,114 +0,0 @@
|
|||||||
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/screens/patients/profile/profile_screen/patient_profile_screen.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 'package:provider/provider.dart';
|
|
||||||
|
|
||||||
class PatientPageHeaderWidget extends StatelessWidget {
|
|
||||||
|
|
||||||
final PatiantInformtion patient;
|
|
||||||
PatientPageHeaderWidget(this.patient);
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
ProjectViewModel projectViewModel = Provider.of(context);
|
|
||||||
|
|
||||||
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) => Container(
|
|
||||||
child: Column(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.all(8.0),
|
|
||||||
child: Row(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
children: <Widget>[
|
|
||||||
AvatarWidget(
|
|
||||||
Icon(
|
|
||||||
patient.genderDescription == "Male"
|
|
||||||
? DoctorApp.male
|
|
||||||
: DoctorApp.female_icon,
|
|
||||||
size: 70,
|
|
||||||
color: Colors.white,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 20,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
SizedBox(
|
|
||||||
height: 5,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
patient.patientDetails.fullName != null ? patient.patientDetails.fullName : patient.firstName,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).age ,
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 20,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
patient.age.toString(),
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.normal,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
model.patientAllergiesList.isNotEmpty && model.getAllergicNames(projectViewModel.isArabic)!='' ?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),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 20,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -0,0 +1,556 @@
|
|||||||
|
import 'package:doctor_app_flutter/config/size_config.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/patient/patiant_info_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/date-utils.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/shared/app_texts_widget.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
|
import 'large_avatar.dart';
|
||||||
|
|
||||||
|
class PatientProfileAppBar extends StatelessWidget
|
||||||
|
with PreferredSizeWidget {
|
||||||
|
final PatiantInformtion patient;
|
||||||
|
final double height;
|
||||||
|
final bool isInpatient;
|
||||||
|
final bool isDischargedPatient;
|
||||||
|
final bool isFromLiveCare;
|
||||||
|
|
||||||
|
final String doctorName;
|
||||||
|
final String branch;
|
||||||
|
final DateTime appointmentDate;
|
||||||
|
final String profileUrl;
|
||||||
|
final String invoiceNO;
|
||||||
|
final String orderNo;
|
||||||
|
final bool isPrescriptions;
|
||||||
|
final bool isMedicalFile;
|
||||||
|
final String episode;
|
||||||
|
final String visitDate;
|
||||||
|
final String clinic;
|
||||||
|
final bool isAppointmentHeader;
|
||||||
|
final bool isFromLabResult;
|
||||||
|
|
||||||
|
PatientProfileAppBar(
|
||||||
|
this.patient,
|
||||||
|
{this.height = 0.0,
|
||||||
|
this.isInpatient = false,
|
||||||
|
this.isDischargedPatient = false,
|
||||||
|
this.isFromLiveCare = false,
|
||||||
|
this.doctorName,
|
||||||
|
this.branch,
|
||||||
|
this.appointmentDate,
|
||||||
|
this.profileUrl,
|
||||||
|
this.invoiceNO,
|
||||||
|
this.orderNo,
|
||||||
|
this.isPrescriptions = false,
|
||||||
|
this.clinic,
|
||||||
|
this.isMedicalFile = false,
|
||||||
|
this.episode,
|
||||||
|
this.visitDate,
|
||||||
|
this.isAppointmentHeader = false,
|
||||||
|
this.isFromLabResult = false});
|
||||||
|
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
ProjectViewModel projectViewModel = Provider.of(context);
|
||||||
|
|
||||||
|
int gender = 1;
|
||||||
|
if (patient.patientDetails != null) {
|
||||||
|
gender = patient.patientDetails.gender;
|
||||||
|
} else {
|
||||||
|
gender = patient.gender;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Container(
|
||||||
|
padding: EdgeInsets.only(
|
||||||
|
left: 0,
|
||||||
|
right: 5,
|
||||||
|
bottom: 5,
|
||||||
|
),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
// height: height == 0
|
||||||
|
// ? isInpatient
|
||||||
|
// ? 215
|
||||||
|
// : isAppointmentHeader
|
||||||
|
// ? 325
|
||||||
|
// : 200
|
||||||
|
// : height,
|
||||||
|
child: Container(
|
||||||
|
padding: EdgeInsets.only(left: 10, right: 10, bottom: 10),
|
||||||
|
margin: EdgeInsets.only(top: 50),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
padding: EdgeInsets.only(left: 12.0),
|
||||||
|
child: Row(children: [
|
||||||
|
IconButton(
|
||||||
|
icon: Icon(Icons.arrow_back_ios),
|
||||||
|
color: Color(0xFF2B353E), //Colors.black,
|
||||||
|
onPressed: () => Navigator.pop(context),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: AppText(
|
||||||
|
patient.firstName != null
|
||||||
|
? (Helpers.capitalize(patient.firstName) +
|
||||||
|
" " +
|
||||||
|
Helpers.capitalize(patient.lastName))
|
||||||
|
: Helpers.capitalize(patient.fullName??patient.patientDetails.fullName),
|
||||||
|
fontSize: SizeConfig.textMultiplier * 1.8,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
color: Color(0xFF2B353E),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
gender == 1
|
||||||
|
? Icon(
|
||||||
|
DoctorApp.male_2,
|
||||||
|
color: Colors.blue,
|
||||||
|
)
|
||||||
|
: Icon(
|
||||||
|
DoctorApp.female_1,
|
||||||
|
color: Colors.pink,
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
margin: EdgeInsets.symmetric(horizontal: 4),
|
||||||
|
child: InkWell(
|
||||||
|
onTap: () {
|
||||||
|
launch("tel://" + patient.mobileNumber);
|
||||||
|
},
|
||||||
|
child: Icon(
|
||||||
|
Icons.phone,
|
||||||
|
color: Colors.black87,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
),
|
||||||
|
Row(children: [
|
||||||
|
Padding(
|
||||||
|
padding: EdgeInsets.only(left: 12.0),
|
||||||
|
child: Container(
|
||||||
|
width: 60,
|
||||||
|
height: 60,
|
||||||
|
child: Image.asset(
|
||||||
|
gender == 1
|
||||||
|
? 'assets/images/male_avatar.png'
|
||||||
|
: 'assets/images/female_avatar.png',
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 10,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
patient.patientStatusType != null
|
||||||
|
? Container(
|
||||||
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
patient.patientStatusType == 43
|
||||||
|
? AppText(
|
||||||
|
TranslationBase
|
||||||
|
.of(context)
|
||||||
|
.arrivedP,
|
||||||
|
color: Colors.green,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
fontSize: 12,
|
||||||
|
)
|
||||||
|
: AppText(
|
||||||
|
TranslationBase.of(context).notArrived,
|
||||||
|
color: Colors.red[800],
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
fontSize: 12,
|
||||||
|
),
|
||||||
|
patient.startTime != null
|
||||||
|
? AppText(
|
||||||
|
patient.startTime != null
|
||||||
|
? patient.startTime
|
||||||
|
: '',
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
fontSize: 12,
|
||||||
|
color: Color(0xFF2E303A))
|
||||||
|
: SizedBox()
|
||||||
|
],
|
||||||
|
))
|
||||||
|
: SizedBox(),
|
||||||
|
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
RichText(
|
||||||
|
text: TextSpan(
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 1.6 * SizeConfig.textMultiplier,
|
||||||
|
color: Colors.black),
|
||||||
|
children: <TextSpan>[
|
||||||
|
new TextSpan(
|
||||||
|
text: TranslationBase
|
||||||
|
.of(context)
|
||||||
|
.fileNumber,
|
||||||
|
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 10,
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
color: Color(0xFF575757),
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
|
||||||
|
),),
|
||||||
|
new TextSpan(
|
||||||
|
text: patient.patientId.toString(),
|
||||||
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
fontSize: 12, color: Color(0xFF2E303A),)),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
patient.nationalityName ?? patient.nationality?? patient.nationalityId ?? '',
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 12,
|
||||||
|
),
|
||||||
|
patient.nationalityFlagURL != null
|
||||||
|
? ClipRRect(
|
||||||
|
borderRadius: BorderRadius.circular(20.0),
|
||||||
|
child: Image.network(
|
||||||
|
patient.nationalityFlagURL,
|
||||||
|
height: 25,
|
||||||
|
width: 30,
|
||||||
|
errorBuilder: (BuildContext context,
|
||||||
|
Object exception,
|
||||||
|
StackTrace stackTrace) {
|
||||||
|
return Text('No Image');
|
||||||
|
},
|
||||||
|
))
|
||||||
|
: SizedBox()
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
child: RichText(
|
||||||
|
text: new TextSpan(
|
||||||
|
style: new TextStyle(
|
||||||
|
fontSize: 1.6 * SizeConfig.textMultiplier,
|
||||||
|
color: Colors.black,
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
),
|
||||||
|
children: <TextSpan>[
|
||||||
|
new TextSpan(
|
||||||
|
text: TranslationBase
|
||||||
|
.of(context)
|
||||||
|
.age + " : ",
|
||||||
|
style: TextStyle(fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757),)),
|
||||||
|
new TextSpan(
|
||||||
|
text:
|
||||||
|
"${AppDateUtils.getAgeByBirthday(
|
||||||
|
patient.patientDetails != null
|
||||||
|
? patient.patientDetails.dateofBirth ??
|
||||||
|
""
|
||||||
|
: patient.dateofBirth ?? "", context,
|
||||||
|
isServerFormat: !isFromLiveCare)}",
|
||||||
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
fontSize: 12,
|
||||||
|
color: Color(0xFF2E303A),)),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
|
||||||
|
if ( patient.appointmentDate != null && patient.appointmentDate.isNotEmpty)
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
children: <Widget>[
|
||||||
|
AppText(
|
||||||
|
TranslationBase.of(context).appointmentDate +
|
||||||
|
" : ",
|
||||||
|
fontSize: 10,
|
||||||
|
color: Color(0xFF575757),
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
width: 3.5,
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
AppDateUtils
|
||||||
|
.getDayMonthYearDateFormatted(
|
||||||
|
AppDateUtils.convertStringToDate(
|
||||||
|
patient.appointmentDate))
|
||||||
|
,
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
fontSize: 12,
|
||||||
|
color: Color(0xFF2E303A),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 0.5,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if(isFromLabResult)Container(
|
||||||
|
child: RichText(
|
||||||
|
text: new TextSpan(
|
||||||
|
style: new TextStyle(
|
||||||
|
fontSize: 1.6 * SizeConfig.textMultiplier,
|
||||||
|
color: Colors.black,
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
),
|
||||||
|
children: <TextSpan>[
|
||||||
|
new TextSpan(
|
||||||
|
text: "Result Date: ",
|
||||||
|
style: TextStyle( fontSize: 10,
|
||||||
|
color: Color(0xFF575757),
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
fontFamily: 'Poppins',)),
|
||||||
|
new TextSpan(
|
||||||
|
text:
|
||||||
|
'${AppDateUtils.getDayMonthYearDateFormatted(appointmentDate, isArabic: projectViewModel.isArabic)}',
|
||||||
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.w700, fontSize: 12)),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
// if(isInpatient)
|
||||||
|
Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
if(patient.admissionDate != null && patient.admissionDate.isNotEmpty)
|
||||||
|
Container(
|
||||||
|
child: RichText(
|
||||||
|
text: new TextSpan(
|
||||||
|
style: new TextStyle(
|
||||||
|
fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757),
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
),
|
||||||
|
children: <TextSpan>[
|
||||||
|
new TextSpan(
|
||||||
|
text: patient.admissionDate == null
|
||||||
|
? ""
|
||||||
|
: TranslationBase.of(context)
|
||||||
|
.admissionDate +
|
||||||
|
" : ",
|
||||||
|
style: TextStyle(fontSize: 10)),
|
||||||
|
new TextSpan(
|
||||||
|
text: patient.admissionDate == null
|
||||||
|
? ""
|
||||||
|
: "${AppDateUtils
|
||||||
|
.getDayMonthYearDateFormatted(
|
||||||
|
(AppDateUtils
|
||||||
|
.getDateTimeFromServerFormat(
|
||||||
|
patient.admissionDate
|
||||||
|
.toString())))}",
|
||||||
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
fontSize: 12,
|
||||||
|
color: Color(0xFF2E303A),)),
|
||||||
|
]))),
|
||||||
|
if (patient.admissionDate != null)
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
"${TranslationBase.of(context).numOfDays}: ",
|
||||||
|
fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757)
|
||||||
|
),
|
||||||
|
if(isDischargedPatient &&
|
||||||
|
patient.dischargeDate != null)
|
||||||
|
AppText(
|
||||||
|
"${AppDateUtils
|
||||||
|
.getDateTimeFromServerFormat(
|
||||||
|
patient.dischargeDate)
|
||||||
|
.difference(AppDateUtils
|
||||||
|
.getDateTimeFromServerFormat(
|
||||||
|
patient.admissionDate))
|
||||||
|
.inDays + 1}",
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
fontSize: 12,
|
||||||
|
color: Color(0xFF2E303A),
|
||||||
|
)
|
||||||
|
else
|
||||||
|
AppText(
|
||||||
|
"${DateTime
|
||||||
|
.now()
|
||||||
|
.difference(AppDateUtils
|
||||||
|
.getDateTimeFromServerFormat(
|
||||||
|
patient.admissionDate))
|
||||||
|
.inDays + 1}",
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
fontSize: 12,
|
||||||
|
color: Color(0xFF2E303A),),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
if(isAppointmentHeader)
|
||||||
|
Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
width: 30,
|
||||||
|
height: 30,
|
||||||
|
margin: EdgeInsets.only(
|
||||||
|
left: projectViewModel.isArabic ? 10 : 85,
|
||||||
|
right: projectViewModel.isArabic ? 85 : 10,
|
||||||
|
top: 5),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
shape: BoxShape.rectangle,
|
||||||
|
border: Border(
|
||||||
|
bottom: BorderSide(
|
||||||
|
color: Colors.grey[400], width: 2.5),
|
||||||
|
left: BorderSide(
|
||||||
|
color: Colors.grey[400], width: 2.5),
|
||||||
|
)),
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Container(
|
||||||
|
margin: EdgeInsets.only(top: 10),
|
||||||
|
child: Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: <Widget>[
|
||||||
|
Container(
|
||||||
|
child: LargeAvatar(
|
||||||
|
name: doctorName ?? "",
|
||||||
|
url: profileUrl,
|
||||||
|
),
|
||||||
|
width: 25,
|
||||||
|
height: 25,
|
||||||
|
margin: EdgeInsets.only(top: 10),
|
||||||
|
),
|
||||||
|
|
||||||
|
|
||||||
|
Expanded(
|
||||||
|
flex: 5,
|
||||||
|
child: Container(
|
||||||
|
margin: EdgeInsets.all(10),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment
|
||||||
|
.start,
|
||||||
|
children: <Widget>[
|
||||||
|
AppText(
|
||||||
|
'${TranslationBase
|
||||||
|
.of(context)
|
||||||
|
.dr}$doctorName',
|
||||||
|
color: Color(0xFF2E303A),
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
fontSize: 12,
|
||||||
|
),
|
||||||
|
if (orderNo != null &&
|
||||||
|
!isPrescriptions)
|
||||||
|
Row(
|
||||||
|
children: <Widget>[
|
||||||
|
AppText('Order No: ',
|
||||||
|
|
||||||
|
fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
||||||
|
AppText(orderNo ?? '',
|
||||||
|
fontSize: 12)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (invoiceNO != null &&
|
||||||
|
!isPrescriptions)
|
||||||
|
Row(
|
||||||
|
children: <Widget>[
|
||||||
|
AppText('Invoice: ',
|
||||||
|
fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
||||||
|
AppText(invoiceNO ?? "",
|
||||||
|
fontSize: 12)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (branch != null)
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText('Branch: ',
|
||||||
|
fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
||||||
|
AppText(branch ?? '',
|
||||||
|
fontSize: 12)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
|
||||||
|
if (clinic != null)
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText('Clinic: ',
|
||||||
|
fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
||||||
|
AppText(clinic ?? '',
|
||||||
|
fontSize: 12)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (isMedicalFile &&
|
||||||
|
episode != null)
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText('Episode: ',
|
||||||
|
fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
||||||
|
AppText(episode ?? '',
|
||||||
|
fontSize: 12)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (isMedicalFile &&
|
||||||
|
visitDate != null)
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText('Visit Date: ',
|
||||||
|
fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757),),
|
||||||
|
AppText(visitDate ?? '',
|
||||||
|
fontSize: 12)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (!isMedicalFile)
|
||||||
|
Row(
|
||||||
|
|
||||||
|
children: <Widget>[
|
||||||
|
AppText(
|
||||||
|
!isPrescriptions
|
||||||
|
? 'Result Date:'
|
||||||
|
: 'Prescriptions Date ',
|
||||||
|
fontSize: 10, fontWeight: FontWeight.w600,color: Color(0xFF575757),
|
||||||
|
),
|
||||||
|
AppText(
|
||||||
|
'${AppDateUtils
|
||||||
|
.getDayMonthYearDateFormatted(
|
||||||
|
appointmentDate,
|
||||||
|
isArabic: projectViewModel
|
||||||
|
.isArabic)}',
|
||||||
|
fontSize: 12,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
)
|
||||||
|
]),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
@override
|
||||||
|
Size get preferredSize =>
|
||||||
|
Size(double.maxFinite, height == 0
|
||||||
|
? isInpatient ? 160 : isAppointmentHeader ? 290 : 170
|
||||||
|
: height);
|
||||||
|
}
|
||||||
@ -1,371 +0,0 @@
|
|||||||
import 'package:doctor_app_flutter/config/config.dart';
|
|
||||||
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/helpers.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 'package:hexcolor/hexcolor.dart';
|
|
||||||
import 'package:intl/intl.dart';
|
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
|
||||||
|
|
||||||
class PatientProfileHeaderNewDesignAppBar extends StatelessWidget
|
|
||||||
with PreferredSizeWidget {
|
|
||||||
final PatiantInformtion patient;
|
|
||||||
final String patientType;
|
|
||||||
final String arrivalType;
|
|
||||||
final double height;
|
|
||||||
final bool isInpatient;
|
|
||||||
final bool isDischargedPatient;
|
|
||||||
final bool isFromLiveCare;
|
|
||||||
|
|
||||||
PatientProfileHeaderNewDesignAppBar(
|
|
||||||
this.patient, this.patientType, this.arrivalType, {this.height = 0.0, this.isInpatient=false, this.isDischargedPatient=false, this.isFromLiveCare = false});
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
int gender = 1;
|
|
||||||
if (patient.patientDetails != null) {
|
|
||||||
gender = patient.patientDetails.gender;
|
|
||||||
} else {
|
|
||||||
gender = patient.gender;
|
|
||||||
}
|
|
||||||
return Container(
|
|
||||||
padding: EdgeInsets.only(
|
|
||||||
left: 0,
|
|
||||||
right: 5,
|
|
||||||
bottom: 5,
|
|
||||||
),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.white,
|
|
||||||
),
|
|
||||||
height: height == 0 ? isInpatient? 215:200 : height,
|
|
||||||
child: Container(
|
|
||||||
padding: EdgeInsets.only(left: 10, right: 10, bottom: 10),
|
|
||||||
margin: EdgeInsets.only(top: 50),
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Row(children: [
|
|
||||||
IconButton(
|
|
||||||
icon: Icon(Icons.arrow_back_ios),
|
|
||||||
color: Colors.black, //Colors.black,
|
|
||||||
onPressed: () => Navigator.pop(context),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
patient.firstName != null
|
|
||||||
? (Helpers.capitalize(patient.firstName) +
|
|
||||||
" " +
|
|
||||||
Helpers.capitalize(patient.lastName))
|
|
||||||
: Helpers.capitalize(patient.fullName??patient.patientDetails.fullName),
|
|
||||||
fontSize: SizeConfig.textMultiplier * 1.8,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
gender == 1
|
|
||||||
? Icon(
|
|
||||||
DoctorApp.male_2,
|
|
||||||
color: Colors.blue,
|
|
||||||
)
|
|
||||||
: Icon(
|
|
||||||
DoctorApp.female_1,
|
|
||||||
color: Colors.pink,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
margin: EdgeInsets.symmetric(horizontal: 4),
|
|
||||||
child: InkWell(
|
|
||||||
onTap: () {
|
|
||||||
launch("tel://" + patient.mobileNumber);
|
|
||||||
},
|
|
||||||
child: Icon(
|
|
||||||
Icons.phone,
|
|
||||||
color: Colors.black87,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
Row(children: [
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Container(
|
|
||||||
width: 60,
|
|
||||||
height: 60,
|
|
||||||
child: Image.asset(
|
|
||||||
gender == 1
|
|
||||||
? 'assets/images/male_avatar.png'
|
|
||||||
: 'assets/images/female_avatar.png',
|
|
||||||
fit: BoxFit.cover,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 10,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
SERVICES_PATIANT2[int.parse(patientType)] ==
|
|
||||||
"patientArrivalList"
|
|
||||||
? Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
patient.patientStatusType == 43
|
|
||||||
? AppText(
|
|
||||||
TranslationBase.of(context).arrivedP,
|
|
||||||
color: Colors.green,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
TranslationBase.of(context).notArrived,
|
|
||||||
color: Colors.red[800],
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
arrivalType == '1'|| patient.arrivedOn == null
|
|
||||||
? AppText(
|
|
||||||
patient.startTime != null
|
|
||||||
? patient.startTime
|
|
||||||
: '',
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
patient.arrivedOn != null
|
|
||||||
? AppDateUtils.convertStringToDateFormat(
|
|
||||||
patient.arrivedOn,
|
|
||||||
'MM-dd-yyyy HH:mm')
|
|
||||||
: '',
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
))
|
|
||||||
: SizedBox(),
|
|
||||||
if (SERVICES_PATIANT2[int.parse(patientType)] ==
|
|
||||||
"List_MyOutPatient" && !isFromLiveCare)
|
|
||||||
Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).appointmentDate +
|
|
||||||
" : ",
|
|
||||||
fontSize: 14,
|
|
||||||
),
|
|
||||||
patient.startTime != null
|
|
||||||
? Container(
|
|
||||||
height: 15,
|
|
||||||
width: 60,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.circular(25),
|
|
||||||
color: HexColor("#20A169"),
|
|
||||||
),
|
|
||||||
child: AppText(
|
|
||||||
patient.startTime??"",
|
|
||||||
color: Colors.white,
|
|
||||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
|
||||||
textAlign: TextAlign.center,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
: SizedBox(),
|
|
||||||
SizedBox(
|
|
||||||
width: 3.5,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: AppText(
|
|
||||||
convertDateFormat2(
|
|
||||||
patient.appointmentDate ?? ''),
|
|
||||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 0.5,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
margin: EdgeInsets.only(
|
|
||||||
top: 8,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
RichText(
|
|
||||||
text: TextSpan(
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: TranslationBase.of(context).fileNumber,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 12, fontFamily: 'Poppins')),
|
|
||||||
new TextSpan(
|
|
||||||
text: patient.patientId.toString(),
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
patient.nationalityName ?? patient.nationality?? patient.nationalityId ?? '',
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
patient.nationalityFlagURL != null
|
|
||||||
? ClipRRect(
|
|
||||||
borderRadius: BorderRadius.circular(20.0),
|
|
||||||
child: Image.network(
|
|
||||||
patient.nationalityFlagURL,
|
|
||||||
height: 25,
|
|
||||||
width: 30,
|
|
||||||
errorBuilder: (BuildContext context,
|
|
||||||
Object exception,
|
|
||||||
StackTrace stackTrace) {
|
|
||||||
return Text('No Image');
|
|
||||||
},
|
|
||||||
))
|
|
||||||
: SizedBox()
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: RichText(
|
|
||||||
text: new TextSpan(
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: TranslationBase.of(context).age+ " : ",
|
|
||||||
style: TextStyle(fontSize: 14)),
|
|
||||||
new TextSpan(
|
|
||||||
text:
|
|
||||||
"${AppDateUtils.getAgeByBirthday(patient.patientDetails != null ? patient.patientDetails.dateofBirth??"" : patient.dateofBirth??"", context,isServerFormat: !isFromLiveCare)}",
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700, fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
if(isInpatient)
|
|
||||||
Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
child: RichText(
|
|
||||||
text: new TextSpan(
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize:
|
|
||||||
2.0 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: patient.admissionDate == null
|
|
||||||
? ""
|
|
||||||
: TranslationBase.of(context)
|
|
||||||
.admissionDate +
|
|
||||||
" : ",
|
|
||||||
style: TextStyle(fontSize: 14)),
|
|
||||||
new TextSpan(
|
|
||||||
text: patient.admissionDate == null
|
|
||||||
? ""
|
|
||||||
: "${AppDateUtils.convertDateFromServerFormat(patient.admissionDate.toString(), 'yyyy-MM-dd')}",
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700,
|
|
||||||
fontSize: 15)),
|
|
||||||
]))),
|
|
||||||
if (patient.admissionDate != null)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
"${TranslationBase.of(context).numOfDays}: ",
|
|
||||||
fontSize: 15,
|
|
||||||
),
|
|
||||||
if(isDischargedPatient && patient.dischargeDate!=null)
|
|
||||||
AppText(
|
|
||||||
"${AppDateUtils.getDateTimeFromServerFormat(patient.dischargeDate).difference(AppDateUtils.getDateTimeFromServerFormat(patient.admissionDate)).inDays + 1}",
|
|
||||||
fontSize: 15,
|
|
||||||
fontWeight: FontWeight.w700)
|
|
||||||
else
|
|
||||||
AppText(
|
|
||||||
"${DateTime.now().difference(AppDateUtils.getDateTimeFromServerFormat(patient.admissionDate)).inDays + 1}",
|
|
||||||
fontSize: 15,
|
|
||||||
fontWeight: FontWeight.w700),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
convertDateFormat2(String str) {
|
|
||||||
String newDate;
|
|
||||||
const start = "/Date(";
|
|
||||||
if (str.isNotEmpty) {
|
|
||||||
const end = "+0300)";
|
|
||||||
|
|
||||||
final startIndex = str.indexOf(start);
|
|
||||||
final endIndex = str.indexOf(end, startIndex + start.length);
|
|
||||||
|
|
||||||
var date = new DateTime.fromMillisecondsSinceEpoch(
|
|
||||||
int.parse(str.substring(startIndex + start.length, endIndex)));
|
|
||||||
newDate = date.year.toString() +
|
|
||||||
"/" +
|
|
||||||
date.month.toString().padLeft(2, '0') +
|
|
||||||
"/" +
|
|
||||||
date.day.toString().padLeft(2, '0');
|
|
||||||
}
|
|
||||||
|
|
||||||
return newDate??'';
|
|
||||||
}
|
|
||||||
|
|
||||||
isToday(date) {
|
|
||||||
DateTime tempDate = new DateFormat("yyyy-MM-dd").parse(date);
|
|
||||||
return DateFormat("yyyy-MM-dd").format(tempDate) ==
|
|
||||||
DateFormat("yyyy-MM-dd").format(DateTime.now());
|
|
||||||
}
|
|
||||||
|
|
||||||
myBoxDecoration() {
|
|
||||||
return BoxDecoration(
|
|
||||||
border: Border(
|
|
||||||
top: BorderSide(
|
|
||||||
color: Colors.green,
|
|
||||||
width: 5,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(10));
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Size get preferredSize => Size(double.maxFinite, 200);
|
|
||||||
}
|
|
||||||
@ -1,316 +0,0 @@
|
|||||||
import 'package:doctor_app_flutter/config/config.dart';
|
|
||||||
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/helpers.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 'package:hexcolor/hexcolor.dart';
|
|
||||||
import 'package:intl/intl.dart';
|
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
|
||||||
|
|
||||||
class PatientProfileHeaderNewDesign extends StatelessWidget {
|
|
||||||
final PatiantInformtion patient;
|
|
||||||
final String patientType;
|
|
||||||
final String arrivalType;
|
|
||||||
final double height;
|
|
||||||
final bool isHaveMargin;
|
|
||||||
|
|
||||||
PatientProfileHeaderNewDesign(
|
|
||||||
this.patient, this.patientType, this.arrivalType,
|
|
||||||
{this.height = 0.0, this.isHaveMargin=true});
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
int gender = 1;
|
|
||||||
if (patient.patientDetails != null) {
|
|
||||||
gender = patient.patientDetails.gender;
|
|
||||||
} else {
|
|
||||||
gender = patient.gender;
|
|
||||||
}
|
|
||||||
|
|
||||||
return Container(
|
|
||||||
padding: EdgeInsets.only(
|
|
||||||
left: 0,
|
|
||||||
right: 5,
|
|
||||||
bottom: 5,
|
|
||||||
),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.white,
|
|
||||||
),
|
|
||||||
height: height == 0 ? 200 : height,
|
|
||||||
child: Container(
|
|
||||||
padding: EdgeInsets.only(left: 10, right: 10, bottom: 10),
|
|
||||||
margin: EdgeInsets.only(top: 50),
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Row(children: [
|
|
||||||
IconButton(
|
|
||||||
icon: Icon(Icons.arrow_back_ios),
|
|
||||||
color: Colors.black, //Colors.black,
|
|
||||||
onPressed: () => Navigator.pop(context),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
patient.firstName != null
|
|
||||||
? (Helpers.capitalize(patient.firstName) +
|
|
||||||
" " +
|
|
||||||
Helpers.capitalize(patient.lastName))
|
|
||||||
: Helpers.capitalize(patient.patientDetails.fullName),
|
|
||||||
fontSize: SizeConfig.textMultiplier * 2.2,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
gender == 1
|
|
||||||
? Icon(
|
|
||||||
DoctorApp.male_2,
|
|
||||||
color: Colors.blue,
|
|
||||||
)
|
|
||||||
: Icon(
|
|
||||||
DoctorApp.female_1,
|
|
||||||
color: Colors.pink,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
margin: EdgeInsets.symmetric(horizontal: 4),
|
|
||||||
child: InkWell(
|
|
||||||
onTap: () {
|
|
||||||
launch("tel://" + patient.mobileNumber);
|
|
||||||
},
|
|
||||||
child: Icon(
|
|
||||||
Icons.phone,
|
|
||||||
color: Colors.black87,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
Row(children: [
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Container(
|
|
||||||
width: 60,
|
|
||||||
height: 60,
|
|
||||||
child: Image.asset(
|
|
||||||
gender == 1
|
|
||||||
? 'assets/images/male_avatar.png'
|
|
||||||
: 'assets/images/female_avatar.png',
|
|
||||||
fit: BoxFit.cover,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 10,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
SERVICES_PATIANT2[int.parse(patientType)] ==
|
|
||||||
"patientArrivalList"
|
|
||||||
? Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
patient.patientStatusType == 43
|
|
||||||
? AppText(
|
|
||||||
TranslationBase.of(context).arrivedP,
|
|
||||||
color: Colors.green,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
TranslationBase.of(context).notArrived,
|
|
||||||
color: Colors.red[800],
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
arrivalType == '1' || patient.arrivedOn == null
|
|
||||||
? AppText(
|
|
||||||
patient.startTime != null
|
|
||||||
? patient.startTime
|
|
||||||
: '',
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
AppDateUtils.getDayMonthYearDateFormatted(AppDateUtils.convertStringToDate(patient.arrivedOn)),
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
))
|
|
||||||
: SizedBox(),
|
|
||||||
if (SERVICES_PATIANT2[int.parse(patientType)] ==
|
|
||||||
"List_MyOutPatient")
|
|
||||||
Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).appointmentDate +
|
|
||||||
" : ",
|
|
||||||
fontSize: 14,
|
|
||||||
),
|
|
||||||
patient.startTime != null
|
|
||||||
? Container(
|
|
||||||
height: 15,
|
|
||||||
width: 60,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.circular(25),
|
|
||||||
color: HexColor("#20A169"),
|
|
||||||
),
|
|
||||||
child: AppText(
|
|
||||||
patient.startTime ?? "",
|
|
||||||
color: Colors.white,
|
|
||||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
|
||||||
textAlign: TextAlign.center,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
: SizedBox(),
|
|
||||||
SizedBox(
|
|
||||||
width: 3.5,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: AppText(
|
|
||||||
convertDateFormat2(
|
|
||||||
patient.appointmentDate.toString() ?? ''),
|
|
||||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 0.5,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
margin: EdgeInsets.only(
|
|
||||||
top: 8,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
RichText(
|
|
||||||
text: TextSpan(
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: TranslationBase.of(context).fileNumber,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 12, fontFamily: 'Poppins')),
|
|
||||||
new TextSpan(
|
|
||||||
text: patient.patientId.toString(),
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
patient.nationalityName ??
|
|
||||||
patient.nationality ??
|
|
||||||
patient.nationalityId ??
|
|
||||||
'',
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
patient.nationalityFlagURL != null
|
|
||||||
? ClipRRect(
|
|
||||||
borderRadius: BorderRadius.circular(20.0),
|
|
||||||
child: Image.network(
|
|
||||||
patient.nationalityFlagURL,
|
|
||||||
height: 25,
|
|
||||||
width: 30,
|
|
||||||
errorBuilder: (BuildContext context,
|
|
||||||
Object exception,
|
|
||||||
StackTrace stackTrace) {
|
|
||||||
return Text('No Image');
|
|
||||||
},
|
|
||||||
))
|
|
||||||
: SizedBox()
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: RichText(
|
|
||||||
text: new TextSpan(
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: TranslationBase.of(context).age + " : ",
|
|
||||||
style: TextStyle(fontSize: 14)),
|
|
||||||
new TextSpan(
|
|
||||||
text:
|
|
||||||
"${AppDateUtils.getAgeByBirthday(patient.patientDetails != null ? patient.patientDetails.dateofBirth ?? "" : patient.dateofBirth ?? "", context)}",
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700, fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
convertDateFormat2(String str) {
|
|
||||||
String newDate;
|
|
||||||
const start = "/Date(";
|
|
||||||
if (str.isNotEmpty) {
|
|
||||||
const end = "+0300)";
|
|
||||||
|
|
||||||
final startIndex = str.indexOf(start);
|
|
||||||
final endIndex = str.indexOf(end, startIndex + start.length);
|
|
||||||
|
|
||||||
var date = new DateTime.fromMillisecondsSinceEpoch(
|
|
||||||
int.parse(str.substring(startIndex + start.length, endIndex)));
|
|
||||||
newDate = date.year.toString() +
|
|
||||||
"/" +
|
|
||||||
date.month.toString().padLeft(2, '0') +
|
|
||||||
"/" +
|
|
||||||
date.day.toString().padLeft(2, '0');
|
|
||||||
}
|
|
||||||
|
|
||||||
return newDate.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
isToday(date) {
|
|
||||||
DateTime tempDate = new DateFormat("yyyy-MM-dd").parse(date);
|
|
||||||
return DateFormat("yyyy-MM-dd").format(tempDate) ==
|
|
||||||
DateFormat("yyyy-MM-dd").format(DateTime.now());
|
|
||||||
}
|
|
||||||
|
|
||||||
myBoxDecoration() {
|
|
||||||
return BoxDecoration(
|
|
||||||
border: Border(
|
|
||||||
top: BorderSide(
|
|
||||||
color: Colors.green,
|
|
||||||
width: 5,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(10));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,242 +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/helpers.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 'package:intl/intl.dart';
|
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
|
||||||
|
|
||||||
class PatientProfileHeaderNewDesignInPatient extends StatelessWidget {
|
|
||||||
final PatiantInformtion patient;
|
|
||||||
final String patientType;
|
|
||||||
final String arrivalType;
|
|
||||||
final double height;
|
|
||||||
|
|
||||||
PatientProfileHeaderNewDesignInPatient(
|
|
||||||
this.patient, this.patientType, this.arrivalType,
|
|
||||||
{this.height = 0.0});
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
int gender = 1;
|
|
||||||
if (patient.patientDetails != null) {
|
|
||||||
gender = patient.patientDetails.gender;
|
|
||||||
} else {
|
|
||||||
gender = patient.gender;
|
|
||||||
}
|
|
||||||
|
|
||||||
return Container(
|
|
||||||
padding: EdgeInsets.only(
|
|
||||||
left: 0,
|
|
||||||
right: 5,
|
|
||||||
bottom: 5,
|
|
||||||
),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.white,
|
|
||||||
),
|
|
||||||
height: height == 0 ? 200 : height,
|
|
||||||
child: Container(
|
|
||||||
padding: EdgeInsets.only(left: 10, right: 10, bottom: 10),
|
|
||||||
// margin: EdgeInsets.only(top: 50),
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Row(children: [
|
|
||||||
IconButton(
|
|
||||||
icon: Icon(Icons.arrow_back_ios),
|
|
||||||
color: Colors.black, //Colors.black,
|
|
||||||
onPressed: () => Navigator.pop(context),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
patient.firstName != null
|
|
||||||
? (Helpers.capitalize(patient.firstName) +
|
|
||||||
" " +
|
|
||||||
Helpers.capitalize(patient.lastName))
|
|
||||||
: Helpers.capitalize(patient.patientDetails.fullName),
|
|
||||||
fontSize: SizeConfig.textMultiplier * 2.2,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
gender == 1
|
|
||||||
? Icon(
|
|
||||||
DoctorApp.male_2,
|
|
||||||
color: Colors.blue,
|
|
||||||
)
|
|
||||||
: Icon(
|
|
||||||
DoctorApp.female_1,
|
|
||||||
color: Colors.pink,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
margin: EdgeInsets.symmetric(horizontal: 4),
|
|
||||||
child: InkWell(
|
|
||||||
onTap: () {
|
|
||||||
launch("tel://" + patient.mobileNumber);
|
|
||||||
},
|
|
||||||
child: Icon(
|
|
||||||
Icons.phone,
|
|
||||||
color: Colors.black87,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
Row(children: [
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Container(
|
|
||||||
width: 60,
|
|
||||||
height: 60,
|
|
||||||
child: Image.asset(
|
|
||||||
gender == 1
|
|
||||||
? 'assets/images/male_avatar.png'
|
|
||||||
: 'assets/images/female_avatar.png',
|
|
||||||
fit: BoxFit.cover,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 10,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).fileNumber,
|
|
||||||
fontSize: 1.2 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
AppText(patient.patientId.toString(),
|
|
||||||
fontSize: 1.4 * SizeConfig.textMultiplier,
|
|
||||||
fontWeight: FontWeight.w700),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if(patient.admissionDate!=null)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
AppDateUtils.convertDateFromServerFormat(
|
|
||||||
patient.admissionDate, "hh:mm a"),
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 1.4 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
if(patient.admissionDate!=null)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
"${TranslationBase.of(context).admissionDate}: ",
|
|
||||||
fontSize: 1.2 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
AppDateUtils.convertDateFromServerFormat(
|
|
||||||
patient.admissionDate, "dd MMM,yyyy"),
|
|
||||||
fontSize: 1.4 * SizeConfig.textMultiplier,
|
|
||||||
fontWeight: FontWeight.w700),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
patient.nationalityName ??
|
|
||||||
patient.nationality ??
|
|
||||||
patient.nationalityId ??
|
|
||||||
'',
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 1.4 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
patient.nationalityFlagURL != null
|
|
||||||
? ClipRRect(
|
|
||||||
borderRadius: BorderRadius.circular(20.0),
|
|
||||||
child: Image.network(
|
|
||||||
patient.nationalityFlagURL,
|
|
||||||
height: 25,
|
|
||||||
width: 30,
|
|
||||||
errorBuilder: (BuildContext context,
|
|
||||||
Object exception,
|
|
||||||
StackTrace stackTrace) {
|
|
||||||
return Text('No Image');
|
|
||||||
},
|
|
||||||
))
|
|
||||||
: SizedBox()
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if(patient.admissionDate!=null)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
"${TranslationBase.of(context).numOfDays}: ",
|
|
||||||
fontSize: 1.2 * SizeConfig.textMultiplier,
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
"${DateTime.now().difference(AppDateUtils.getDateTimeFromServerFormat(patient.admissionDate)).inDays + 1}",
|
|
||||||
fontSize: 1.4 * SizeConfig.textMultiplier,
|
|
||||||
fontWeight: FontWeight.w700),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
convertDateFormat2(String str) {
|
|
||||||
String newDate;
|
|
||||||
const start = "/Date(";
|
|
||||||
if (str.isNotEmpty) {
|
|
||||||
const end = "+0300)";
|
|
||||||
|
|
||||||
final startIndex = str.indexOf(start);
|
|
||||||
final endIndex = str.indexOf(end, startIndex + start.length);
|
|
||||||
|
|
||||||
var date = new DateTime.fromMillisecondsSinceEpoch(
|
|
||||||
int.parse(str.substring(startIndex + start.length, endIndex)));
|
|
||||||
newDate = date.year.toString() +
|
|
||||||
"/" +
|
|
||||||
date.month.toString().padLeft(2, '0') +
|
|
||||||
"/" +
|
|
||||||
date.day.toString().padLeft(2, '0');
|
|
||||||
}
|
|
||||||
|
|
||||||
return newDate.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
isToday(date) {
|
|
||||||
DateTime tempDate = new DateFormat("yyyy-MM-dd").parse(date);
|
|
||||||
return DateFormat("yyyy-MM-dd").format(tempDate) ==
|
|
||||||
DateFormat("yyyy-MM-dd").format(DateTime.now());
|
|
||||||
}
|
|
||||||
|
|
||||||
myBoxDecoration() {
|
|
||||||
return BoxDecoration(
|
|
||||||
border: Border(
|
|
||||||
top: BorderSide(
|
|
||||||
color: Colors.green,
|
|
||||||
width: 5,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(10));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,507 +0,0 @@
|
|||||||
import 'package:doctor_app_flutter/config/config.dart';
|
|
||||||
import 'package:doctor_app_flutter/config/size_config.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/patient/patiant_info_model.dart';
|
|
||||||
import 'package:doctor_app_flutter/util/date-utils.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/shared/app_texts_widget.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:hexcolor/hexcolor.dart';
|
|
||||||
import 'package:intl/intl.dart';
|
|
||||||
import 'package:provider/provider.dart';
|
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
|
||||||
|
|
||||||
import 'large_avatar.dart';
|
|
||||||
|
|
||||||
class PatientProfileHeaderWhitAppointment extends StatelessWidget {
|
|
||||||
|
|
||||||
final PatiantInformtion patient;
|
|
||||||
final String patientType;
|
|
||||||
final String arrivalType;
|
|
||||||
final String doctorName;
|
|
||||||
final String branch;
|
|
||||||
final DateTime appointmentDate;
|
|
||||||
final String profileUrl;
|
|
||||||
final String invoiceNO;
|
|
||||||
final String orderNo;
|
|
||||||
final bool isPrescriptions;
|
|
||||||
final String clinic;
|
|
||||||
PatientProfileHeaderWhitAppointment(
|
|
||||||
{this.patient,
|
|
||||||
this.patientType,
|
|
||||||
this.arrivalType,
|
|
||||||
this.doctorName,
|
|
||||||
this.branch,
|
|
||||||
this.appointmentDate,
|
|
||||||
this.profileUrl,
|
|
||||||
this.invoiceNO,
|
|
||||||
this.orderNo, this.isPrescriptions = false, this.clinic});
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
int gender = 1;
|
|
||||||
if (patient.patientDetails != null) {
|
|
||||||
gender = patient.patientDetails.gender;
|
|
||||||
} else {
|
|
||||||
gender = patient.gender;
|
|
||||||
}
|
|
||||||
|
|
||||||
ProjectViewModel projectViewModel = Provider.of(context);
|
|
||||||
return Container(
|
|
||||||
padding: EdgeInsets.only(
|
|
||||||
left: 0, right: 5, bottom: 5, top: 5),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.white,
|
|
||||||
),
|
|
||||||
//height: 300,
|
|
||||||
child: Container(
|
|
||||||
padding: EdgeInsets.only(left: 10, right: 10, bottom: 10),
|
|
||||||
margin: EdgeInsets.only(top: 50),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Row(children: [
|
|
||||||
IconButton(
|
|
||||||
icon: Icon(Icons.arrow_back_ios),
|
|
||||||
color: Colors.black, //Colors.black,
|
|
||||||
onPressed: () => Navigator.pop(context),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
patient.firstName != null ?
|
|
||||||
(Helpers.capitalize(patient.firstName) +
|
|
||||||
" " +
|
|
||||||
Helpers.capitalize(
|
|
||||||
patient.lastName)) : Helpers.capitalize(patient.patientDetails.fullName),
|
|
||||||
fontSize: SizeConfig.textMultiplier *2.2,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
gender == 1
|
|
||||||
? Icon(
|
|
||||||
DoctorApp.male_2,
|
|
||||||
color: Colors.blue,
|
|
||||||
)
|
|
||||||
: Icon(
|
|
||||||
DoctorApp.female_1,
|
|
||||||
color: Colors.pink,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
margin: EdgeInsets.symmetric(horizontal: 4),
|
|
||||||
child: InkWell(
|
|
||||||
onTap: () {
|
|
||||||
launch("tel://" + patient.mobileNumber);
|
|
||||||
},
|
|
||||||
child: Icon(
|
|
||||||
Icons.phone,
|
|
||||||
color: Colors.black87,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
Row(children: [
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Container(
|
|
||||||
width: 60,
|
|
||||||
height: 60,
|
|
||||||
child: Image.asset(
|
|
||||||
gender == 1
|
|
||||||
? 'assets/images/male_avatar.png'
|
|
||||||
: 'assets/images/female_avatar.png',
|
|
||||||
fit: BoxFit.cover,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 10,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment:
|
|
||||||
CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
SERVICES_PATIANT2[
|
|
||||||
int.parse(patientType)] ==
|
|
||||||
"patientArrivalList"
|
|
||||||
? Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment:
|
|
||||||
MainAxisAlignment
|
|
||||||
.spaceBetween,
|
|
||||||
children: [
|
|
||||||
patient.patientStatusType ==
|
|
||||||
43
|
|
||||||
? AppText(
|
|
||||||
TranslationBase.of(
|
|
||||||
context)
|
|
||||||
.arrivedP,
|
|
||||||
color: Colors.green,
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.bold,
|
|
||||||
fontFamily:
|
|
||||||
'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
TranslationBase.of(
|
|
||||||
context)
|
|
||||||
.notArrived,
|
|
||||||
color:
|
|
||||||
Colors.red[800],
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.bold,
|
|
||||||
fontFamily:
|
|
||||||
'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
arrivalType == '1' || patient.arrivedOn == null
|
|
||||||
? AppText(
|
|
||||||
patient.startTime !=
|
|
||||||
null
|
|
||||||
? patient
|
|
||||||
.startTime
|
|
||||||
: '',
|
|
||||||
fontFamily:
|
|
||||||
'Poppins',
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.w600,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
AppDateUtils.convertStringToDateFormat(
|
|
||||||
patient
|
|
||||||
.arrivedOn,
|
|
||||||
'MM-dd-yyyy HH:mm'),
|
|
||||||
fontFamily:
|
|
||||||
'Poppins',
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.w600,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
))
|
|
||||||
: SizedBox(),
|
|
||||||
if (SERVICES_PATIANT2[
|
|
||||||
int.parse(patientType)] ==
|
|
||||||
"List_MyOutPatient")
|
|
||||||
Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment:
|
|
||||||
MainAxisAlignment.start,
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context)
|
|
||||||
.appointmentDate +
|
|
||||||
" : ",
|
|
||||||
fontSize: 14,
|
|
||||||
),
|
|
||||||
patient.startTime != null
|
|
||||||
? Container(
|
|
||||||
height: 15,
|
|
||||||
width: 60,
|
|
||||||
decoration:
|
|
||||||
BoxDecoration(
|
|
||||||
borderRadius:
|
|
||||||
BorderRadius
|
|
||||||
.circular(
|
|
||||||
25),
|
|
||||||
color: HexColor(
|
|
||||||
"#20A169"),
|
|
||||||
),
|
|
||||||
child: AppText(
|
|
||||||
patient.startTime,
|
|
||||||
color: Colors.white,
|
|
||||||
fontSize: 1.5 *
|
|
||||||
SizeConfig
|
|
||||||
.textMultiplier,
|
|
||||||
textAlign: TextAlign
|
|
||||||
.center,
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.bold,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
: SizedBox(),
|
|
||||||
SizedBox(
|
|
||||||
width: 3.5,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: AppText(
|
|
||||||
convertDateFormat2(patient.appointmentDate.toString()?? ''),
|
|
||||||
fontSize: 1.5 *
|
|
||||||
SizeConfig
|
|
||||||
.textMultiplier,
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 0.5,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
margin: EdgeInsets.only(
|
|
||||||
top: 8,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment:
|
|
||||||
MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
RichText(
|
|
||||||
text: TextSpan(
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig
|
|
||||||
.textMultiplier,
|
|
||||||
color: Colors.black),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text:
|
|
||||||
TranslationBase.of(
|
|
||||||
context)
|
|
||||||
.fileNumber,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 12,
|
|
||||||
fontFamily:
|
|
||||||
'Poppins')),
|
|
||||||
new TextSpan(
|
|
||||||
text: patient.patientId
|
|
||||||
.toString(),
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.w700,
|
|
||||||
fontFamily:
|
|
||||||
'Poppins',
|
|
||||||
fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
patient.nationalityName ??
|
|
||||||
patient.nationality??"",
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
patient.nationality != null
|
|
||||||
? ClipRRect(
|
|
||||||
borderRadius:
|
|
||||||
BorderRadius
|
|
||||||
.circular(
|
|
||||||
20.0),
|
|
||||||
child: Image.network(
|
|
||||||
patient.nationalityFlagURL,
|
|
||||||
height: 25,
|
|
||||||
width: 30,
|
|
||||||
errorBuilder:
|
|
||||||
(BuildContext
|
|
||||||
context,
|
|
||||||
Object
|
|
||||||
exception,
|
|
||||||
StackTrace
|
|
||||||
stackTrace) {
|
|
||||||
return Text(
|
|
||||||
'No Image');
|
|
||||||
},
|
|
||||||
))
|
|
||||||
: SizedBox()
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: RichText(
|
|
||||||
text: new TextSpan(
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize: 1.6 *
|
|
||||||
SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: TranslationBase.of(
|
|
||||||
context)
|
|
||||||
.age +
|
|
||||||
" : ",
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 14)),
|
|
||||||
new TextSpan(
|
|
||||||
text:
|
|
||||||
"${AppDateUtils.getAgeByBirthday(patient.patientDetails != null ? patient.patientDetails.dateofBirth ??"": patient.dateofBirth??"", context)}",
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight:
|
|
||||||
FontWeight.w700,
|
|
||||||
fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
Row(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
width: 30,
|
|
||||||
height: 30,
|
|
||||||
margin: EdgeInsets.only(left: projectViewModel.isArabic?10:85, right: projectViewModel.isArabic?85:10,top: 5),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
shape: BoxShape.rectangle,
|
|
||||||
border: Border(
|
|
||||||
bottom:BorderSide(color: Colors.grey[400],width: 2.5),
|
|
||||||
left: BorderSide(color: Colors.grey[400],width: 2.5),
|
|
||||||
)
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Container(
|
|
||||||
margin: EdgeInsets.only(top: 10),
|
|
||||||
child: Row(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: <Widget>[
|
|
||||||
Container(
|
|
||||||
child: LargeAvatar(
|
|
||||||
name: doctorName,
|
|
||||||
url: profileUrl,
|
|
||||||
),
|
|
||||||
width: 25,
|
|
||||||
height: 25,
|
|
||||||
margin: EdgeInsets.only(top: 10),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
flex: 4,
|
|
||||||
child: Container(
|
|
||||||
margin: EdgeInsets.all(10),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
'${TranslationBase.of(context).dr}.$doctorName',
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
fontSize: 14,
|
|
||||||
),
|
|
||||||
if (orderNo != null && !isPrescriptions)
|
|
||||||
Row(
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
'Order No:',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
orderNo ?? '',
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if (invoiceNO != null && !isPrescriptions)
|
|
||||||
Row(
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
'Invoice:',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
invoiceNO,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if(isPrescriptions)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
'Branch:',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
branch?? '',
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if(isPrescriptions)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
'Clinic:',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
clinic?? '',
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
!isPrescriptions? 'Result Date:': 'Prescriptions Date',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
'${AppDateUtils.getDayMonthYearDateFormatted(appointmentDate, isArabic: projectViewModel.isArabic)}',
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
)
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
convertDateFormat2(String str) {
|
|
||||||
String newDate ="";
|
|
||||||
const start = "/Date(";
|
|
||||||
const end = "+0300)";
|
|
||||||
|
|
||||||
if (str.isNotEmpty) {
|
|
||||||
final startIndex = str.indexOf(start);
|
|
||||||
final endIndex = str.indexOf(end, startIndex + start.length);
|
|
||||||
|
|
||||||
var date = new DateTime.fromMillisecondsSinceEpoch(
|
|
||||||
int.parse(str.substring(startIndex + start.length, endIndex)));
|
|
||||||
newDate = date.year.toString() +
|
|
||||||
"/" +
|
|
||||||
date.month.toString().padLeft(2, '0') +
|
|
||||||
"/" +
|
|
||||||
date.day.toString().padLeft(2, '0');
|
|
||||||
}
|
|
||||||
|
|
||||||
return newDate.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
isToday(date) {
|
|
||||||
DateTime tempDate = new DateFormat("yyyy-MM-dd").parse(date);
|
|
||||||
return DateFormat("yyyy-MM-dd").format(tempDate) ==
|
|
||||||
DateFormat("yyyy-MM-dd").format(DateTime.now());
|
|
||||||
}
|
|
||||||
|
|
||||||
myBoxDecoration() {
|
|
||||||
return BoxDecoration(
|
|
||||||
border: Border(
|
|
||||||
top: BorderSide(
|
|
||||||
color: Colors.green,
|
|
||||||
width: 5,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
borderRadius: BorderRadius.circular(10));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,456 +0,0 @@
|
|||||||
import 'package:doctor_app_flutter/config/config.dart';
|
|
||||||
import 'package:doctor_app_flutter/config/size_config.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/patient/patiant_info_model.dart';
|
|
||||||
import 'package:doctor_app_flutter/util/date-utils.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/shared/app_texts_widget.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:hexcolor/hexcolor.dart';
|
|
||||||
import 'package:intl/intl.dart';
|
|
||||||
import 'package:provider/provider.dart';
|
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
|
||||||
|
|
||||||
import 'large_avatar.dart';
|
|
||||||
|
|
||||||
class PatientProfileHeaderWhitAppointmentAppBar extends StatelessWidget
|
|
||||||
with PreferredSizeWidget {
|
|
||||||
final PatiantInformtion patient;
|
|
||||||
final String patientType;
|
|
||||||
final String arrivalType;
|
|
||||||
final String doctorName;
|
|
||||||
final String branch;
|
|
||||||
final DateTime appointmentDate;
|
|
||||||
final String profileUrl;
|
|
||||||
final String invoiceNO;
|
|
||||||
final String orderNo;
|
|
||||||
final bool isPrescriptions;
|
|
||||||
final bool isMedicalFile;
|
|
||||||
final String episode;
|
|
||||||
final String vistDate;
|
|
||||||
|
|
||||||
final String clinic;
|
|
||||||
PatientProfileHeaderWhitAppointmentAppBar(
|
|
||||||
{this.patient,
|
|
||||||
this.patientType,
|
|
||||||
this.arrivalType,
|
|
||||||
this.doctorName,
|
|
||||||
this.branch,
|
|
||||||
this.appointmentDate,
|
|
||||||
this.profileUrl,
|
|
||||||
this.invoiceNO,
|
|
||||||
this.orderNo,
|
|
||||||
this.isPrescriptions = false,
|
|
||||||
this.clinic,
|
|
||||||
this.isMedicalFile = false,
|
|
||||||
this.episode,
|
|
||||||
this.vistDate});
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
ProjectViewModel projectViewModel = Provider.of(context);
|
|
||||||
int gender = 1;
|
|
||||||
if (patient.patientDetails != null) {
|
|
||||||
gender = patient.patientDetails.gender;
|
|
||||||
} else {
|
|
||||||
gender = patient.gender;
|
|
||||||
}
|
|
||||||
|
|
||||||
return Container(
|
|
||||||
padding: EdgeInsets.only(left: 0, right: 5, bottom: 5, top: 5),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.white,
|
|
||||||
),
|
|
||||||
//height: 300,
|
|
||||||
child: Container(
|
|
||||||
padding: EdgeInsets.only(left: 10, right: 10, bottom: 10),
|
|
||||||
margin: EdgeInsets.only(top: 50),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Row(children: [
|
|
||||||
IconButton(
|
|
||||||
icon: Icon(Icons.arrow_back_ios),
|
|
||||||
color: Colors.black, //Colors.black,
|
|
||||||
onPressed: () => Navigator.pop(context),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
patient.firstName != null
|
|
||||||
? (Helpers.capitalize(patient.firstName) +
|
|
||||||
" " +
|
|
||||||
Helpers.capitalize(patient.lastName))
|
|
||||||
: Helpers.capitalize(patient.fullName??patient?.patientDetails?.fullName??""),
|
|
||||||
fontSize: SizeConfig.textMultiplier * 2.2,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
),
|
|
||||||
gender == 1
|
|
||||||
? Icon(
|
|
||||||
DoctorApp.male_2,
|
|
||||||
color: Colors.blue,
|
|
||||||
)
|
|
||||||
: Icon(
|
|
||||||
DoctorApp.female_1,
|
|
||||||
color: Colors.pink,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
margin: EdgeInsets.symmetric(horizontal: 4),
|
|
||||||
child: InkWell(
|
|
||||||
onTap: () {
|
|
||||||
launch("tel://" + patient?.mobileNumber??"");
|
|
||||||
},
|
|
||||||
child: Icon(
|
|
||||||
Icons.phone,
|
|
||||||
color: Colors.black87,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
Row(children: [
|
|
||||||
Padding(
|
|
||||||
padding: EdgeInsets.only(left: 12.0),
|
|
||||||
child: Container(
|
|
||||||
width: 60,
|
|
||||||
height: 60,
|
|
||||||
child: Image.asset(
|
|
||||||
gender == 1
|
|
||||||
? 'assets/images/male_avatar.png'
|
|
||||||
: 'assets/images/female_avatar.png',
|
|
||||||
fit: BoxFit.cover,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
width: 10,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
SERVICES_PATIANT2[int.parse(patientType)] ==
|
|
||||||
"patientArrivalList"
|
|
||||||
? Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
patient.patientStatusType == 43
|
|
||||||
? AppText(
|
|
||||||
TranslationBase.of(context).arrivedP,
|
|
||||||
color: Colors.green,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
TranslationBase.of(context).notArrived,
|
|
||||||
color: Colors.red[800],
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
arrivalType == '1' || patient.arrivedOn == null
|
|
||||||
? AppText(
|
|
||||||
patient.startTime != null
|
|
||||||
? patient.startTime
|
|
||||||
: '',
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
)
|
|
||||||
: AppText(
|
|
||||||
AppDateUtils.convertStringToDateFormat(
|
|
||||||
patient.arrivedOn,
|
|
||||||
'MM-dd-yyyy HH:mm'),
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
))
|
|
||||||
: SizedBox(),
|
|
||||||
if (SERVICES_PATIANT2[int.parse(patientType)] ==
|
|
||||||
"List_MyOutPatient")
|
|
||||||
Container(
|
|
||||||
child: Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
TranslationBase.of(context).appointmentDate +
|
|
||||||
" : ",
|
|
||||||
fontSize: 14,
|
|
||||||
),
|
|
||||||
patient.startTime != null
|
|
||||||
? Container(
|
|
||||||
height: 15,
|
|
||||||
width: 60,
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
borderRadius: BorderRadius.circular(25),
|
|
||||||
color: HexColor("#20A169"),
|
|
||||||
),
|
|
||||||
child: AppText(
|
|
||||||
patient.startTime ?? "",
|
|
||||||
color: Colors.white,
|
|
||||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
|
||||||
textAlign: TextAlign.center,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
)
|
|
||||||
: SizedBox(),
|
|
||||||
SizedBox(
|
|
||||||
width: 3.5,
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: AppText(
|
|
||||||
convertDateFormat2(
|
|
||||||
patient.appointmentDate.toString() ?? ''),
|
|
||||||
fontSize: 1.5 * SizeConfig.textMultiplier,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
SizedBox(
|
|
||||||
height: 0.5,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
margin: EdgeInsets.only(
|
|
||||||
top: 8,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
||||||
children: [
|
|
||||||
RichText(
|
|
||||||
text: TextSpan(
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: TranslationBase.of(context).fileNumber,
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 12, fontFamily: 'Poppins')),
|
|
||||||
new TextSpan(
|
|
||||||
text: patient?.patientId?.toString() ?? "",
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText(
|
|
||||||
patient.nationalityName ??
|
|
||||||
patient.nationality ??
|
|
||||||
"",
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
patient.nationality != null
|
|
||||||
? ClipRRect(
|
|
||||||
borderRadius: BorderRadius.circular(20.0),
|
|
||||||
child: Image.network(
|
|
||||||
patient?.nationalityFlagURL??"",
|
|
||||||
height: 25,
|
|
||||||
width: 30,
|
|
||||||
errorBuilder: (BuildContext context,
|
|
||||||
Object exception,
|
|
||||||
StackTrace stackTrace) {
|
|
||||||
return Text('No Image');
|
|
||||||
},
|
|
||||||
))
|
|
||||||
: SizedBox()
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
child: RichText(
|
|
||||||
text: new TextSpan(
|
|
||||||
style: new TextStyle(
|
|
||||||
fontSize: 1.6 * SizeConfig.textMultiplier,
|
|
||||||
color: Colors.black,
|
|
||||||
fontFamily: 'Poppins',
|
|
||||||
),
|
|
||||||
children: <TextSpan>[
|
|
||||||
new TextSpan(
|
|
||||||
text: TranslationBase.of(context).age + " : ",
|
|
||||||
style: TextStyle(fontSize: 14)),
|
|
||||||
new TextSpan(
|
|
||||||
text:
|
|
||||||
"${AppDateUtils.getAgeByBirthday(patient.patientDetails != null ? patient.patientDetails.dateofBirth : patient.dateofBirth, context)}",
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.w700, fontSize: 14)),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]),
|
|
||||||
Row(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
width: 30,
|
|
||||||
height: 30,
|
|
||||||
margin: EdgeInsets.only(
|
|
||||||
left: projectViewModel.isArabic ? 10 : 85,
|
|
||||||
right: projectViewModel.isArabic ? 85 : 10,
|
|
||||||
top: 5),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
shape: BoxShape.rectangle,
|
|
||||||
border: Border(
|
|
||||||
bottom: BorderSide(color: Colors.grey[400], width: 2.5),
|
|
||||||
left: BorderSide(color: Colors.grey[400], width: 2.5),
|
|
||||||
)),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: Container(
|
|
||||||
margin: EdgeInsets.only(top: 10),
|
|
||||||
child: Row(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: <Widget>[
|
|
||||||
Container(
|
|
||||||
child: LargeAvatar(
|
|
||||||
name: doctorName ?? "",
|
|
||||||
url: profileUrl,
|
|
||||||
),
|
|
||||||
width: 25,
|
|
||||||
height: 25,
|
|
||||||
margin: EdgeInsets.only(top: 10),
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
flex: 5,
|
|
||||||
child: Container(
|
|
||||||
margin: EdgeInsets.all(10),
|
|
||||||
child: Column(
|
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
|
||||||
children: <Widget>[
|
|
||||||
AppText(
|
|
||||||
'${TranslationBase.of(context).dr}$doctorName',
|
|
||||||
color: Colors.black,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
fontSize: 9,
|
|
||||||
),
|
|
||||||
if (orderNo != null && !isPrescriptions)
|
|
||||||
Row(
|
|
||||||
children: <Widget>[
|
|
||||||
AppText('Order No: ',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
fontSize: 12),
|
|
||||||
AppText(orderNo ?? '', fontSize: 12)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if (invoiceNO != null && !isPrescriptions)
|
|
||||||
Row(
|
|
||||||
children: <Widget>[
|
|
||||||
AppText('Invoice: ',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
fontSize: 12),
|
|
||||||
AppText(invoiceNO??"", fontSize: 12)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if (branch != null)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText('Branch: ',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
fontSize: 12),
|
|
||||||
AppText(branch ?? '', fontSize: 12)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
|
|
||||||
if (clinic != null)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText('Clinic: ',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
fontSize: 12),
|
|
||||||
AppText(clinic ?? '', fontSize: 12)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if (isMedicalFile && episode != null)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText('Episode: ',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
fontSize: 12),
|
|
||||||
AppText(episode ?? '', fontSize: 12)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if (isMedicalFile && vistDate != null)
|
|
||||||
Row(
|
|
||||||
children: [
|
|
||||||
AppText('Visit Date: ',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
fontSize: 12),
|
|
||||||
AppText(vistDate ?? '', fontSize: 12)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
if (!isMedicalFile)
|
|
||||||
Row(
|
|
||||||
children: <Widget>[
|
|
||||||
Expanded(
|
|
||||||
child: AppText(
|
|
||||||
!isPrescriptions
|
|
||||||
? 'Result Date: '
|
|
||||||
: 'Prescriptions Date ',
|
|
||||||
color: Colors.grey[800],
|
|
||||||
fontSize: 12,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
AppText(
|
|
||||||
'${AppDateUtils.getDayMonthYearDateFormatted(appointmentDate, isArabic: projectViewModel.isArabic)}',
|
|
||||||
fontSize: 14,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
)
|
|
||||||
]),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
convertDateFormat2(String str) {
|
|
||||||
String newDate = "";
|
|
||||||
const start = "/Date(";
|
|
||||||
const end = "+0300)";
|
|
||||||
|
|
||||||
if (str.isNotEmpty) {
|
|
||||||
final startIndex = str.indexOf(start);
|
|
||||||
final endIndex = str.indexOf(end, startIndex + start.length);
|
|
||||||
|
|
||||||
var date = new DateTime.fromMillisecondsSinceEpoch(
|
|
||||||
int.parse(str.substring(startIndex + start.length, endIndex)));
|
|
||||||
newDate = date.year.toString() +
|
|
||||||
"/" +
|
|
||||||
date.month.toString().padLeft(2, '0') +
|
|
||||||
"/" +
|
|
||||||
date.day.toString().padLeft(2, '0');
|
|
||||||
}
|
|
||||||
|
|
||||||
return newDate.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@override
|
|
||||||
Size get preferredSize => Size(double.maxFinite, 310);
|
|
||||||
}
|
|
||||||
@ -1,39 +0,0 @@
|
|||||||
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:hexcolor/hexcolor.dart';
|
|
||||||
|
|
||||||
import '../../../config/size_config.dart';
|
|
||||||
import '../../shared/profile_image_widget.dart';
|
|
||||||
|
|
||||||
/*
|
|
||||||
*@author: Elham Rababah
|
|
||||||
*@Date:21/4/2020
|
|
||||||
*@param:
|
|
||||||
*@return:
|
|
||||||
*@desc: Profile Header Widget class
|
|
||||||
*/
|
|
||||||
class ProfileHeaderWidget extends StatelessWidget {
|
|
||||||
ProfileHeaderWidget({
|
|
||||||
Key key,
|
|
||||||
this.patient
|
|
||||||
}) : super(key: key);
|
|
||||||
|
|
||||||
PatiantInformtion patient;
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
// PatientsProvider patientsProv = Provider.of<PatientsProvider>(context);
|
|
||||||
// patient = patientsProv.getSelectedPatient();
|
|
||||||
return Container(
|
|
||||||
height: SizeConfig.heightMultiplier * 30,
|
|
||||||
child: ProfileImageWidget(
|
|
||||||
url:
|
|
||||||
"https://hmgwebservices.com/Images/MobileImages/DUBAI/unkown_female.png",
|
|
||||||
name: patient.firstName + ' ' + patient.lastName,
|
|
||||||
des: patient.patientId.toString(),
|
|
||||||
height: SizeConfig.heightMultiplier * 17,
|
|
||||||
width: SizeConfig.heightMultiplier * 17,
|
|
||||||
color: HexColor('#58434F')),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue