updates & fixes

merge-update-with-lab-changes
Haroon Amjad 1 year ago
parent fb13096f94
commit ecd4422905

@ -1000,7 +1000,7 @@ class _ToDoState extends State<ToDo> with SingleTickerProviderStateMixin {
okText: "Update insurance",
cancelText: "Continue as cash",
okFunction: () => {openUpdateInsurance()},
cancelFunction: () => {continueAsCash(appo)});
cancelFunction: () => {continueAsCash(appo, false)});
dialog.showAlertDialog(context);
}
}).catchError((err) {
@ -1071,7 +1071,7 @@ class _ToDoState extends State<ToDo> with SingleTickerProviderStateMixin {
okText: TranslationBase.of(context).updateInsuranceText,
cancelText: TranslationBase.of(context).continueCash,
okFunction: () => {openUpdateInsurance()},
cancelFunction: () => {continueAsCash(appo)});
cancelFunction: () => {continueAsCash(appo, false)});
dialog.showAlertDialog(context);
}
}
@ -1112,7 +1112,7 @@ class _ToDoState extends State<ToDo> with SingleTickerProviderStateMixin {
okText: TranslationBase.of(context).updateInsuranceText,
cancelText: TranslationBase.of(context).continueCash,
okFunction: () => {openUpdateInsurance()},
cancelFunction: () => {continueAsCash(appo)});
cancelFunction: () => {continueAsCash(appo, true)});
dialog.showAlertDialog(context);
}
}

Loading…
Cancel
Save