|
@@ -15,6 +15,7 @@ import com.usky.common.mybatis.core.AbstractCrudService;
|
|
|
import com.usky.iot.service.vo.PmReportReadersVO;
|
|
|
import com.usky.iot.service.vo.PmSubmitCountResponseVO;
|
|
|
import com.usky.system.domain.SysUser;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -313,6 +314,82 @@ public class PmTimeConfServiceImpl extends AbstractCrudService<PmTimeConfMapper,
|
|
|
return pmTimeConfMapper.selectOne(timeConfQuery);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void addOrUpdateTimeConf(PmTimeConf pmTimeConf) {
|
|
|
+ String username = SecurityUtils.getUsername();
|
|
|
+ Long deptId = SecurityUtils.getLoginUser().getSysUser().getDeptId();
|
|
|
+ LocalDateTime now = LocalDateTime.now();
|
|
|
+ if (pmTimeConf.getId() == null) {
|
|
|
+ Integer tenantId = SecurityUtils.getTenantId();
|
|
|
+ verificationTimeConf(pmTimeConf);
|
|
|
+ pmTimeConf.setTenantId(tenantId);
|
|
|
+ pmTimeConf.setCreateBy(username);
|
|
|
+ pmTimeConf.setCreateTime(now);
|
|
|
+ pmTimeConf.setDeptId(deptId);
|
|
|
+ pmTimeConfMapper.insert(pmTimeConf);
|
|
|
+ } else {
|
|
|
+ verificationTimeConf(pmTimeConf);
|
|
|
+ pmTimeConf.setUpdateBy(username);
|
|
|
+ pmTimeConf.setUpdateTime(now);
|
|
|
+ pmTimeConfMapper.updateById(pmTimeConf);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void isOpen(Integer isOpen, Integer id) {
|
|
|
+ Long userId = SecurityUtils.getUserId();
|
|
|
+ String username = SecurityUtils.getUsername();
|
|
|
+ LocalDateTime now = LocalDateTime.now();
|
|
|
+ PmTimeConf pmTimeConf = pmTimeConfMapper.selectById(id);
|
|
|
+ if (pmTimeConf == null){
|
|
|
+ throw new BusinessException("配置不存在!联系管理员后重试");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (isOpen == 1) {
|
|
|
+ pmTimeConf.setNotifier(pmTimeConf.getNotifier() + "," + userId);
|
|
|
+ } else if (isOpen == 0) {
|
|
|
+ pmTimeConf.setNotifier(pmTimeConf.getNotifier().replace("," + userId, ""));
|
|
|
+ } else {
|
|
|
+ throw new BusinessException("参数异常,报告提醒开关操作失败!");
|
|
|
+ }
|
|
|
+
|
|
|
+ pmTimeConf.setUpdateBy(username);
|
|
|
+ pmTimeConf.setUpdateTime(now);
|
|
|
+ pmTimeConfMapper.updateById(pmTimeConf);
|
|
|
+ }
|
|
|
+
|
|
|
+ private void verificationTimeConf(PmTimeConf pmTimeConf) {
|
|
|
+ if (StringUtils.isBlank(pmTimeConf.getConfName())) {
|
|
|
+ throw new BusinessException("配置名称不能为空!");
|
|
|
+ } else if (pmTimeConf.getConfName().length() > 64) {
|
|
|
+ throw new BusinessException("配置名称长度不能超过64个字符!");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (StringUtils.isBlank(pmTimeConf.getConfType())) {
|
|
|
+ throw new BusinessException("配置类型不能为空!");
|
|
|
+ } else if (pmTimeConf.getConfType().length() > 64) {
|
|
|
+ throw new BusinessException("配置类型长度不能超过64个字符!");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (pmTimeConf.getStartTime() == null) {
|
|
|
+ throw new BusinessException("开始时间不能为空!");
|
|
|
+ } else if (pmTimeConf.getStartTime().isAfter(pmTimeConf.getEndTime())) {
|
|
|
+ throw new BusinessException("开始时间不能大于结束时间!");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (pmTimeConf.getEndTime() == null) {
|
|
|
+ throw new BusinessException("结束时间不能为空!");
|
|
|
+ } else if (pmTimeConf.getEndTime().isBefore(pmTimeConf.getStartTime())) {
|
|
|
+ throw new BusinessException("结束时间不能小于开始时间!");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (pmTimeConf.getOnTime() == null) {
|
|
|
+ throw new BusinessException("准时时间不能为空!");
|
|
|
+ } else if (pmTimeConf.getOnTime().isBefore(pmTimeConf.getStartTime()) || pmTimeConf.getOnTime().isAfter(pmTimeConf.getEndTime())) {
|
|
|
+ throw new BusinessException("准时时间必须在开始时间和结束时间之间!");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
// 查询用户信息
|
|
|
private List<SysUser> users(Integer tenantId) {
|
|
|
LambdaQueryWrapper<SysUser> userQuery = new LambdaQueryWrapper<>();
|