Skip to content

Commit

Permalink
Merge pull request #584 from egovernments/develop
Browse files Browse the repository at this point in the history
PFM-4640
  • Loading branch information
rahuldevgarg authored Sep 25, 2023
2 parents 4a3d847 + 25f62bd commit a9b5de8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import 'package:provider/provider.dart';
import 'package:screenshot/screenshot.dart';

import '../components/house_connection_and_bill/js_connnector.dart' as js;
import '../env/app_config.dart';
import '../model/localization/language.dart';
import '../repository/core_repo.dart';
import 'common_provider.dart';
Expand Down Expand Up @@ -620,7 +621,7 @@ class CollectPaymentProvider with ChangeNotifier {
"tenantId": tenantId
},
"callbackUrl":
"https://mgramseva-uat.psegs.in/mgramseva/paymentSuccess",
"${apiBaseUrl}mgramseva/paymentSuccess",
"additionalDetails": {"isWhatsapp": false,"connectionType":query["connectionType"]}
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class _PaymentSuccessState extends State<PaymentSuccess> {
backButton: false,
isWithoutLogin: true,
isConsumer: true,
amount: '${transactionObject.transaction!.first.currencyCode!}${transactionObject.transaction!.first.transactionAmount!}',
amount: '${transactionObject.transaction!.first.currencyCode! ?? ''} ${transactionObject.transaction!.first.txnAmount! ?? '0'}',
)
: NoLoginFailurePage(i18.payment.PAYMENT_FAILED);
}
Expand Down

0 comments on commit a9b5de8

Please sign in to comment.