Prescription favourite templates
parent
13fb50f9be
commit
519e6f2fec
@ -0,0 +1,119 @@
|
||||
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||
import 'package:doctor_app_flutter/core/model/procedure/procedure_template_details_model.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/medicine_view_model.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/prescription_view_model.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/procedure_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/prescription_checkout_screen.dart';
|
||||
import 'package:doctor_app_flutter/screens/procedures/entity_list_fav_procedure.dart';
|
||||
import 'package:doctor_app_flutter/util/dr_app_toast_msg.dart';
|
||||
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/buttons/app_buttons_widget.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/network_base_view.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class AddFavPrescription extends StatefulWidget {
|
||||
final PrescriptionViewModel model;
|
||||
final PatiantInformtion patient;
|
||||
final String categoryID;
|
||||
|
||||
const AddFavPrescription({Key key, this.model, this.patient, this.categoryID}) : super(key: key);
|
||||
|
||||
@override
|
||||
_AddFavPrescriptionState createState() => _AddFavPrescriptionState();
|
||||
}
|
||||
|
||||
class _AddFavPrescriptionState extends State<AddFavPrescription> {
|
||||
MedicineViewModel model;
|
||||
PatiantInformtion patient;
|
||||
|
||||
List<ProcedureTempleteDetailsModel> entityList = List();
|
||||
ProcedureTempleteDetailsModel groupProcedures;
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return BaseView<ProcedureViewModel>(
|
||||
onModelReady: (model) => model.getProcedureTemplate(categoryID: widget.categoryID),
|
||||
builder: (BuildContext context, ProcedureViewModel model, Widget child) => AppScaffold(
|
||||
isShowAppBar: false,
|
||||
baseViewModel: model,
|
||||
body: Column(
|
||||
children: [
|
||||
Container(
|
||||
height: MediaQuery.of(context).size.height * 0.070,
|
||||
),
|
||||
if (model.templateList.length != 0)
|
||||
Expanded(
|
||||
child: NetworkBaseView(
|
||||
baseViewModel: model,
|
||||
child: EntityListCheckboxSearchFavProceduresWidget(
|
||||
isProcedure: false,
|
||||
model: model,
|
||||
removeFavProcedure: (item) {
|
||||
setState(() {
|
||||
entityList.remove(item);
|
||||
});
|
||||
},
|
||||
addFavProcedure: (history) {
|
||||
setState(() {
|
||||
entityList.add(history);
|
||||
});
|
||||
},
|
||||
isEntityFavListSelected: (master) => isEntityListSelected(master),
|
||||
groupProcedures: groupProcedures,
|
||||
selectProcedures: (valasd) {
|
||||
setState(() {
|
||||
groupProcedures = valasd;
|
||||
});
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
margin: EdgeInsets.all(SizeConfig.widthMultiplier * 5),
|
||||
child: Wrap(
|
||||
alignment: WrapAlignment.center,
|
||||
children: <Widget>[
|
||||
AppButton(
|
||||
title: 'Add Prescription',
|
||||
color: Color(0xff359846),
|
||||
fontWeight: FontWeight.w700,
|
||||
onPressed: () {
|
||||
if (groupProcedures == null) {
|
||||
DrAppToastMsg.showErrorToast(
|
||||
'Please Select item ',
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
Navigator.push(
|
||||
context,
|
||||
MaterialPageRoute(
|
||||
builder: (context) => PrescriptionCheckOutScreen(
|
||||
patient: widget.patient,
|
||||
model: widget.model,
|
||||
groupProcedures: groupProcedures,
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
bool isEntityListSelected(ProcedureTempleteDetailsModel masterKey) {
|
||||
Iterable<ProcedureTempleteDetailsModel> history = entityList.where(
|
||||
(element) => masterKey.templateID == element.templateID && masterKey.procedureName == element.procedureName);
|
||||
if (history.length > 0) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,760 @@
|
||||
import 'package:autocomplete_textfield/autocomplete_textfield.dart';
|
||||
import 'package:doctor_app_flutter/config/config.dart';
|
||||
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||
import 'package:doctor_app_flutter/core/enum/viewstate.dart';
|
||||
import 'package:doctor_app_flutter/core/model/Prescriptions/post_prescrition_req_model.dart';
|
||||
import 'package:doctor_app_flutter/core/model/Prescriptions/prescription_model.dart';
|
||||
import 'package:doctor_app_flutter/core/model/procedure/procedure_template_details_model.dart';
|
||||
import 'package:doctor_app_flutter/core/model/search_drug/get_medication_response_model.dart';
|
||||
import 'package:doctor_app_flutter/core/provider/robot_provider.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/medicine_view_model.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/prescription_view_model.dart';
|
||||
import 'package:doctor_app_flutter/icons_app/doctor_app_icons.dart';
|
||||
import 'package:doctor_app_flutter/models/SOAP/GetAssessmentReqModel.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/prescription_text_filed.dart';
|
||||
import 'package:doctor_app_flutter/util/date-utils.dart';
|
||||
import 'package:doctor_app_flutter/util/dr_app_toast_msg.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/TextFields.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/buttons/app_buttons_widget.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/network_base_view.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/speech-text-popup.dart';
|
||||
import 'package:doctor_app_flutter/widgets/shared/text_fields/app-textfield-custom.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:hexcolor/hexcolor.dart';
|
||||
import 'package:permission_handler/permission_handler.dart';
|
||||
import 'package:speech_to_text/speech_recognition_error.dart';
|
||||
import 'package:speech_to_text/speech_to_text.dart' as stt;
|
||||
|
||||
class PrescriptionCheckOutScreen extends StatefulWidget {
|
||||
final PrescriptionViewModel model;
|
||||
final PatiantInformtion patient;
|
||||
final List<PrescriptionModel> prescriptionList;
|
||||
final ProcedureTempleteDetailsModel groupProcedures;
|
||||
|
||||
const PrescriptionCheckOutScreen({Key key, this.model, this.patient, this.prescriptionList, this.groupProcedures})
|
||||
: super(key: key);
|
||||
|
||||
@override
|
||||
_PrescriptionCheckOutScreenState createState() => _PrescriptionCheckOutScreenState();
|
||||
}
|
||||
|
||||
class _PrescriptionCheckOutScreenState extends State<PrescriptionCheckOutScreen> {
|
||||
postPrescription(
|
||||
{String duration,
|
||||
String doseTimeIn,
|
||||
String dose,
|
||||
String drugId,
|
||||
String strength,
|
||||
String route,
|
||||
String frequency,
|
||||
String indication,
|
||||
String instruction,
|
||||
PrescriptionViewModel model,
|
||||
DateTime doseTime,
|
||||
String doseUnit,
|
||||
String icdCode,
|
||||
PatiantInformtion patient,
|
||||
String patientType}) async {
|
||||
PostPrescriptionReqModel postProcedureReqModel = new PostPrescriptionReqModel();
|
||||
List<PrescriptionRequestModel> prescriptionList = List();
|
||||
|
||||
postProcedureReqModel.appointmentNo = patient.appointmentNo;
|
||||
postProcedureReqModel.clinicID = patient.clinicId;
|
||||
postProcedureReqModel.episodeID = patient.episodeNo;
|
||||
postProcedureReqModel.patientMRN = patient.patientMRN;
|
||||
|
||||
prescriptionList.add(PrescriptionRequestModel(
|
||||
covered: true,
|
||||
dose: double.parse(dose),
|
||||
itemId: drugId.isEmpty ? 1 : int.parse(drugId),
|
||||
doseUnitId: int.parse(doseUnit),
|
||||
route: route.isEmpty ? 1 : int.parse(route),
|
||||
frequency: frequency.isEmpty ? 1 : int.parse(frequency),
|
||||
remarks: instruction,
|
||||
approvalRequired: true,
|
||||
icdcode10Id: icdCode.toString(),
|
||||
doseTime: doseTimeIn.isEmpty ? 1 : int.parse(doseTimeIn),
|
||||
duration: duration.isEmpty ? 1 : int.parse(duration),
|
||||
doseStartDate: doseTime.toIso8601String()));
|
||||
postProcedureReqModel.prescriptionRequestModel = prescriptionList;
|
||||
await model.postPrescription(postProcedureReqModel, patient.patientMRN);
|
||||
|
||||
if (model.state == ViewState.ErrorLocal) {
|
||||
Helpers.showErrorToast(model.error);
|
||||
} else if (model.state == ViewState.Idle) {
|
||||
model.getPrescriptions(patient);
|
||||
DrAppToastMsg.showSuccesToast('Medication has been added');
|
||||
}
|
||||
}
|
||||
|
||||
String routeError;
|
||||
String frequencyError;
|
||||
String doseTimeError;
|
||||
String durationError;
|
||||
String unitError;
|
||||
String strengthError;
|
||||
|
||||
int selectedType;
|
||||
|
||||
TextEditingController strengthController = TextEditingController();
|
||||
TextEditingController indicationController = TextEditingController();
|
||||
TextEditingController instructionController = TextEditingController();
|
||||
|
||||
bool visbiltyPrescriptionForm = true;
|
||||
bool visbiltySearch = true;
|
||||
|
||||
final myController = TextEditingController();
|
||||
DateTime selectedDate;
|
||||
int strengthChar;
|
||||
GetMedicationResponseModel _selectedMedication;
|
||||
GlobalKey key = new GlobalKey<AutoCompleteTextFieldState<GetMedicationResponseModel>>();
|
||||
|
||||
TextEditingController drugIdController = TextEditingController();
|
||||
TextEditingController doseController = TextEditingController();
|
||||
final searchController = TextEditingController();
|
||||
stt.SpeechToText speech = stt.SpeechToText();
|
||||
var event = RobotProvider();
|
||||
var reconizedWord;
|
||||
|
||||
final GlobalKey<FormState> formKey = GlobalKey<FormState>();
|
||||
final double spaceBetweenTextFileds = 12;
|
||||
dynamic route;
|
||||
dynamic frequency;
|
||||
dynamic duration;
|
||||
dynamic doseTime;
|
||||
dynamic indication;
|
||||
dynamic units;
|
||||
dynamic uom;
|
||||
dynamic box;
|
||||
dynamic x;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
selectedType = 1;
|
||||
}
|
||||
|
||||
onVoiceText() async {
|
||||
new SpeechToText(context: context).showAlertDialog(context);
|
||||
var lang = TranslationBase.of(AppGlobal.CONTEX).locale.languageCode;
|
||||
bool available = await speech.initialize(onStatus: statusListener, onError: errorListener);
|
||||
if (available) {
|
||||
speech.listen(
|
||||
onResult: resultListener,
|
||||
listenMode: stt.ListenMode.confirmation,
|
||||
localeId: lang == 'en' ? 'en-US' : 'ar-SA',
|
||||
);
|
||||
} else {
|
||||
print("The user has denied the use of speech recognition.");
|
||||
}
|
||||
}
|
||||
|
||||
void errorListener(SpeechRecognitionError error) {
|
||||
event.setValue({"searchText": 'null'});
|
||||
print(error);
|
||||
}
|
||||
|
||||
void statusListener(String status) {
|
||||
reconizedWord = status == 'listening' ? 'Lisening...' : 'Sorry....';
|
||||
}
|
||||
|
||||
void requestPermissions() async {
|
||||
Map<Permission, PermissionStatus> statuses = await [
|
||||
Permission.microphone,
|
||||
].request();
|
||||
}
|
||||
|
||||
void resultListener(result) {
|
||||
reconizedWord = result.recognizedWords;
|
||||
event.setValue({"searchText": reconizedWord});
|
||||
|
||||
if (result.finalResult == true) {
|
||||
setState(() {
|
||||
SpeechToText.closeAlertDialog(context);
|
||||
speech.stop();
|
||||
indicationController.text += reconizedWord + '\n';
|
||||
});
|
||||
} else {
|
||||
print(result.finalResult);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> initSpeechState() async {
|
||||
bool hasSpeech = await speech.initialize(onError: errorListener, onStatus: statusListener);
|
||||
print(hasSpeech);
|
||||
if (!mounted) return;
|
||||
}
|
||||
|
||||
setSelectedType(int val) {
|
||||
setState(() {
|
||||
selectedType = val;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final screenSize = MediaQuery.of(context).size;
|
||||
return BaseView<MedicineViewModel>(
|
||||
onModelReady: (model) async {
|
||||
model.getItem(itemID: int.parse(widget.groupProcedures.aliasN.replaceAll("item code ;", "")));
|
||||
|
||||
x = model.patientAssessmentList.map((element) {
|
||||
return element.icdCode10ID;
|
||||
});
|
||||
GetAssessmentReqModel getAssessmentReqModel = GetAssessmentReqModel(
|
||||
patientMRN: widget.patient.patientMRN,
|
||||
episodeID: widget.patient.episodeNo.toString(),
|
||||
editedBy: '',
|
||||
doctorID: '',
|
||||
appointmentNo: widget.patient.appointmentNo);
|
||||
if (model.medicationStrengthList.length == 0) {
|
||||
await model.getMedicationStrength();
|
||||
}
|
||||
if (model.medicationDurationList.length == 0) {
|
||||
await model.getMedicationDuration();
|
||||
}
|
||||
if (model.medicationDoseTimeList.length == 0) {
|
||||
await model.getMedicationDoseTime();
|
||||
}
|
||||
await model.getPatientAssessment(getAssessmentReqModel);
|
||||
},
|
||||
builder: (
|
||||
BuildContext context,
|
||||
MedicineViewModel model,
|
||||
Widget child,
|
||||
) =>
|
||||
AppScaffold(
|
||||
backgroundColor: Color(0xffF8F8F8).withOpacity(0.9),
|
||||
isShowAppBar: false,
|
||||
body: NetworkBaseView(
|
||||
baseViewModel: model,
|
||||
child: GestureDetector(
|
||||
onTap: () {
|
||||
FocusScope.of(context).requestFocus(new FocusNode());
|
||||
},
|
||||
child: SingleChildScrollView(
|
||||
child: Container(
|
||||
height: MediaQuery.of(context).size.height * 1.35,
|
||||
color: Color(0xffF8F8F8),
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(horizontal: 12.0, vertical: 10.0),
|
||||
child: Column(
|
||||
children: [
|
||||
Column(
|
||||
children: [
|
||||
SizedBox(
|
||||
height: 60,
|
||||
),
|
||||
Row(
|
||||
//mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
InkWell(
|
||||
child: Icon(
|
||||
Icons.arrow_back_ios,
|
||||
size: 24.0,
|
||||
),
|
||||
onTap: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
),
|
||||
SizedBox(
|
||||
width: 7.0,
|
||||
),
|
||||
AppText(
|
||||
TranslationBase.of(context).newPrescriptionOrder,
|
||||
fontWeight: FontWeight.w700,
|
||||
fontSize: 20,
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
SizedBox(
|
||||
height: spaceBetweenTextFileds,
|
||||
),
|
||||
Container(
|
||||
child: Form(
|
||||
key: formKey,
|
||||
child: Column(
|
||||
children: [
|
||||
Container(
|
||||
child: Column(
|
||||
children: [
|
||||
SizedBox(
|
||||
height: 14.5,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
height: spaceBetweenTextFileds,
|
||||
),
|
||||
Visibility(
|
||||
visible: visbiltyPrescriptionForm,
|
||||
child: Container(
|
||||
child: Column(
|
||||
children: [
|
||||
AppText(
|
||||
widget.groupProcedures.procedureName ?? "",
|
||||
bold: true,
|
||||
),
|
||||
Container(
|
||||
child: Row(
|
||||
children: [
|
||||
AppText(
|
||||
TranslationBase.of(context).orderType,
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
Radio(
|
||||
activeColor: Color(0xFFB9382C),
|
||||
value: 1,
|
||||
groupValue: selectedType,
|
||||
onChanged: (value) {
|
||||
setSelectedType(value);
|
||||
},
|
||||
),
|
||||
Text(TranslationBase.of(context).regular),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
Container(
|
||||
width: double.infinity,
|
||||
child: Row(
|
||||
children: [
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width * 0.35,
|
||||
child: AppTextFieldCustom(
|
||||
height: 40,
|
||||
validationError: strengthError,
|
||||
hintText: 'Strength',
|
||||
isTextFieldHasSuffix: false,
|
||||
enabled: true,
|
||||
controller: strengthController,
|
||||
onChanged: (String value) {
|
||||
setState(() {
|
||||
strengthChar = value.length;
|
||||
});
|
||||
if (strengthChar >= 5) {
|
||||
DrAppToastMsg.showErrorToast(
|
||||
TranslationBase.of(context).only5DigitsAllowedForStrength,
|
||||
);
|
||||
}
|
||||
},
|
||||
inputType: TextInputType.numberWithOptions(
|
||||
decimal: true,
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
width: 5.0,
|
||||
),
|
||||
PrescriptionTextFiled(
|
||||
width: MediaQuery.of(context).size.width * 0.560,
|
||||
element: units,
|
||||
elementError: unitError,
|
||||
keyName: 'description',
|
||||
keyId: 'parameterCode',
|
||||
hintText: 'Select',
|
||||
elementList: model.itemMedicineListUnit,
|
||||
okFunction: (selectedValue) {
|
||||
setState(() {
|
||||
units = selectedValue;
|
||||
units['isDefault'] = true;
|
||||
});
|
||||
},
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
PrescriptionTextFiled(
|
||||
elementList: model.itemMedicineListRoute,
|
||||
element: route,
|
||||
elementError: routeError,
|
||||
keyId: 'parameterCode',
|
||||
keyName: 'description',
|
||||
okFunction: (selectedValue) {
|
||||
setState(() {
|
||||
route = selectedValue;
|
||||
route['isDefault'] = true;
|
||||
});
|
||||
},
|
||||
hintText: TranslationBase.of(context).route,
|
||||
),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
PrescriptionTextFiled(
|
||||
hintText: TranslationBase.of(context).frequency,
|
||||
elementError: frequencyError,
|
||||
element: frequency,
|
||||
elementList: model.itemMedicineList,
|
||||
keyId: 'parameterCode',
|
||||
keyName: 'description',
|
||||
okFunction: (selectedValue) {
|
||||
setState(() {
|
||||
frequency = selectedValue;
|
||||
frequency['isDefault'] = true;
|
||||
if (_selectedMedication != null &&
|
||||
duration != null &&
|
||||
frequency != null &&
|
||||
strengthController.text != null) {
|
||||
model.getBoxQuantity(
|
||||
freq: frequency['parameterCode'],
|
||||
duration: duration['id'],
|
||||
itemCode: _selectedMedication.itemId,
|
||||
strength: double.parse(strengthController.text));
|
||||
|
||||
return;
|
||||
}
|
||||
});
|
||||
}),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
PrescriptionTextFiled(
|
||||
hintText: TranslationBase.of(context).doseTime,
|
||||
elementError: doseTimeError,
|
||||
element: doseTime,
|
||||
elementList: model.medicationDoseTimeList,
|
||||
keyId: 'id',
|
||||
keyName: 'nameEn',
|
||||
okFunction: (selectedValue) {
|
||||
setState(() {
|
||||
doseTime = selectedValue;
|
||||
});
|
||||
}),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
if (model.patientAssessmentList.isNotEmpty)
|
||||
Container(
|
||||
height: screenSize.height * 0.070,
|
||||
width: double.infinity,
|
||||
color: Colors.white,
|
||||
child: Row(
|
||||
children: [
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width * 0.29,
|
||||
child: TextField(
|
||||
decoration: textFieldSelectorDecoration(
|
||||
model.patientAssessmentList[0].icdCode10ID.toString(),
|
||||
indication != null ? indication['name'] : null,
|
||||
false),
|
||||
enabled: true,
|
||||
readOnly: true,
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: MediaQuery.of(context).size.width * 0.65,
|
||||
color: Colors.white,
|
||||
child: TextField(
|
||||
maxLines: 5,
|
||||
decoration: textFieldSelectorDecoration(
|
||||
model.patientAssessmentList[0].asciiDesc.toString(),
|
||||
indication != null ? indication['name'] : null,
|
||||
false),
|
||||
enabled: true,
|
||||
readOnly: true,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
Container(
|
||||
height: screenSize.height * 0.070,
|
||||
color: Colors.white,
|
||||
child: InkWell(
|
||||
onTap: () => selectDate(context, widget.model),
|
||||
child: TextField(
|
||||
decoration: textFieldSelectorDecoration(
|
||||
TranslationBase.of(context).date,
|
||||
selectedDate != null
|
||||
? "${AppDateUtils.convertStringToDateFormat(selectedDate.toString(), "yyyy-MM-dd")}"
|
||||
: null,
|
||||
true,
|
||||
suffixIcon: Icon(
|
||||
Icons.calendar_today,
|
||||
color: Colors.black,
|
||||
)),
|
||||
enabled: false,
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
PrescriptionTextFiled(
|
||||
element: duration,
|
||||
elementError: durationError,
|
||||
hintText: TranslationBase.of(context).duration,
|
||||
elementList: model.medicationDurationList,
|
||||
keyName: 'nameEn',
|
||||
keyId: 'id',
|
||||
okFunction: (selectedValue) {
|
||||
setState(() {
|
||||
duration = selectedValue;
|
||||
if (_selectedMedication != null &&
|
||||
duration != null &&
|
||||
frequency != null &&
|
||||
strengthController.text != null) {
|
||||
model.getBoxQuantity(
|
||||
freq: frequency['parameterCode'],
|
||||
duration: duration['id'],
|
||||
itemCode: _selectedMedication.itemId,
|
||||
strength: double.parse(strengthController.text),
|
||||
);
|
||||
box = model.boxQuintity;
|
||||
|
||||
return;
|
||||
}
|
||||
});
|
||||
},
|
||||
),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
// Container(
|
||||
// color: Colors.white,
|
||||
// child: AppTextFieldCustom(
|
||||
// hintText: "UOM",
|
||||
// isTextFieldHasSuffix: false,
|
||||
// dropDownText: uom != null ? uom : null,
|
||||
// enabled: false,
|
||||
// ),
|
||||
// ),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
// Container(
|
||||
// color: Colors.white,
|
||||
// child: AppTextFieldCustom(
|
||||
// hintText: TranslationBase.of(context).boxQuantity,
|
||||
// isTextFieldHasSuffix: false,
|
||||
// dropDownText: box != null
|
||||
// ? TranslationBase.of(context).boxQuantity +
|
||||
// ": " +
|
||||
// model.boxQuintity.toString()
|
||||
// : null,
|
||||
// enabled: false,
|
||||
// ),
|
||||
// ),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.all(Radius.circular(6.0)),
|
||||
border: Border.all(width: 1.0, color: HexColor("#CCCCCC"))),
|
||||
child: Stack(
|
||||
children: [
|
||||
TextFields(
|
||||
maxLines: 6,
|
||||
minLines: 4,
|
||||
hintText: TranslationBase.of(context).instruction,
|
||||
controller: instructionController,
|
||||
//keyboardType: TextInputType.number,
|
||||
),
|
||||
Positioned(
|
||||
top: 0,
|
||||
right: 15,
|
||||
child: IconButton(
|
||||
icon: Icon(
|
||||
DoctorApp.speechtotext,
|
||||
color: Colors.black,
|
||||
size: 35,
|
||||
),
|
||||
onPressed: () {
|
||||
initSpeechState().then((value) => {onVoiceText()});
|
||||
},
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
SizedBox(height: spaceBetweenTextFileds),
|
||||
Container(
|
||||
margin: EdgeInsets.all(SizeConfig.widthMultiplier * 5),
|
||||
child: Wrap(
|
||||
alignment: WrapAlignment.center,
|
||||
children: <Widget>[
|
||||
AppButton(
|
||||
color: Color(0xff359846),
|
||||
title: TranslationBase.of(context).addMedication,
|
||||
fontWeight: FontWeight.w600,
|
||||
onPressed: () async {
|
||||
if (route != null &&
|
||||
duration != null &&
|
||||
doseTime != null &&
|
||||
frequency != null &&
|
||||
units != null &&
|
||||
selectedDate != null &&
|
||||
strengthController.text != "") {
|
||||
// if (_selectedMedication.isNarcotic == true) {
|
||||
// DrAppToastMsg.showErrorToast(TranslationBase.of(context)
|
||||
// .narcoticMedicineCanOnlyBePrescribedFromVida);
|
||||
// Navigator.pop(context);
|
||||
// return;
|
||||
// }
|
||||
|
||||
if (double.parse(strengthController.text) > 1000.0) {
|
||||
DrAppToastMsg.showErrorToast("1000 is the MAX for the strength");
|
||||
return;
|
||||
}
|
||||
if (double.parse(strengthController.text) < 0.0) {
|
||||
DrAppToastMsg.showErrorToast("strength can't be zero");
|
||||
return;
|
||||
}
|
||||
|
||||
if (formKey.currentState.validate()) {
|
||||
Navigator.pop(context);
|
||||
// openDrugToDrug(model);
|
||||
{
|
||||
postPrescription(
|
||||
icdCode: model.patientAssessmentList.isNotEmpty
|
||||
? model.patientAssessmentList[0].icdCode10ID.isEmpty
|
||||
? "test"
|
||||
: model.patientAssessmentList[0].icdCode10ID.toString()
|
||||
: "test",
|
||||
// icdCode: model
|
||||
// .patientAssessmentList
|
||||
// .map((value) => value
|
||||
// .icdCode10ID
|
||||
// .trim())
|
||||
// .toList()
|
||||
// .join(' '),
|
||||
dose: strengthController.text,
|
||||
doseUnit: model.itemMedicineListUnit.length == 1
|
||||
? model.itemMedicineListUnit[0]['parameterCode'].toString()
|
||||
: units['parameterCode'].toString(),
|
||||
patient: widget.patient,
|
||||
doseTimeIn: doseTime['id'].toString(),
|
||||
model: widget.model,
|
||||
duration: duration['id'].toString(),
|
||||
frequency: model.itemMedicineList.length == 1
|
||||
? model.itemMedicineList[0]['parameterCode'].toString()
|
||||
: frequency['parameterCode'].toString(),
|
||||
route: model.itemMedicineListRoute.length == 1
|
||||
? model.itemMedicineListRoute[0]['parameterCode'].toString()
|
||||
: route['parameterCode'].toString(),
|
||||
drugId: (widget.groupProcedures.aliasN
|
||||
.replaceAll("item code ;", "")),
|
||||
strength: strengthController.text,
|
||||
indication: indicationController.text,
|
||||
instruction: instructionController.text,
|
||||
doseTime: selectedDate,
|
||||
);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
setState(() {
|
||||
if (duration == null) {
|
||||
durationError = TranslationBase.of(context).fieldRequired;
|
||||
} else {
|
||||
durationError = null;
|
||||
}
|
||||
if (doseTime == null) {
|
||||
doseTimeError = TranslationBase.of(context).fieldRequired;
|
||||
} else {
|
||||
doseTimeError = null;
|
||||
}
|
||||
if (route == null) {
|
||||
routeError = TranslationBase.of(context).fieldRequired;
|
||||
} else {
|
||||
routeError = null;
|
||||
}
|
||||
if (frequency == null) {
|
||||
frequencyError = TranslationBase.of(context).fieldRequired;
|
||||
} else {
|
||||
frequencyError = null;
|
||||
}
|
||||
if (units == null) {
|
||||
unitError = TranslationBase.of(context).fieldRequired;
|
||||
} else {
|
||||
unitError = null;
|
||||
}
|
||||
if (strengthController.text == "") {
|
||||
strengthError = TranslationBase.of(context).fieldRequired;
|
||||
} else {
|
||||
strengthError = null;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
formKey.currentState.save();
|
||||
},
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
selectDate(BuildContext context, PrescriptionViewModel model) async {
|
||||
Helpers.hideKeyboard(context);
|
||||
DateTime selectedDate;
|
||||
selectedDate = DateTime.now();
|
||||
final DateTime picked = await showDatePicker(
|
||||
context: context,
|
||||
initialDate: selectedDate,
|
||||
firstDate: DateTime.now(),
|
||||
lastDate: DateTime(2040),
|
||||
initialEntryMode: DatePickerEntryMode.calendar,
|
||||
);
|
||||
if (picked != null && picked != selectedDate) {
|
||||
setState(() {
|
||||
this.selectedDate = picked;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
InputDecoration textFieldSelectorDecoration(String hintText, String selectedText, bool isDropDown,
|
||||
{Icon suffixIcon}) {
|
||||
return InputDecoration(
|
||||
focusedBorder: OutlineInputBorder(
|
||||
borderSide: BorderSide(color: Color(0xFFCCCCCC), width: 2.0),
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
),
|
||||
enabledBorder: OutlineInputBorder(
|
||||
borderSide: BorderSide(color: Color(0xFFEFEFEF), width: 2.0),
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
),
|
||||
disabledBorder: OutlineInputBorder(
|
||||
borderSide: BorderSide(color: Color(0xFFEFEFEF), width: 2.0),
|
||||
borderRadius: BorderRadius.circular(8),
|
||||
),
|
||||
hintText: selectedText != null ? selectedText : hintText,
|
||||
suffixIcon: isDropDown
|
||||
? suffixIcon != null
|
||||
? suffixIcon
|
||||
: Icon(
|
||||
Icons.keyboard_arrow_down_sharp,
|
||||
color: Color(0xff2E303A),
|
||||
)
|
||||
: null,
|
||||
hintStyle: TextStyle(
|
||||
fontSize: 13,
|
||||
color: Color(0xff2E303A),
|
||||
fontFamily: 'Poppins',
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
labelText: selectedText != null ? '$hintText\n$selectedText' : null,
|
||||
labelStyle: TextStyle(
|
||||
fontSize: 13,
|
||||
color: Color(0xff2E303A),
|
||||
fontFamily: 'Poppins',
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,203 @@
|
||||
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/prescription_view_model.dart';
|
||||
import 'package:doctor_app_flutter/core/viewModel/procedure_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_favourite_prescription.dart';
|
||||
import 'package:doctor_app_flutter/screens/prescription/add_prescription_form.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:doctor_app_flutter/widgets/shared/text_fields/text_fields_utils.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class PrescriptionHomeScreen extends StatefulWidget {
|
||||
final PrescriptionViewModel model;
|
||||
final PatiantInformtion patient;
|
||||
|
||||
const PrescriptionHomeScreen({Key key, this.model, this.patient}) : super(key: key);
|
||||
@override
|
||||
_PrescriptionHomeScreenState createState() => _PrescriptionHomeScreenState();
|
||||
}
|
||||
|
||||
class _PrescriptionHomeScreenState extends State<PrescriptionHomeScreen> with SingleTickerProviderStateMixin {
|
||||
PrescriptionViewModel model;
|
||||
PatiantInformtion patient;
|
||||
TabController _tabController;
|
||||
int _activeTab = 0;
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_tabController = TabController(length: 2, vsync: this);
|
||||
_tabController.addListener(_handleTabSelection);
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
super.dispose();
|
||||
_tabController.dispose();
|
||||
}
|
||||
|
||||
_handleTabSelection() {
|
||||
setState(() {
|
||||
_activeTab = _tabController.index;
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final screenSize = MediaQuery.of(context).size;
|
||||
return BaseView<ProcedureViewModel>(
|
||||
//onModelReady: (model) => model.getCategory(),
|
||||
builder: (BuildContext context, ProcedureViewModel model, Widget child) => AppScaffold(
|
||||
isShowAppBar: false,
|
||||
body: NetworkBaseView(
|
||||
baseViewModel: model,
|
||||
child: DraggableScrollableSheet(
|
||||
minChildSize: 0.90,
|
||||
initialChildSize: 0.95,
|
||||
maxChildSize: 1.0,
|
||||
builder: (BuildContext context, ScrollController scrollController) {
|
||||
return Container(
|
||||
height: MediaQuery.of(context).size.height * 1.20,
|
||||
child: Padding(
|
||||
padding: EdgeInsets.all(12.0),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(children: [
|
||||
InkWell(
|
||||
child: Icon(
|
||||
Icons.arrow_back_ios,
|
||||
size: 24.0,
|
||||
),
|
||||
onTap: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
),
|
||||
SizedBox(
|
||||
width: 7.0,
|
||||
),
|
||||
AppText(
|
||||
'Add prescription',
|
||||
fontWeight: FontWeight.w700,
|
||||
fontSize: 20,
|
||||
),
|
||||
]),
|
||||
SizedBox(
|
||||
height: MediaQuery.of(context).size.height * 0.04,
|
||||
),
|
||||
Expanded(
|
||||
child: Scaffold(
|
||||
extendBodyBehindAppBar: true,
|
||||
appBar: PreferredSize(
|
||||
preferredSize: Size.fromHeight(MediaQuery.of(context).size.height * 0.070),
|
||||
child: Container(
|
||||
height: MediaQuery.of(context).size.height * 0.070,
|
||||
decoration: BoxDecoration(
|
||||
border: Border(
|
||||
bottom:
|
||||
BorderSide(color: Theme.of(context).dividerColor, width: 0.5), //width: 0.7
|
||||
),
|
||||
color: Colors.white),
|
||||
child: Center(
|
||||
child: TabBar(
|
||||
isScrollable: false,
|
||||
controller: _tabController,
|
||||
indicatorColor: Colors.transparent,
|
||||
indicatorWeight: 1.0,
|
||||
indicatorSize: TabBarIndicatorSize.tab,
|
||||
labelColor: Theme.of(context).primaryColor,
|
||||
labelPadding: EdgeInsets.only(top: 0, left: 0, right: 0, bottom: 0),
|
||||
unselectedLabelColor: Colors.grey[800],
|
||||
tabs: [
|
||||
tabWidget(
|
||||
screenSize,
|
||||
_activeTab == 0,
|
||||
'All Prescription',
|
||||
),
|
||||
tabWidget(
|
||||
screenSize,
|
||||
_activeTab == 1,
|
||||
"Favorite Templates",
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
body: Column(
|
||||
children: [
|
||||
Expanded(
|
||||
child: TabBarView(
|
||||
physics: BouncingScrollPhysics(),
|
||||
controller: _tabController,
|
||||
children: [
|
||||
PrescriptionFormWidget(
|
||||
widget.model, widget.patient, widget.model.prescriptionList),
|
||||
AddFavPrescription(
|
||||
model: widget.model,
|
||||
patient: widget.patient,
|
||||
categoryID: '55',
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget tabWidget(Size screenSize, bool isActive, String title, {int counter = -1}) {
|
||||
return Center(
|
||||
child: Container(
|
||||
height: screenSize.height * 0.070,
|
||||
decoration: TextFieldsUtils.containerBorderDecoration(
|
||||
isActive ? Color(0xFFD02127 /*B8382B*/) : Color(0xFFEAEAEA),
|
||||
isActive ? Color(0xFFD02127) : Color(0xFFEAEAEA),
|
||||
borderRadius: 4,
|
||||
borderWidth: 0),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
AppText(
|
||||
title,
|
||||
fontSize: SizeConfig.textMultiplier * 1.5,
|
||||
color: isActive ? Colors.white : Color(0xFF2B353E),
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
if (counter != -1)
|
||||
Container(
|
||||
margin: EdgeInsets.all(4),
|
||||
width: 15,
|
||||
height: 15,
|
||||
decoration: BoxDecoration(
|
||||
color: isActive ? Colors.white : Color(0xFFD02127),
|
||||
shape: BoxShape.circle,
|
||||
),
|
||||
child: Center(
|
||||
child: FittedBox(
|
||||
child: AppText(
|
||||
"$counter",
|
||||
fontSize: SizeConfig.textMultiplier * 1.5,
|
||||
color: !isActive ? Colors.white : Color(0xFFD02127),
|
||||
fontWeight: FontWeight.w700,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue