fix missing business user param
This commit is contained in:
@@ -262,7 +262,6 @@ class _WaitingRoomState extends State<WaitingRoom> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void addAppointmentWindow() {
|
void addAppointmentWindow() {
|
||||||
print(widget.personalSelected);
|
|
||||||
showDialog(
|
showDialog(
|
||||||
context: context,
|
context: context,
|
||||||
barrierDismissible: false,
|
barrierDismissible: false,
|
||||||
|
|||||||
@@ -38,7 +38,6 @@ class _PatManagerState extends State<PatManager> {
|
|||||||
setState(() {
|
setState(() {
|
||||||
_selcetedIndex = newValue;
|
_selcetedIndex = newValue;
|
||||||
});
|
});
|
||||||
print("Index: $_selcetedIndex");
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -96,6 +95,7 @@ class _PatManagerState extends State<PatManager> {
|
|||||||
MyPatientList(
|
MyPatientList(
|
||||||
signedInUser: widget.arguments.signedInUser,
|
signedInUser: widget.arguments.signedInUser,
|
||||||
business: widget.arguments.business,
|
business: widget.arguments.business,
|
||||||
|
businessUser: widget.arguments.businessUser,
|
||||||
personalSelected: widget.arguments.personalSelected,
|
personalSelected: widget.arguments.personalSelected,
|
||||||
),
|
),
|
||||||
MihPatientSearch(
|
MihPatientSearch(
|
||||||
|
|||||||
Reference in New Issue
Block a user