Merge branches 'development' and 'login_design_fixes' of https://gitlab.com/Cloud_Solution/doctor_app_flutter into login_design_fixes
Conflicts: lib/core/viewModel/authentication_view_model.dart lib/widgets/shared/app_drawer_widget.dartlogin_design_fixes
commit
4dc72d6f35
@ -1,15 +0,0 @@
|
|||||||
package com.example.doctor_app_flutter.Service;
|
|
||||||
|
|
||||||
import com.example.doctor_app_flutter.Model.GetSessionStatusModel;
|
|
||||||
import com.example.doctor_app_flutter.Model.SessionStatusModel;
|
|
||||||
|
|
||||||
|
|
||||||
import retrofit2.Call;
|
|
||||||
import retrofit2.http.Body;
|
|
||||||
import retrofit2.http.POST;
|
|
||||||
|
|
||||||
public interface SessionStatusAPI {
|
|
||||||
|
|
||||||
@POST("LiveCareApi/DoctorApp/GetSessionStatus")
|
|
||||||
Call<SessionStatusModel> getSessionStatusModelData(@Body GetSessionStatusModel getSessionStatusModel);
|
|
||||||
}
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
package com.example.doctor_app_flutter.ui;
|
|
||||||
|
|
||||||
import com.example.doctor_app_flutter.Model.GetSessionStatusModel;
|
|
||||||
import com.example.doctor_app_flutter.Model.SessionStatusModel;
|
|
||||||
|
|
||||||
public interface VideoCallContract {
|
|
||||||
|
|
||||||
interface VideoCallView{
|
|
||||||
|
|
||||||
void onCallSuccessful(SessionStatusModel sessionStatusModel);
|
|
||||||
void onFailure();
|
|
||||||
}
|
|
||||||
|
|
||||||
interface VideoCallPresenter {
|
|
||||||
|
|
||||||
void callClintConnected(GetSessionStatusModel statusModel);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -0,0 +1,137 @@
|
|||||||
|
package com.hmg.hmgDr.Model;
|
||||||
|
|
||||||
|
|
||||||
|
import android.os.Parcel;
|
||||||
|
import android.os.Parcelable;
|
||||||
|
|
||||||
|
import com.google.gson.annotations.Expose;
|
||||||
|
import com.google.gson.annotations.SerializedName;
|
||||||
|
|
||||||
|
|
||||||
|
public class ChangeCallStatusRequestModel implements Parcelable {
|
||||||
|
|
||||||
|
@SerializedName("CallStatus")
|
||||||
|
@Expose
|
||||||
|
private Integer callStatus;
|
||||||
|
@SerializedName("DoctorId")
|
||||||
|
@Expose
|
||||||
|
private Integer doctorId;
|
||||||
|
@SerializedName("generalid")
|
||||||
|
@Expose
|
||||||
|
private String generalid;
|
||||||
|
@SerializedName("TokenID")
|
||||||
|
@Expose
|
||||||
|
private String tokenID;
|
||||||
|
@SerializedName("VC_ID")
|
||||||
|
@Expose
|
||||||
|
private Integer vcId;
|
||||||
|
|
||||||
|
public ChangeCallStatusRequestModel(Integer callStatus, Integer doctorId, String generalid, String tokenID, Integer vcId) {
|
||||||
|
this.callStatus = callStatus;
|
||||||
|
this.doctorId = doctorId;
|
||||||
|
this.generalid = generalid;
|
||||||
|
this.tokenID = tokenID;
|
||||||
|
this.vcId = vcId;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected ChangeCallStatusRequestModel(Parcel in) {
|
||||||
|
if (in.readByte() == 0) {
|
||||||
|
callStatus = null;
|
||||||
|
} else {
|
||||||
|
callStatus = in.readInt();
|
||||||
|
}
|
||||||
|
if (in.readByte() == 0) {
|
||||||
|
doctorId = null;
|
||||||
|
} else {
|
||||||
|
doctorId = in.readInt();
|
||||||
|
}
|
||||||
|
generalid = in.readString();
|
||||||
|
tokenID = in.readString();
|
||||||
|
if (in.readByte() == 0) {
|
||||||
|
vcId = null;
|
||||||
|
} else {
|
||||||
|
vcId = in.readInt();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final Creator<ChangeCallStatusRequestModel> CREATOR = new Creator<ChangeCallStatusRequestModel>() {
|
||||||
|
@Override
|
||||||
|
public ChangeCallStatusRequestModel createFromParcel(Parcel in) {
|
||||||
|
return new ChangeCallStatusRequestModel(in);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ChangeCallStatusRequestModel[] newArray(int size) {
|
||||||
|
return new ChangeCallStatusRequestModel[size];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
public Integer getCallStatus() {
|
||||||
|
return callStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCallStatus(Integer callStatus) {
|
||||||
|
this.callStatus = callStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getDoctorId() {
|
||||||
|
return doctorId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDoctorId(Integer doctorId) {
|
||||||
|
this.doctorId = doctorId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getGeneralid() {
|
||||||
|
return generalid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGeneralid(String generalid) {
|
||||||
|
this.generalid = generalid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTokenID() {
|
||||||
|
return tokenID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTokenID(String tokenID) {
|
||||||
|
this.tokenID = tokenID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getVcId() {
|
||||||
|
return vcId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setVcId(Integer vcId) {
|
||||||
|
this.vcId = vcId;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int describeContents() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void writeToParcel(Parcel dest, int flags) {
|
||||||
|
if (callStatus == null) {
|
||||||
|
dest.writeByte((byte) 0);
|
||||||
|
} else {
|
||||||
|
dest.writeByte((byte) 1);
|
||||||
|
dest.writeInt(callStatus);
|
||||||
|
}
|
||||||
|
if (doctorId == null) {
|
||||||
|
dest.writeByte((byte) 0);
|
||||||
|
} else {
|
||||||
|
dest.writeByte((byte) 1);
|
||||||
|
dest.writeInt(doctorId);
|
||||||
|
}
|
||||||
|
dest.writeString(generalid);
|
||||||
|
dest.writeString(tokenID);
|
||||||
|
if (vcId == null) {
|
||||||
|
dest.writeByte((byte) 0);
|
||||||
|
} else {
|
||||||
|
dest.writeByte((byte) 1);
|
||||||
|
dest.writeInt(vcId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -1,4 +1,4 @@
|
|||||||
package com.example.doctor_app_flutter.Model;
|
package com.hmg.hmgDr.Model;
|
||||||
|
|
||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
@ -1,4 +1,4 @@
|
|||||||
package com.example.doctor_app_flutter.Model;
|
package com.hmg.hmgDr.Model;
|
||||||
|
|
||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
import android.os.Parcelable;
|
import android.os.Parcelable;
|
||||||
@ -1,4 +1,4 @@
|
|||||||
package com.example.doctor_app_flutter.Service;
|
package com.hmg.hmgDr.Service;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.app.Application;
|
import android.app.Application;
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
package com.hmg.hmgDr.Service;
|
||||||
|
|
||||||
|
import com.hmg.hmgDr.Model.ChangeCallStatusRequestModel;
|
||||||
|
import com.hmg.hmgDr.Model.GetSessionStatusModel;
|
||||||
|
import com.hmg.hmgDr.Model.SessionStatusModel;
|
||||||
|
|
||||||
|
|
||||||
|
import retrofit2.Call;
|
||||||
|
import retrofit2.http.Body;
|
||||||
|
import retrofit2.http.POST;
|
||||||
|
|
||||||
|
public interface SessionStatusAPI {
|
||||||
|
|
||||||
|
@POST("LiveCareApi/DoctorApp/GetSessionStatus")
|
||||||
|
Call<SessionStatusModel> getSessionStatusModelData(@Body GetSessionStatusModel getSessionStatusModel);
|
||||||
|
|
||||||
|
@POST("LiveCareApi/DoctorApp/ChangeCallStatus")
|
||||||
|
Call<SessionStatusModel> changeCallStatus(@Body ChangeCallStatusRequestModel changeCallStatusRequestModel);
|
||||||
|
}
|
||||||
@ -0,0 +1,24 @@
|
|||||||
|
package com.hmg.hmgDr.ui;
|
||||||
|
|
||||||
|
import com.hmg.hmgDr.Model.ChangeCallStatusRequestModel;
|
||||||
|
import com.hmg.hmgDr.Model.GetSessionStatusModel;
|
||||||
|
import com.hmg.hmgDr.Model.SessionStatusModel;
|
||||||
|
|
||||||
|
public interface VideoCallContract {
|
||||||
|
|
||||||
|
interface VideoCallView {
|
||||||
|
|
||||||
|
void onCallSuccessful(SessionStatusModel sessionStatusModel);
|
||||||
|
|
||||||
|
void onCallChangeCallStatusSuccessful(SessionStatusModel sessionStatusModel);
|
||||||
|
|
||||||
|
void onFailure();
|
||||||
|
}
|
||||||
|
|
||||||
|
interface VideoCallPresenter {
|
||||||
|
|
||||||
|
void callClintConnected(GetSessionStatusModel statusModel);
|
||||||
|
|
||||||
|
void callChangeCallStatus(ChangeCallStatusRequestModel statusModel);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,118 @@
|
|||||||
|
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/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 Selected 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,762 @@
|
|||||||
|
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: () {
|
||||||
|
setState(() {
|
||||||
|
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,
|
||||||
|
"Favorite Templates",
|
||||||
|
),
|
||||||
|
tabWidget(
|
||||||
|
screenSize,
|
||||||
|
_activeTab == 1,
|
||||||
|
'All Prescription',
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
body: Column(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: TabBarView(
|
||||||
|
physics: BouncingScrollPhysics(),
|
||||||
|
controller: _tabController,
|
||||||
|
children: [
|
||||||
|
AddFavPrescription(
|
||||||
|
model: widget.model,
|
||||||
|
patient: widget.patient,
|
||||||
|
categoryID: '55',
|
||||||
|
),
|
||||||
|
PrescriptionFormWidget(
|
||||||
|
widget.model, widget.patient, widget.model.prescriptionList),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
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,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,76 @@
|
|||||||
|
import 'package:doctor_app_flutter/core/viewModel/medicine_view_model.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/dialogs/dailog-list-select.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/text_fields/app-textfield-custom.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class PrescriptionTextFiled extends StatefulWidget {
|
||||||
|
dynamic element;
|
||||||
|
final String elementError;
|
||||||
|
final List<dynamic> elementList;
|
||||||
|
final String keyName;
|
||||||
|
final String keyId;
|
||||||
|
final String hintText;
|
||||||
|
final double width;
|
||||||
|
final Function(dynamic) okFunction;
|
||||||
|
|
||||||
|
PrescriptionTextFiled(
|
||||||
|
{Key key,
|
||||||
|
@required this.element,
|
||||||
|
@required this.elementError,
|
||||||
|
this.width,
|
||||||
|
this.elementList,
|
||||||
|
this.keyName,
|
||||||
|
this.keyId,
|
||||||
|
this.hintText,
|
||||||
|
this.okFunction})
|
||||||
|
: super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
_PrescriptionTextFiledState createState() => _PrescriptionTextFiledState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _PrescriptionTextFiledState extends State<PrescriptionTextFiled> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Container(
|
||||||
|
width: widget.width ?? null,
|
||||||
|
child: InkWell(
|
||||||
|
onTap: widget.elementList != null
|
||||||
|
? () {
|
||||||
|
Helpers.hideKeyboard(context);
|
||||||
|
ListSelectDialog dialog = ListSelectDialog(
|
||||||
|
list: widget.elementList,
|
||||||
|
attributeName: '${widget.keyName}',
|
||||||
|
attributeValueId: '${widget.keyId}',
|
||||||
|
okText: TranslationBase.of(context).ok,
|
||||||
|
okFunction: (selectedValue) =>
|
||||||
|
widget.okFunction(selectedValue),
|
||||||
|
);
|
||||||
|
showDialog(
|
||||||
|
barrierDismissible: false,
|
||||||
|
context: context,
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
return dialog;
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
: null,
|
||||||
|
child: AppTextFieldCustom(
|
||||||
|
hintText: widget.hintText,
|
||||||
|
dropDownText: widget.elementList.length == 1
|
||||||
|
? widget.elementList[0]['${widget.keyName}']
|
||||||
|
: widget.element != null
|
||||||
|
? widget.element['${widget.keyName}']
|
||||||
|
: null,
|
||||||
|
isTextFieldHasSuffix: true,
|
||||||
|
validationError:
|
||||||
|
widget.elementList.length != 1 ? widget.elementError : null,
|
||||||
|
enabled: false,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue