fix Prescriptions Service and design issues

merge-update-with-lab-changes
Mohammad Aljammal 5 years ago committed by Mohammad Aljammal
parent a2ec01be5d
commit 08aa2de69b

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

@ -24,7 +24,8 @@ class DateUtil {
try {
var dateT = date.split('/');
var year = dateT[2].substring(0,4);
return DateTime(int.parse(year),int.parse(dateT[1]),int.parse(dateT[0]));
var dateP = DateTime(int.parse(year),int.parse(dateT[1]),int.parse(dateT[0]));
return dateP;
} catch (e) {
print(e);
}

Loading…
Cancel
Save