Commit ebf3c7d4 authored by sherlock's avatar sherlock

Merge branch 'dev_oracle_sherlock' into 'dev_oracle'

JXFP data transfer

See merge request root/atms!206
parents 4ef6fc28 effb3cfe
......@@ -192,7 +192,8 @@ public class JXFP extends FunctionBase implements FreeRefFunction {
}
private static Date strToDate(String strDate) {
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMM");
strDate = strDate + 15;
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd");
ParsePosition pos = new ParsePosition(0);
Date strtodate = formatter.parse(strDate, pos);
return strtodate;
......
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 to comment