Merge branch 'fix-issues' into 'development'
Fix issues See merge request Cloud_Solution/doctor_app_flutter!419merge-requests/420/merge
commit
7f7f7611f3
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,329 @@
|
|||||||
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/viewModel/InsuranceViewModel.dart';
|
||||||
|
import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/models/patient/patiant_info_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/screens/base/base_view.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/date-utils.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/patients/profile/patient-profile-header-new-design-app-bar.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/Text.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
class InsuranceApprovalsDetails extends StatefulWidget {
|
||||||
|
PatiantInformtion patient;
|
||||||
|
int indexInsurance;
|
||||||
|
InsuranceApprovalsDetails({this.patient, this.indexInsurance});
|
||||||
|
@override
|
||||||
|
_InsuranceApprovalsDetailsState createState() =>
|
||||||
|
_InsuranceApprovalsDetailsState(
|
||||||
|
patient: patient, indexInsurance: indexInsurance);
|
||||||
|
}
|
||||||
|
|
||||||
|
class _InsuranceApprovalsDetailsState extends State<InsuranceApprovalsDetails> {
|
||||||
|
PatiantInformtion patient;
|
||||||
|
int indexInsurance;
|
||||||
|
|
||||||
|
_InsuranceApprovalsDetailsState({this.patient, this.indexInsurance});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
ProjectViewModel projectViewModel = Provider.of(context);
|
||||||
|
final routeArgs = ModalRoute.of(context).settings.arguments as Map;
|
||||||
|
|
||||||
|
return BaseView<InsuranceViewModel>(
|
||||||
|
onModelReady: patient.appointmentNo != null
|
||||||
|
? (model) => model.getInsuranceApproval(patient,
|
||||||
|
appointmentNo: patient.appointmentNo)
|
||||||
|
: (model) => model.getInsuranceApproval(patient),
|
||||||
|
builder: (BuildContext context, InsuranceViewModel model, Widget child) =>
|
||||||
|
AppScaffold(
|
||||||
|
isShowAppBar: true,
|
||||||
|
baseViewModel: model,
|
||||||
|
appBar: PatientProfileHeaderNewDesignAppBar(
|
||||||
|
patient, patient.patientType.toString(), patient.arrivedOn),
|
||||||
|
body: SingleChildScrollView(
|
||||||
|
child: Container(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
'Insurance',
|
||||||
|
fontSize: 15.0,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
fontFamily: 'Poppins',
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
AppText(
|
||||||
|
'Approvals',
|
||||||
|
fontSize: 30.0,
|
||||||
|
fontWeight: FontWeight.w700,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
margin: EdgeInsets.all(10),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
border: Border.all(
|
||||||
|
width: 0.5,
|
||||||
|
color: Colors.white,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.all(
|
||||||
|
Radius.circular(15.0),
|
||||||
|
),
|
||||||
|
color: Colors.white),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Texts(
|
||||||
|
model.insuranceApproval[indexInsurance]
|
||||||
|
.approvalDetails.status,
|
||||||
|
color:
|
||||||
|
model.insuranceApproval[indexInsurance]
|
||||||
|
.approvalDetails.status ==
|
||||||
|
"Approved"
|
||||||
|
? Color(0xff359846)
|
||||||
|
: Color(0xffD02127),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Texts(
|
||||||
|
model.insuranceApproval[indexInsurance]
|
||||||
|
.doctorName
|
||||||
|
.toUpperCase(),
|
||||||
|
color: Colors.black,
|
||||||
|
fontSize: 18,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsets.symmetric(horizontal: 8.0),
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Column(
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
height: 85.0,
|
||||||
|
width: 85.0,
|
||||||
|
child: CircleAvatar(
|
||||||
|
radius:
|
||||||
|
SizeConfig.imageSizeMultiplier *
|
||||||
|
12,
|
||||||
|
// radius: (52)
|
||||||
|
child: ClipRRect(
|
||||||
|
borderRadius:
|
||||||
|
BorderRadius.circular(50),
|
||||||
|
child: Image.network(
|
||||||
|
model
|
||||||
|
.insuranceApproval[
|
||||||
|
indexInsurance]
|
||||||
|
.doctorImage,
|
||||||
|
fit: BoxFit.fill,
|
||||||
|
width: 700,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
backgroundColor: Colors.transparent,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(
|
||||||
|
horizontal: 8.0),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment:
|
||||||
|
CrossAxisAlignment.start,
|
||||||
|
//mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
height: 25.0,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Texts(
|
||||||
|
'Clinic: ',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Texts(
|
||||||
|
model
|
||||||
|
.insuranceApproval[
|
||||||
|
indexInsurance]
|
||||||
|
.clinicName,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Texts(
|
||||||
|
'Approval No: ',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Texts(
|
||||||
|
model
|
||||||
|
.insuranceApproval[
|
||||||
|
indexInsurance]
|
||||||
|
.approvalNo
|
||||||
|
.toString(),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Texts(
|
||||||
|
'Unused Count:',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Texts(model
|
||||||
|
.insuranceApproval[
|
||||||
|
indexInsurance]
|
||||||
|
.unUsedCount
|
||||||
|
.toString())
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Texts(
|
||||||
|
'Company Name :',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Texts('Sample')
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 25.0,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Texts(
|
||||||
|
'Receipt on :',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Texts(
|
||||||
|
'${DateUtils.getDayMonthYearDateFormatted(DateUtils.getDateTimeFromServerFormat(model.insuranceApproval[indexInsurance].rceiptOn), isArabic: projectViewModel.isArabic)}',
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
fontSize: 14,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Texts(
|
||||||
|
'Exp on:',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Texts(
|
||||||
|
'${DateUtils.getDayMonthYearDateFormatted(DateUtils.getDateTimeFromServerFormat(model.insuranceApproval[indexInsurance].expiryDate), isArabic: projectViewModel.isArabic)}',
|
||||||
|
color: Colors.black,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
fontSize: 14,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(
|
||||||
|
height: 20.0,
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment:
|
||||||
|
MainAxisAlignment.spaceAround,
|
||||||
|
children: [
|
||||||
|
Texts('Procedure'),
|
||||||
|
Texts('Status'),
|
||||||
|
Texts('Usage Status')
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Divider(
|
||||||
|
color: Colors.black45,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment:
|
||||||
|
MainAxisAlignment.spaceAround,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
height: MediaQuery.of(context)
|
||||||
|
.size
|
||||||
|
.height *
|
||||||
|
0.2, //130.0,
|
||||||
|
width: MediaQuery.of(context)
|
||||||
|
.size
|
||||||
|
.width *
|
||||||
|
0.33,
|
||||||
|
child: Texts(model
|
||||||
|
.insuranceApproval[indexInsurance]
|
||||||
|
.approvalDetails
|
||||||
|
.procedureName),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
height: MediaQuery.of(context)
|
||||||
|
.size
|
||||||
|
.height *
|
||||||
|
0.2,
|
||||||
|
width: MediaQuery.of(context)
|
||||||
|
.size
|
||||||
|
.width *
|
||||||
|
0.33,
|
||||||
|
child: Texts(model
|
||||||
|
.insuranceApproval[indexInsurance]
|
||||||
|
.approvalDetails
|
||||||
|
.status),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
height: MediaQuery.of(context)
|
||||||
|
.size
|
||||||
|
.height *
|
||||||
|
0.2,
|
||||||
|
width: MediaQuery.of(context)
|
||||||
|
.size
|
||||||
|
.width *
|
||||||
|
0.25,
|
||||||
|
child: Texts(model
|
||||||
|
.insuranceApproval[indexInsurance]
|
||||||
|
.approvalDetails
|
||||||
|
.isInvoicedDesc),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,182 @@
|
|||||||
|
import 'package:doctor_app_flutter/core/viewModel/project_view_model.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/date-utils.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/patients/profile/large_avatar.dart';
|
||||||
|
import 'package:eva_icons_flutter/eva_icons_flutter.dart';
|
||||||
|
import 'package:flutter/cupertino.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
||||||
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
|
import 'StarRating.dart';
|
||||||
|
import 'Text.dart';
|
||||||
|
|
||||||
|
class DoctorCardInsurance extends StatelessWidget {
|
||||||
|
final String doctorName;
|
||||||
|
final String branch;
|
||||||
|
final DateTime appointmentDate;
|
||||||
|
final String profileUrl;
|
||||||
|
final String invoiceNO;
|
||||||
|
final String orderNo;
|
||||||
|
final Function onTap;
|
||||||
|
final bool isPrescriptions;
|
||||||
|
final String clinic;
|
||||||
|
final String approvalStatus;
|
||||||
|
final String patientOut;
|
||||||
|
|
||||||
|
DoctorCardInsurance(
|
||||||
|
{this.doctorName,
|
||||||
|
this.branch,
|
||||||
|
this.profileUrl,
|
||||||
|
this.invoiceNO,
|
||||||
|
this.onTap,
|
||||||
|
this.appointmentDate,
|
||||||
|
this.orderNo,
|
||||||
|
this.isPrescriptions = false,
|
||||||
|
this.clinic,
|
||||||
|
this.approvalStatus,
|
||||||
|
this.patientOut});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
ProjectViewModel projectViewModel = Provider.of(context);
|
||||||
|
return Container(
|
||||||
|
margin: EdgeInsets.all(10),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
border: Border(
|
||||||
|
left: BorderSide(
|
||||||
|
color: approvalStatus == "Approved"
|
||||||
|
? Color(0xff359846)
|
||||||
|
: Color(0xffD02127),
|
||||||
|
width: 3.5),
|
||||||
|
top: BorderSide(color: Colors.white, width: 0.5),
|
||||||
|
bottom: BorderSide(color: Colors.white, width: 0.5),
|
||||||
|
right: BorderSide(color: Colors.white, width: 0.5),
|
||||||
|
),
|
||||||
|
color: Colors.white),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(15.0),
|
||||||
|
child: InkWell(
|
||||||
|
onTap: onTap,
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: <Widget>[
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
Texts(
|
||||||
|
"$approvalStatus",
|
||||||
|
color: approvalStatus == "Approved"
|
||||||
|
? Color(0xff359846)
|
||||||
|
: Color(0xffD02127),
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: BorderRadius.all(
|
||||||
|
Radius.circular(25.0),
|
||||||
|
),
|
||||||
|
color: Color(0xff2E303A)),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(5.0),
|
||||||
|
child: Texts(
|
||||||
|
'$patientOut',
|
||||||
|
color: Colors.white,
|
||||||
|
fontSize: 15.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Texts(
|
||||||
|
doctorName,
|
||||||
|
bold: true,
|
||||||
|
)),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.end,
|
||||||
|
children: <Widget>[
|
||||||
|
Container(
|
||||||
|
child: LargeAvatar(
|
||||||
|
name: doctorName,
|
||||||
|
url: profileUrl,
|
||||||
|
),
|
||||||
|
width: 55,
|
||||||
|
height: 55,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
flex: 4,
|
||||||
|
child: Container(
|
||||||
|
margin: EdgeInsets.all(10),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: <Widget>[
|
||||||
|
if (orderNo != null && !isPrescriptions)
|
||||||
|
Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Texts(
|
||||||
|
'order No:',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Texts(
|
||||||
|
orderNo ?? '',
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (invoiceNO != null && !isPrescriptions)
|
||||||
|
Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Texts(
|
||||||
|
'Invoice:',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Texts(
|
||||||
|
invoiceNO,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (isPrescriptions)
|
||||||
|
Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Texts(
|
||||||
|
'Clinic: ',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Texts(
|
||||||
|
clinic,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
if (branch != null)
|
||||||
|
Row(
|
||||||
|
children: <Widget>[
|
||||||
|
Texts(
|
||||||
|
'Approval No: ',
|
||||||
|
color: Colors.grey[500],
|
||||||
|
),
|
||||||
|
Texts(
|
||||||
|
branch,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
)
|
||||||
|
]),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Icon(
|
||||||
|
EvaIcons.eye,
|
||||||
|
size: 38.0,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue