fix missing business user param
This commit is contained in:
parent
a47624a56b
commit
cc59c3c6f0
2 changed files with 1 additions and 2 deletions
|
|
@ -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(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue