Compare commits
No commits in common. "bbd9f9a98e10c4d71f9e8d18f670ffbc96b7cb32" and "c667ab6f30b348155d0285a1f015d322b1ddfa3e" have entirely different histories.
bbd9f9a98e
...
c667ab6f30
|
@ -80,11 +80,11 @@ public class ApprovalProcessController extends BaseController {
|
||||||
} else {
|
} else {
|
||||||
process.setApprovalStatus(1);
|
process.setApprovalStatus(1);
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
}else {
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (process.getMatterType() == 3) {
|
if (process.getMatterType() == 3) {
|
||||||
gwglLog one = gwglLogService.lambdaQuery()
|
gwglLog one = gwglLogService.lambdaQuery()
|
||||||
.eq(gwglLog::getApplyNo, process.getApprovalNo())
|
.eq(gwglLog::getApplyNo, process.getApprovalNo())
|
||||||
|
@ -99,11 +99,11 @@ public class ApprovalProcessController extends BaseController {
|
||||||
} else {
|
} else {
|
||||||
process.setApprovalStatus(1);
|
process.setApprovalStatus(1);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}else {
|
}else {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (process.getMatterType() == 4) {
|
if (process.getMatterType() == 4) {
|
||||||
gwglLog one = gwglLogService.lambdaQuery()
|
gwglLog one = gwglLogService.lambdaQuery()
|
||||||
.eq(gwglLog::getApplyNo, process.getApprovalNo())
|
.eq(gwglLog::getApplyNo, process.getApprovalNo())
|
||||||
|
@ -118,11 +118,11 @@ public class ApprovalProcessController extends BaseController {
|
||||||
} else {
|
} else {
|
||||||
process.setApprovalStatus(1);
|
process.setApprovalStatus(1);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}else {
|
}else {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
// 如果创建时间为当天的时间
|
// 如果创建时间为当天的时间
|
||||||
if (process.getCreateTime() > System.currentTimeMillis() - 24 * 60 * 60 * 1000) {
|
if (process.getCreateTime() > System.currentTimeMillis() - 24 * 60 * 60 * 1000) {
|
||||||
// 一分钟之内,显示刚刚
|
// 一分钟之内,显示刚刚
|
||||||
|
|
|
@ -51,7 +51,7 @@ public class ApprovalProcess {
|
||||||
@ApiModelProperty("事项类型 4-喝酒 3-请假 2-出差 1-出县")
|
@ApiModelProperty("事项类型 4-喝酒 3-请假 2-出差 1-出县")
|
||||||
private Integer matterType;
|
private Integer matterType;
|
||||||
|
|
||||||
@TableField(exist = false)
|
@ApiModelProperty("日期类型 4-自定义日期 3-近三十日 2-近七日 1-近三日")
|
||||||
private Integer timeType;
|
private Integer timeType;
|
||||||
|
|
||||||
@ApiModelProperty("审批状态:0-未审核 1-通过 2-不通过")
|
@ApiModelProperty("审批状态:0-未审核 1-通过 2-不通过")
|
||||||
|
@ -140,7 +140,4 @@ public class ApprovalProcess {
|
||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String leaveTypeCn;
|
private String leaveTypeCn;
|
||||||
|
|
||||||
@TableField(exist = false)
|
|
||||||
private String processTitles;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue