|
|
|
|
@ -28,6 +28,7 @@ class ProcedureCard extends StatelessWidget {
|
|
|
|
|
this.patient,
|
|
|
|
|
this.doctorID,
|
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
ProjectViewModel projectViewModel = Provider.of(context);
|
|
|
|
|
@ -253,8 +254,8 @@ class ProcedureCard extends StatelessWidget {
|
|
|
|
|
fontSize: 12,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if (entityList.categoryID == 2 ||
|
|
|
|
|
entityList.categoryID == 4 &&
|
|
|
|
|
if ((entityList.categoryID == 2 ||
|
|
|
|
|
entityList.categoryID == 4) &&
|
|
|
|
|
doctorID == entityList.doctorID)
|
|
|
|
|
InkWell(
|
|
|
|
|
child: Icon(DoctorApp.edit),
|
|
|
|
|
|