|
|
|
|
@ -4,9 +4,11 @@ import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter_widget_from_html/flutter_widget_from_html.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/core/app_assets.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/core/utils/size_utils.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/core/utils/utils.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/extensions/string_extensions.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/extensions/widget_extensions.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/features/lab/lab_view_model.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/features/lab/models/resp_models/patient_lab_orders_response_model.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/generated/locale_keys.g.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/presentation/lab/lab_result_item_view.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/presentation/lab/lab_result_via_hospital/LabResultList.dart';
|
|
|
|
|
@ -14,12 +16,20 @@ import 'package:hmg_patient_app_new/presentation/lab/lab_result_via_hospital/lab
|
|
|
|
|
import 'package:hmg_patient_app_new/theme/colors.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/widgets/appbar/collapsing_list_view.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/widgets/buttons/custom_button.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/widgets/common_bottom_sheet.dart';
|
|
|
|
|
import 'package:hmg_patient_app_new/widgets/loader/bottomsheet_loader.dart';
|
|
|
|
|
import 'package:open_filex/open_filex.dart';
|
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
|
|
|
|
|
class LabResultByHospitals extends StatelessWidget {
|
|
|
|
|
LabResultByHospitals({required this.labOrder, Key? key});
|
|
|
|
|
|
|
|
|
|
late LabViewModel labViewModel;
|
|
|
|
|
PatientLabOrdersResponseModel labOrder;
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
labViewModel = Provider.of<LabViewModel>(context, listen: false);
|
|
|
|
|
return Scaffold(
|
|
|
|
|
backgroundColor: AppColors.bgScaffoldColor,
|
|
|
|
|
body: Column(
|
|
|
|
|
@ -83,33 +93,37 @@ class LabResultByHospitals extends StatelessWidget {
|
|
|
|
|
child: CustomButton(
|
|
|
|
|
text: "Download report".needTranslation,
|
|
|
|
|
onPressed: () async {
|
|
|
|
|
// LoaderBottomSheet.showLoader();
|
|
|
|
|
// await radiologyViewModel.getRadiologyPDF(patientRadiologyResponseModel: widget.patientRadiologyResponseModel, authenticatedUser: _appState.getAuthenticatedUser()!, onError: (err) {
|
|
|
|
|
// LoaderBottomSheet.hideLoader();
|
|
|
|
|
// showCommonBottomSheetWithoutHeight(
|
|
|
|
|
// context,
|
|
|
|
|
// child: Utils.getErrorWidget(loadingText: err),
|
|
|
|
|
// callBackFunc: () {},
|
|
|
|
|
// isFullScreen: false,
|
|
|
|
|
// isCloseButtonVisible: true,
|
|
|
|
|
// );
|
|
|
|
|
// }).then((val) async {
|
|
|
|
|
// LoaderBottomSheet.hideLoader();
|
|
|
|
|
// if (radiologyViewModel.patientRadiologyReportPDFBase64.isNotEmpty) {
|
|
|
|
|
// String path = await Utils.createFileFromString(radiologyViewModel.patientRadiologyReportPDFBase64, "pdf");
|
|
|
|
|
// try {
|
|
|
|
|
// OpenFilex.open(path);
|
|
|
|
|
// } catch (ex) {
|
|
|
|
|
// showCommonBottomSheetWithoutHeight(
|
|
|
|
|
// context,
|
|
|
|
|
// child: Utils.getErrorWidget(loadingText: "Cannot open file".needTranslation),
|
|
|
|
|
// callBackFunc: () {},
|
|
|
|
|
// isFullScreen: false,
|
|
|
|
|
// isCloseButtonVisible: true,
|
|
|
|
|
// );
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
LoaderBottomSheet.showLoader(loadingText: "Generating report, Please wait...".needTranslation);
|
|
|
|
|
await labViewModel
|
|
|
|
|
.getLabResultReportPDF(
|
|
|
|
|
labOrder: labOrder,
|
|
|
|
|
onError: (err) {
|
|
|
|
|
LoaderBottomSheet.hideLoader();
|
|
|
|
|
showCommonBottomSheetWithoutHeight(
|
|
|
|
|
context,
|
|
|
|
|
child: Utils.getErrorWidget(loadingText: err),
|
|
|
|
|
callBackFunc: () {},
|
|
|
|
|
isFullScreen: false,
|
|
|
|
|
isCloseButtonVisible: true,
|
|
|
|
|
);
|
|
|
|
|
})
|
|
|
|
|
.then((val) async {
|
|
|
|
|
LoaderBottomSheet.hideLoader();
|
|
|
|
|
if (labViewModel.patientLabResultReportPDFBase64.isNotEmpty) {
|
|
|
|
|
String path = await Utils.createFileFromString(labViewModel.patientLabResultReportPDFBase64, "pdf");
|
|
|
|
|
try {
|
|
|
|
|
OpenFilex.open(path);
|
|
|
|
|
} catch (ex) {
|
|
|
|
|
showCommonBottomSheetWithoutHeight(
|
|
|
|
|
context,
|
|
|
|
|
child: Utils.getErrorWidget(loadingText: "Cannot open file".needTranslation),
|
|
|
|
|
callBackFunc: () {},
|
|
|
|
|
isFullScreen: false,
|
|
|
|
|
isCloseButtonVisible: true,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
backgroundColor: AppColors.successColor,
|
|
|
|
|
borderColor: AppColors.successColor,
|
|
|
|
|
|