|
@ -47,7 +47,7 @@ public class JobService {
|
|
|
params.put("startTime", startDate);
|
|
|
params.put("endTime", endDate);
|
|
|
String quotaCode = quotaVo.getCode().replace("_", "");
|
|
|
String quotaCodeImmediately = quotaCode + "immediately1";
|
|
|
String quotaCodeImmediately = quotaCode + "immediately2";
|
|
|
boolean existJob = quartzHelper.isExistJob(quotaCode);
|
|
|
boolean existJobImmediately = quartzHelper.isExistJob(quotaCodeImmediately);
|
|
|
if (existJob && "0".equals(quotaVo.getJobStatus())) {
|
|
@ -88,7 +88,7 @@ public class JobService {
|
|
|
QuotaVo quotaVo = new QuotaVo();
|
|
|
BeanUtils.copyProperties(tjQuota, quotaVo);
|
|
|
String quotaCode = quotaVo.getCode().replace("_", "");
|
|
|
String quotaCodeImmediately = quotaCode + "immediately";
|
|
|
String quotaCodeImmediately = quotaCode + "immediately2";
|
|
|
boolean existJob = quartzHelper.isExistJob(quotaCode);
|
|
|
boolean existJobImmediately = quartzHelper.isExistJob(quotaCodeImmediately);
|
|
|
if (existJob) {
|