|
|
|
@ -10,7 +10,6 @@ import com.glxp.api.admin.req.info.SystemParamConfigSaveRequest;
|
|
|
|
|
import com.glxp.api.admin.res.PageSimpleResponse;
|
|
|
|
|
import com.glxp.api.admin.res.info.SystemParamConfigResponse;
|
|
|
|
|
import com.glxp.api.admin.service.info.SystemParamConfigService;
|
|
|
|
|
import com.glxp.api.admin.thread.IoModifyErpTask;
|
|
|
|
|
import com.glxp.api.admin.util.CronUtils;
|
|
|
|
|
import com.glxp.api.common.enums.ResultEnum;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
@ -140,6 +139,34 @@ public class SystemParamConfigController {
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
return ResultVOUtils.error(500, "格式错误!");
|
|
|
|
|
}
|
|
|
|
|
} else if (systemParamConfigSaveRequest.getParamKey().equals("auto_download_thirdSys_data")) {
|
|
|
|
|
try {
|
|
|
|
|
int time = 1;
|
|
|
|
|
if (!"0".equals(systemParamConfigSaveRequest.getParamValue())) {
|
|
|
|
|
time = Integer.parseInt(systemParamConfigSaveRequest.getParamValue());
|
|
|
|
|
}
|
|
|
|
|
String cornStr = CronUtils.parseHourIntervel(time);
|
|
|
|
|
ScheduledEntity scheduledEntity = new ScheduledEntity();
|
|
|
|
|
scheduledEntity.setCron(cornStr);
|
|
|
|
|
scheduledEntity.setCronName("downThirdSysDataTask");
|
|
|
|
|
scheduledDao.modifyScheduled(scheduledEntity);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
return ResultVOUtils.error(500, "格式错误!");
|
|
|
|
|
}
|
|
|
|
|
} else if (systemParamConfigSaveRequest.getParamKey().equals("auto_submit_order")) {
|
|
|
|
|
try {
|
|
|
|
|
int time = 1;
|
|
|
|
|
if (!"0".equals(systemParamConfigSaveRequest.getParamValue())) {
|
|
|
|
|
time = Integer.parseInt(systemParamConfigSaveRequest.getParamValue());
|
|
|
|
|
}
|
|
|
|
|
String cornStr = CronUtils.parseHourIntervel(time);
|
|
|
|
|
ScheduledEntity scheduledEntity = new ScheduledEntity();
|
|
|
|
|
scheduledEntity.setCron(cornStr);
|
|
|
|
|
scheduledEntity.setCronName("submitOrderTask");
|
|
|
|
|
scheduledDao.modifyScheduled(scheduledEntity);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
return ResultVOUtils.error(500, "格式错误!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success("修改成功");
|
|
|
|
|
}
|
|
|
|
|