Merge branch 'search_out_patient' into 'development'

fix search issue

See merge request Cloud_Solution/doctor_app_flutter!597
merge-requests/598/merge
Mohammad Aljammal 5 years ago
commit e252eb6e1f

@ -714,7 +714,7 @@ class _HomeScreenState extends State<HomeScreen> {
context,
MaterialPageRoute(
builder: (context) =>
PatientSearchScreen(),
PatientSearchScreenNew(),
));
},
),

@ -396,25 +396,22 @@ class _PatientsScreenNewState extends State<PatientsScreenNew> {
isInpatient:
isInpatient,
onTap: () {
// TODO change the parameter to daynamic
Navigator.of(context)
.pushNamed(
PATIENTS_PROFILE,
arguments: {
"patient": item,
"patientType":
patientType,
"from": patient
.getFrom,
"to": patient
.getTo,
"1",
"from": widget.patientSearchRequestModel.from,
"to": widget.patientSearchRequestModel.from,
"isSearch":
isSearch,
"isInpatient":
isInpatient,
"arrivalType":
arrivalType,
"isInpatient":
isInpatient
"7",
});
},
);

Loading…
Cancel
Save