1、无法将人员打回bug修复
2、form表单校验后无法重新提交bug修复 3、页面丢失信息bug修复 4、导出excel格式修改limingyu-20240401-app登录曹实业判断修改
parent
189b23bf9e
commit
df9a0e3dfb
|
@ -100,7 +100,7 @@ public class FlowTrainController extends BaseController {
|
||||||
@RequestMapping(value = "/approveUser")
|
@RequestMapping(value = "/approveUser")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public Object approveUser() throws Exception {
|
public Object approveUser() throws Exception {
|
||||||
Map<String,Object> map = new HashMap<String,Object>();
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
PageData pd = this.getPageData();
|
PageData pd = this.getPageData();
|
||||||
trainUsersService.approveUser(pd);
|
trainUsersService.approveUser(pd);
|
||||||
map.put("result", "success");
|
map.put("result", "success");
|
||||||
|
@ -142,7 +142,7 @@ public class FlowTrainController extends BaseController {
|
||||||
@RequestMapping(value = "/endApproval")
|
@RequestMapping(value = "/endApproval")
|
||||||
@ResponseBody
|
@ResponseBody
|
||||||
public Object endApproval() throws Exception {
|
public Object endApproval() throws Exception {
|
||||||
Map<String,Object> map = new HashMap<String,Object>();
|
Map<String, Object> map = new HashMap<String, Object>();
|
||||||
PageData pd = this.getPageData();
|
PageData pd = this.getPageData();
|
||||||
trainUsersService.endApproval(pd);
|
trainUsersService.endApproval(pd);
|
||||||
map.put("result", "success");
|
map.put("result", "success");
|
||||||
|
@ -164,8 +164,10 @@ public class FlowTrainController extends BaseController {
|
||||||
map.put("result", "success");
|
map.put("result", "success");
|
||||||
return map;
|
return map;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取流程节点名称
|
* 获取流程节点名称
|
||||||
|
*
|
||||||
* @date 2024-02-23
|
* @date 2024-02-23
|
||||||
* @author liu jun
|
* @author liu jun
|
||||||
*/
|
*/
|
||||||
|
@ -197,7 +199,11 @@ public class FlowTrainController extends BaseController {
|
||||||
default:
|
default:
|
||||||
throw new Exception("FLOWS_STEP不合法");
|
throw new Exception("FLOWS_STEP不合法");
|
||||||
}
|
}
|
||||||
} else{
|
} else if ("2".equals(request.getString("FLOWS_TYPE"))) {
|
||||||
|
request.getString("FLOWS_STEP");
|
||||||
|
map.put("Department", "指定监管部门");
|
||||||
|
map.put("User", "指定监管部门审批人");
|
||||||
|
} else {
|
||||||
if (request.getString("FLOWS_STEP").equals("0")) {
|
if (request.getString("FLOWS_STEP").equals("0")) {
|
||||||
map.put("Department", "监管部门");
|
map.put("Department", "监管部门");
|
||||||
map.put("User", "监管部门审批人");
|
map.put("User", "监管部门审批人");
|
||||||
|
|
|
@ -116,7 +116,7 @@ public class GuFenWeiTuoCharge extends NodeComponent {
|
||||||
@Override
|
@Override
|
||||||
public boolean isEnd() {
|
public boolean isEnd() {
|
||||||
XgfFlowDto info = this.getRequestData();
|
XgfFlowDto info = this.getRequestData();
|
||||||
if ("0".equals(info.getSTATUS())) {
|
if ("0".equals(info.getSTATUS()) && "1".equals(info.getIterator())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return super.isEnd();
|
return super.isEnd();
|
||||||
|
|
|
@ -32,6 +32,7 @@ public class GuFenWeiTuoSupervise extends NodeComponent {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isAccess() {
|
public boolean isAccess() {
|
||||||
|
System.out.println("2???????");
|
||||||
XgfFlowDto info = this.getRequestData();
|
XgfFlowDto info = this.getRequestData();
|
||||||
// 如果指针没有数据,赋值后自动结束
|
// 如果指针没有数据,赋值后自动结束
|
||||||
if (StringUtils.isBlank(info.getIterator())) {
|
if (StringUtils.isBlank(info.getIterator())) {
|
||||||
|
@ -95,7 +96,7 @@ public class GuFenWeiTuoSupervise extends NodeComponent {
|
||||||
@Override
|
@Override
|
||||||
public boolean isEnd() {
|
public boolean isEnd() {
|
||||||
XgfFlowDto info = this.getRequestData();
|
XgfFlowDto info = this.getRequestData();
|
||||||
if ("0".equals(info.getSTATUS())) {
|
if ("0".equals(info.getSTATUS()) && "2".equals(info.getIterator())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return super.isEnd();
|
return super.isEnd();
|
||||||
|
|
|
@ -99,3 +99,6 @@ http.file.url=http://192.168.192.201:8991/file/
|
||||||
|
|
||||||
#河北秦安文件服务器前缀
|
#河北秦安文件服务器前缀
|
||||||
heBeiQinAnFile=https://file.zcloudchina.com/YTHFile
|
heBeiQinAnFile=https://file.zcloudchina.com/YTHFile
|
||||||
|
|
||||||
|
liteflow.rule-source=flow.xml
|
||||||
|
liteflow.print-execution-log=false
|
||||||
|
|
Loading…
Reference in New Issue