This commit is contained in:
2025-08-05 22:06:14 +08:00
parent e585e0f2d8
commit f066ff218d
2 changed files with 3 additions and 3 deletions

View File

@@ -80,7 +80,7 @@ public class EsignCallBackController extends BaseController {
} catch (Exception e) {
log.error("回调处理失败", e);
}
response.setStatus(HttpServletResponse.SC_OK);
// response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
// response.setStatus(HttpServletResponse.SC_OK);
response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
}
}

View File

@@ -59,7 +59,7 @@ public class EsignNode extends ACommonSuperNode {
Map<String, Object> signParams = buildSignParams(formDataVo, formDataMasterBean, true);
if (signParams == null) throw new RuntimeException("签署参数构建失败");
String esignFlowId = templateService.createBySignTemplate(signParams);
log.info("E签宝签署流程ID: " + esignFlowId);
log.info("E签宝签署流程ID: " + esignFlowId + " , OA超级节点ID" + formDataVo.getToken());
log.info("E签宝合同已发送: " + esignFlowId);
return context.wait("等待签署结束");
} catch (Exception e) {