|
|
|
|
@ -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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|