|
|
@@ -50,10 +50,12 @@ public class BpmTaskQueryUtil {
|
|
|
// 1、解析获得用户相关的ID、类型
|
|
|
StopWatchUtil.initAndStartLocal(localId, Level.DEBUG, step, "buildTrans");
|
|
|
PartyEntityTransVo trans = BpmTaskBuilder.buildTrans(list, ContextUtil.getCurrentUserId());
|
|
|
-
|
|
|
+ System.out.println("trans = " + trans);
|
|
|
+
|
|
|
// 2、合并请求转换用户信息
|
|
|
StopWatchUtil.stopAndStartNewLocal(localId, step, "trans");
|
|
|
APIResult<PartyEntityTransResultVo> result = partyEntityService.trans(trans);
|
|
|
+ System.out.println("result = " + result);
|
|
|
if(result.isFailed()) {
|
|
|
throw new BaseException(result.getCause());
|
|
|
}
|
|
|
@@ -76,7 +78,8 @@ public class BpmTaskQueryUtil {
|
|
|
}
|
|
|
}
|
|
|
catch (Exception e) {
|
|
|
- throw new BaseException(e);
|
|
|
+ e.printStackTrace();
|
|
|
+ //throw new BaseException(e);
|
|
|
}
|
|
|
finally {
|
|
|
StopWatchUtil.stopAndPrintLocal(localId, step);
|