From 4fcc698f509ecbf100c8f364ed036fc14794d7f1 Mon Sep 17 00:00:00 2001 From: haroon amjad Date: Mon, 6 Nov 2023 11:36:12 +0300 Subject: [PATCH] CR 6654 done --- lib/pages/insurance/insurance_page.dart | 32 ++++++++++++------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/lib/pages/insurance/insurance_page.dart b/lib/pages/insurance/insurance_page.dart index 5d19789a..dc17520b 100644 --- a/lib/pages/insurance/insurance_page.dart +++ b/lib/pages/insurance/insurance_page.dart @@ -184,24 +184,24 @@ class InsurancePage extends StatelessWidget { void updateManually(BuildContext context, String errorMsg, String patientIdentificationID, int patientID, String mobileNumber) { ConfirmDialog dialog = new ConfirmDialog( context: context, - // confirmMessage: errorMsg + ". " + TranslationBase.of(context).habibCallCenter, - // okText: TranslationBase.of(context).ok, - // cancelText: TranslationBase.of(context).cancel, - confirmMessage: errorMsg + ". " + TranslationBase.of(context).updateInsuranceManuallyDialog, - okText: TranslationBase.of(context).yes, - cancelText: TranslationBase.of(context).no, + confirmMessage: errorMsg + ". " + TranslationBase.of(context).habibCallCenter, + okText: TranslationBase.of(context).ok, + cancelText: TranslationBase.of(context).cancel, + // confirmMessage: errorMsg + ". " + TranslationBase.of(context).updateInsuranceManuallyDialog, + // okText: TranslationBase.of(context).yes, + // cancelText: TranslationBase.of(context).no, okFunction: () => { Navigator.pop(context), - Navigator.push( - context, - FadePage( - page: UpdateInsuranceManually( - patientIdentificationNo: patientIdentificationID, - patientID: patientID, - patientMobileNumber: mobileNumber, - ), - ), - ), + // Navigator.push( + // context, + // FadePage( + // page: UpdateInsuranceManually( + // patientIdentificationNo: patientIdentificationID, + // patientID: patientID, + // patientMobileNumber: mobileNumber, + // ), + // ), + // ), }, cancelFunction: () => {}); dialog.showAlertDialog(context);