add selected patient, business and business user

This commit is contained in:
2024-08-20 14:02:33 +02:00
parent 69c52e5369
commit 9b9f678d3d
2 changed files with 6 additions and 0 deletions

View File

@@ -90,7 +90,10 @@ class _PatientViewState extends State<PatientView> {
width: 660,
child: PatientNotes(
patientAppId: snapshot.data!.app_id,
selectedPatient: snapshot.data!,
signedInUser: widget.arguments.signedInUser,
business: widget.arguments.business,
businessUser: widget.arguments.businessUser,
type: widget.arguments.type,
),
),

View File

@@ -98,7 +98,10 @@ class _PatientViewState extends State<PatientViewPersonal> {
width: 660,
child: PatientNotes(
patientAppId: snapshot.data!.app_id,
selectedPatient: snapshot.data!,
signedInUser: widget.arguments.signedInUser,
business: widget.arguments.business,
businessUser: widget.arguments.businessUser,
type: widget.arguments.type,
),
),