Merge branch 'fix-issues' into 'development'

hussam

See merge request Cloud_Solution/doctor_app_flutter!339
merge-requests/340/head
Mohammad Aljammal 4 years ago
commit c00d4107b9

@ -863,6 +863,7 @@ class _PrescriptionFormWidgetState extends State<PrescriptionFormWidget> {
),
),
),
SizedBox(height: spaceBetweenTextFileds),
Container(
height: screenSize.height * 0.070,
child: InkWell(
@ -1137,11 +1138,13 @@ class _PrescriptionFormWidgetState extends State<PrescriptionFormWidget> {
onPressed: () {
Navigator.pop(context);
postProcedure(
icdCode:
model.patientAssessmentList[0].icdCode10ID.isEmpty
icdCode: model.patientAssessmentList.isNotEmpty
? model.patientAssessmentList[0].icdCode10ID
.isEmpty
? "test"
: model.patientAssessmentList[0].icdCode10ID
.toString(),
.toString()
: "test",
// icdCode: model
// .patientAssessmentList
// .map((value) => value

Loading…
Cancel
Save