Commit 80b52de7 by Kunj Gupta

Fixed - Date formate issue in MyRequest screen.

parent b2fa3b84
......@@ -985,7 +985,7 @@ public class Util {
public static long getDateTimeForMyRequestFromString(String strDate) {
SimpleDateFormat df = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = null;
try {
date = df.parse(strDate);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment