You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
286 lines
12 KiB
Dart
286 lines
12 KiB
Dart
import 'package:diplomaticquarterapp/core/viewModels/project_view_model.dart';
|
|
import 'package:diplomaticquarterapp/models/InPatientServices/get_inpatient_advance_requests_response_model.dart';
|
|
import 'package:diplomaticquarterapp/services/clinic_services/get_clinic_service.dart';
|
|
import 'package:diplomaticquarterapp/theme/colors.dart';
|
|
import 'package:diplomaticquarterapp/uitl/app_toast.dart';
|
|
import 'package:diplomaticquarterapp/uitl/gif_loader_dialog_utils.dart';
|
|
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
|
import 'package:diplomaticquarterapp/uitl/utils_new.dart';
|
|
import 'package:diplomaticquarterapp/widgets/buttons/defaultButton.dart';
|
|
import 'package:diplomaticquarterapp/widgets/in_app_browser/InAppBrowser.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:share_plus/share_plus.dart';
|
|
|
|
class InPatientPendingAdvancePayment extends StatefulWidget {
|
|
InPatientAdvanceResponseModel inPatientAdvanceResponseModel;
|
|
bool isHasData;
|
|
|
|
InPatientPendingAdvancePayment({this.isHasData, this.inPatientAdvanceResponseModel});
|
|
|
|
@override
|
|
State<InPatientPendingAdvancePayment> createState() => _InPatientPendingAdvancePaymentState();
|
|
}
|
|
|
|
class _InPatientPendingAdvancePaymentState extends State<InPatientPendingAdvancePayment> {
|
|
ProjectViewModel projectViewModel;
|
|
InAppBrowser browser = new InAppBrowser();
|
|
|
|
var _InAppBrowserOptions = InAppBrowserClassOptions(
|
|
inAppWebViewGroupOptions: InAppWebViewGroupOptions(
|
|
crossPlatform: InAppWebViewOptions(useShouldOverrideUrlLoading: true, transparentBackground: false),
|
|
ios: IOSInAppWebViewOptions(applePayAPIEnabled: true, isFraudulentWebsiteWarningEnabled: false)),
|
|
crossPlatform: InAppBrowserOptions(hideUrlBar: true, toolbarTopBackgroundColor: Colors.black),
|
|
android: AndroidInAppBrowserOptions(),
|
|
ios:
|
|
IOSInAppBrowserOptions(hideToolbarBottom: true, toolbarBottomBackgroundColor: Colors.white, closeButtonColor: Colors.white, presentationStyle: IOSUIModalPresentationStyle.OVER_FULL_SCREEN));
|
|
|
|
@override
|
|
void initState() {
|
|
// browser = new InAppBrowser(onLoadStartCallback: onBrowserLoadStart);
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
projectViewModel = Provider.of(context);
|
|
return Padding(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Container(
|
|
width: double.infinity,
|
|
child: Container(
|
|
decoration: cardRadius(12),
|
|
margin: EdgeInsets.zero,
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(12.0),
|
|
child: widget.isHasData && widget.inPatientAdvanceResponseModel.responseInpatientAdvanceInfo != null
|
|
? Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
"Payment request for: ",
|
|
// TranslationBase.of(context).covidBookAppo,
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 16,
|
|
letterSpacing: -0.64,
|
|
),
|
|
),
|
|
mHeight(6),
|
|
Row(
|
|
children: [
|
|
Text(
|
|
TranslationBase.of(context).patientName + ":",
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 10,
|
|
letterSpacing: -0.6,
|
|
color: CustomColors.grey,
|
|
),
|
|
),
|
|
mWidth(3),
|
|
Text(
|
|
projectViewModel.user.firstName + " " + projectViewModel.user.lastName,
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 12,
|
|
letterSpacing: -0.48,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Row(
|
|
children: [
|
|
Text(
|
|
TranslationBase.of(context).identificationNumber + ":",
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 10,
|
|
letterSpacing: -0.6,
|
|
color: CustomColors.grey,
|
|
),
|
|
),
|
|
mWidth(3),
|
|
Text(
|
|
projectViewModel.user.patientIdentificationNo,
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 12,
|
|
letterSpacing: -0.48,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Row(
|
|
children: [
|
|
Text(
|
|
TranslationBase.of(context).mrn + ":",
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 10,
|
|
letterSpacing: -0.6,
|
|
color: CustomColors.grey,
|
|
),
|
|
),
|
|
mWidth(3),
|
|
Text(
|
|
projectViewModel.user.patientID.toString(),
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 12,
|
|
letterSpacing: -0.48,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
)
|
|
: getNoDataWidget(context),
|
|
),
|
|
),
|
|
),
|
|
mHeight(12),
|
|
// Expanded(child: Container()),
|
|
widget.isHasData
|
|
? Container(
|
|
decoration: cardRadius(12.0),
|
|
margin: EdgeInsets.zero,
|
|
padding: EdgeInsets.all(12.0),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Text(
|
|
TranslationBase.of(context).patientShareTotalToDo,
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 16,
|
|
letterSpacing: -0.64,
|
|
),
|
|
),
|
|
Text(
|
|
TranslationBase.of(context).sar + " ${widget.inPatientAdvanceResponseModel.responseInpatientAdvanceInfo[0].requestedAmount}",
|
|
style: TextStyle(
|
|
fontWeight: FontWeight.bold,
|
|
fontSize: 24,
|
|
letterSpacing: -0.64,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
SizedBox(height: 12),
|
|
Text(
|
|
TranslationBase.of(context).YouCanPayByTheFollowingOptions,
|
|
style: TextStyle(
|
|
fontSize: 14.0,
|
|
fontWeight: FontWeight.w600,
|
|
color: Color(0xff2B353E),
|
|
letterSpacing: -0.64,
|
|
),
|
|
),
|
|
SizedBox(height: 12),
|
|
SizedBox(
|
|
width: MediaQuery.of(context).size.width * 0.75,
|
|
child: getPaymentMethods(),
|
|
),
|
|
SizedBox(height: 12),
|
|
DefaultButton(
|
|
TranslationBase.of(context).payNow.toUpperCase(),
|
|
() {
|
|
getInPatientPaymentLink(false);
|
|
},
|
|
// : null,
|
|
color: CustomColors.green,
|
|
disabledColor: CustomColors.grey2,
|
|
),
|
|
SizedBox(height: 12),
|
|
Text(
|
|
TranslationBase.of(context).copyLinkTxt,
|
|
style: TextStyle(
|
|
fontSize: 14.0,
|
|
fontWeight: FontWeight.w600,
|
|
color: Color(0xff2B353E),
|
|
letterSpacing: -0.64,
|
|
),
|
|
),
|
|
SizedBox(height: 12),
|
|
DefaultButton(
|
|
TranslationBase.of(context).copyLink.toUpperCase(),
|
|
() {
|
|
getInPatientPaymentLink(true);
|
|
},
|
|
svgIcon: "assets/images/new/copy.svg",
|
|
color: CustomColors.accentColor,
|
|
disabledColor: CustomColors.grey2,
|
|
),
|
|
],
|
|
),
|
|
)
|
|
: Container(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
onBrowserLoadStart(String url) {
|
|
MyInAppBrowser.successURLS.forEach((element) {
|
|
if (url.contains(element)) {
|
|
if (browser.isOpened()) browser.close();
|
|
MyInAppBrowser.isPaymentDone = true;
|
|
return;
|
|
}
|
|
});
|
|
|
|
MyInAppBrowser.errorURLS.forEach((element) {
|
|
if (url.contains(element)) {
|
|
if (browser.isOpened()) browser.close();
|
|
MyInAppBrowser.isPaymentDone = false;
|
|
return;
|
|
}
|
|
});
|
|
}
|
|
|
|
void getInPatientPaymentLink(bool isCopy) {
|
|
ClinicListService service = new ClinicListService();
|
|
GifLoaderDialogUtils.showMyDialog(context);
|
|
int orderID = num.parse(DateTime.now().microsecondsSinceEpoch.toString().substring(7, 15));
|
|
int clinicID = projectViewModel.isPatientAdmitted ? projectViewModel.getAdmissionInfoResponseModel.clinicID : projectViewModel.getAdmissionRequestInfoResponseModel.clinicId;
|
|
service
|
|
.getInPatientPaymentLink(
|
|
projectViewModel.isPatientAdmitted ? projectViewModel.getAdmissionInfoResponseModel.projectID : projectViewModel.getAdmissionRequestInfoResponseModel.projectId,
|
|
projectViewModel.isPatientAdmitted ? projectViewModel.getAdmissionInfoResponseModel.admissionNo : projectViewModel.getAdmissionRequestInfoResponseModel.admissionRequestNo,
|
|
orderID,
|
|
projectViewModel.user.firstName + " " + projectViewModel.user.lastName,
|
|
projectViewModel.user.emailAddress,
|
|
widget.inPatientAdvanceResponseModel.responseInpatientAdvanceInfo[0].requestedAmount,
|
|
projectViewModel.user.patientIdentificationNo,
|
|
clinicID,
|
|
widget.inPatientAdvanceResponseModel.responseInpatientAdvanceInfo[0].paymentRequestID,
|
|
context)
|
|
.then((res) {
|
|
GifLoaderDialogUtils.hideDialog(context);
|
|
if (res["MessageStatus"] == 1) {
|
|
String paymentLink = res["PaymentUrl"];
|
|
print(paymentLink);
|
|
if (isCopy) {
|
|
Share.share(paymentLink);
|
|
} else {
|
|
this.browser.openUrlRequest(urlRequest: URLRequest(url: Uri.parse(paymentLink)), options: _InAppBrowserOptions);
|
|
}
|
|
} else {
|
|
AppToast.showErrorToast(message: res["endUserMessage"]);
|
|
}
|
|
}).catchError((err) {
|
|
GifLoaderDialogUtils.hideDialog(context);
|
|
print(err);
|
|
});
|
|
}
|
|
}
|