日志打印

This commit is contained in:
xiang2lin 2025-04-07 18:42:31 +08:00
parent e1faf486ce
commit f19ee30d0b
1 changed files with 5 additions and 0 deletions

View File

@ -75,6 +75,7 @@ public class OerDjmlExtServiceImpl implements IOerDjmlExtService {
Map<String, String> headers = entity.getHeaders();
JSONObject bodyObj = JSONObject.parseObject(bodys);
String res = oerValuOf(bodyObj, headers, grpDataSourceCode);
logger.info("oerValuOf接收到return");
// String formmainTableName = headers.get("formmainTableName");
// String forsonTableName = headers.get("forsonTableName");
// String djlx = headers.get("djlx");
@ -108,7 +109,9 @@ public class OerDjmlExtServiceImpl implements IOerDjmlExtService {
// }
// }
if (StrUtil.isNotEmpty(res)){
logger.info("参数准备设置到entity.bodys里");
entity.setBodys(res);
logger.info("设置到entity.bodys里完成准备return");
return entity;
}
}catch (Exception ex ){
@ -175,9 +178,11 @@ public class OerDjmlExtServiceImpl implements IOerDjmlExtService {
logger.info("准备组装费用报销单参数");
//费用报销 expense
res = expense(headers,eventType,summaryId,dataSourceCode, formmainData, forsonData);
logger.info("oerValuOf方法已经组装好参数准备return");
}else if (DjlxEnum.LABOR.type.equals(djlx)){
//劳务费 labor
}
logger.info("oerValuOf方法return");
return res;
}
}