Merge branch 'fix-issues' into 'development'

hussam

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

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

Loading…
Cancel
Save