Commit 4c00ada5 authored by Radheshhathwar's avatar Radheshhathwar
Browse files

Changes the date format

Showing with 1 addition and 1 deletion
+1 -1
......@@ -121,7 +121,7 @@ public class PaymentServiceImpl implements PaymentService {
Date transactionDate = null;
try {
String date = requestData.get("Transaction Date") != null ? requestData.get("Transaction Date") : "";
DateFormat format = new SimpleDateFormat("MMMM d, yyyy", Locale.ENGLISH);
DateFormat format = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");
transactionDate = format.parse(date);
} catch (ParseException e) {
logger.error("parsing date failed.",e);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment