Commit 0b493a37 by huangfusuper

修正补批时替换参数没有替换成功的BUG

parent fd2697ec
...@@ -200,7 +200,7 @@ public class ApiFlowOperatingServiceImpl implements ApiFlowOperatingService { ...@@ -200,7 +200,7 @@ public class ApiFlowOperatingServiceImpl implements ApiFlowOperatingService {
String param = PlaceholderUtils.formatBizDateParam(runParamWrapped.getPrivateParam(), PlaceholderEnum.DATE_PLACEHOLDER.getName(), repeatTime, 0); String param = PlaceholderUtils.formatBizDateParam(runParamWrapped.getPrivateParam(), PlaceholderEnum.DATE_PLACEHOLDER.getName(), repeatTime, 0);
String dateFormat = DateUtil.dateFormat(new Date(), nowDateFormat); String dateFormat = DateUtil.dateFormat(new Date(), nowDateFormat);
param = PlaceholderUtils.formatBizDateParam(param, PlaceholderEnum.DATE_PLACEHOLDER.getName(), dateFormat, 0); param = PlaceholderUtils.formatBizDateParam(param, PlaceholderEnum.NOW_DATE_PLACEHOLDER.getName(), dateFormat, 0);
//设置替换完成后的参数 //设置替换完成后的参数
runParamWrapped.setPrivateParam(param); runParamWrapped.setPrivateParam(param);
} }
......
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