From 14a5fec61a9c3333d1f090f8854ecdfbee40b671 Mon Sep 17 00:00:00 2001 From: haroon amjad Date: Wed, 6 Nov 2024 15:13:42 +0300 Subject: [PATCH] updates --- lib/services/payfort_services/payfort_service.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/services/payfort_services/payfort_service.dart b/lib/services/payfort_services/payfort_service.dart index 50765443..389a1273 100644 --- a/lib/services/payfort_services/payfort_service.dart +++ b/lib/services/payfort_services/payfort_service.dart @@ -54,7 +54,7 @@ class PayfortService extends BaseService { "Pat_Token": result.tokenName, "IsRefund": false, "RemmeberMe": false, - "Reconciliation_Reference": result.reconciliationReference, + // "Reconciliation_Reference": result.reconciliationReference, "LanguageID": 1, "PatientID": patientID }; @@ -161,7 +161,7 @@ class PayfortService extends BaseService { ); if (sdkTokenResponse != null && sdkTokenResponse.sdkToken == null) { - onFailed(sdkTokenResponse.responseMessage ?? ''); + // onFailed(sdkTokenResponse.responseMessage ?? ''); return; } @@ -188,7 +188,7 @@ class PayfortService extends BaseService { ), ); } catch (e) { - onFailed(e.toString()); + // onFailed(e.toString()); } } }