...
This commit is contained in:
parent
5c9a8a83d8
commit
da4fab24bc
|
@ -90,19 +90,19 @@ public class ActivitiServiceImpl extends BaseServiceImpl<ProcessActivityDao, Pro
|
|||
|
||||
@Override
|
||||
public String getDurationInSecond(Long second) {
|
||||
StringBuilder builder=new StringBuilder();
|
||||
Duration duration=Duration.ofSeconds(second);
|
||||
if(duration.toDays()>0){
|
||||
builder.append(duration.toDays()+"d ");
|
||||
builder.append(duration.minus(Duration.ofDays(duration.toDays())).toHours()+"h");
|
||||
}else if(duration.toHours()>0){
|
||||
builder.append(duration.toHours()+"h ");
|
||||
builder.append(duration.minus(Duration.ofHours(duration.toHours())).toMinutes()+"m");
|
||||
}else if(duration.toMinutes()>0){
|
||||
builder.append(duration.toMinutes()+"m ");
|
||||
builder.append(duration.minus(Duration.ofMinutes(duration.toMinutes())).getSeconds()+"s");
|
||||
}else {
|
||||
builder.append(second+"s");
|
||||
StringBuilder builder = new StringBuilder();
|
||||
Duration duration = Duration.ofSeconds(second);
|
||||
if (duration.toDays() > 0) {
|
||||
builder.append(duration.toDays() + "d ");
|
||||
builder.append(duration.minus(Duration.ofDays(duration.toDays())).toHours() + "h");
|
||||
} else if (duration.toHours() > 0) {
|
||||
builder.append(duration.toHours() + "h ");
|
||||
builder.append(duration.minus(Duration.ofHours(duration.toHours())).toMinutes() + "m");
|
||||
} else if (duration.toMinutes() > 0) {
|
||||
builder.append(duration.toMinutes() + "m ");
|
||||
builder.append(duration.minus(Duration.ofMinutes(duration.toMinutes())).getSeconds() + "s");
|
||||
} else {
|
||||
builder.append(second + "s");
|
||||
}
|
||||
return builder.toString();
|
||||
}
|
||||
|
|
|
@ -111,12 +111,12 @@ public class BookMeetingRoomController {
|
|||
sysNoticeDTO.setApplyState(0);
|
||||
// 根据roleId查询userId
|
||||
List<Long> useIds = sysRoleUserService.getUserIdListByRoleId(Long.parseLong(defaultAssigneeRoleId));
|
||||
if (useIds != null && useIds.size() > 0){
|
||||
if (useIds != null && useIds.size() > 0) {
|
||||
String userId = "";
|
||||
for (Long use : useIds){
|
||||
userId += use.toString()+",";
|
||||
for (Long use : useIds) {
|
||||
userId += use.toString() + ",";
|
||||
}
|
||||
sysNoticeDTO.setReceiverTypeIds(userId.substring(0,userId.length() -1));
|
||||
sysNoticeDTO.setReceiverTypeIds(userId.substring(0, userId.length() - 1));
|
||||
}
|
||||
sysNoticeDTO.setStatus(NoticeStatusEnum.SEND.value());
|
||||
sysNoticeDTO.setSenderName("流程系统");
|
||||
|
@ -127,7 +127,7 @@ public class BookMeetingRoomController {
|
|||
sysNoticeService.save(sysNoticeDTO);
|
||||
// 还要发送自己能看到的的谁给我审核的消息
|
||||
String ownedContent = "【通知】您发起的" + dto.getRoomName() +
|
||||
"会议室申请,当前审核部门为:" + bigDateDeptName + ",审核负责人:会议室管理员" ;
|
||||
"会议室申请,当前审核部门为:" + bigDateDeptName + ",审核负责人:会议室管理员";
|
||||
SysNoticeDTO ownedSysNoticeDTO = new SysNoticeDTO();
|
||||
ownedSysNoticeDTO.setType(10);
|
||||
ownedSysNoticeDTO.setApplyState(0);
|
||||
|
|
|
@ -119,7 +119,7 @@ public class ResourceCarServiceImpl extends CrudServiceImpl<ResourceCarDao, Reso
|
|||
case TSINGTAO_XHA: {
|
||||
List<Map> maps = resourceCarDao.selectInfrastructureCarGroupByDept(userId, (pageNum - 1) * pageSize, pageSize, name);
|
||||
resultMap.put("list", maps);
|
||||
resultMap.put("deptCount", maps.stream().collect(Collectors.groupingBy(it->it.get("deptName"))).size());
|
||||
resultMap.put("deptCount", maps.stream().collect(Collectors.groupingBy(it -> it.get("deptName"))).size());
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -88,7 +88,8 @@
|
|||
car.dept_name AS "deptName",
|
||||
COUNT(car.id) AS "count"
|
||||
FROM
|
||||
(select del_flag, user_id, json_extract(note1, '$[0].idtCameraChannel') as id, TRIM(BOTH '"' FROM json_extract(note1, '$[0].managementUnitName')) as dept_name, json_extract(note1, '$[0].channelName') as name
|
||||
(select del_flag, user_id, json_extract(note1, '$[0].idtCameraChannel') as id, TRIM(BOTH '"' FROM
|
||||
json_extract(note1, '$[0].managementUnitName')) as dept_name, json_extract(note1, '$[0].channelName') as name
|
||||
from tb_resource_car where note1 IS NOT NULL) car
|
||||
left join sys_dept dept on car.dept_name=dept.name
|
||||
WHERE car.user_id = #{userId}
|
||||
|
@ -163,7 +164,8 @@
|
|||
car.del_flag AS delFlag,
|
||||
car.idtCameraChannel
|
||||
FROM
|
||||
(select del_flag, id, user_id, note1, create_date, resource_id, json_extract(note1, '$[0].idtCameraChannel') as idtCameraChannel,
|
||||
(select del_flag, id, user_id, note1, create_date, resource_id, json_extract(note1, '$[0].idtCameraChannel') as
|
||||
idtCameraChannel,
|
||||
TRIM(BOTH '"' FROM json_extract(note1, '$[0].managementUnitName')) as dept_name, json_extract(note1,
|
||||
'$[0].channelName') as name
|
||||
from tb_resource_car where note1 IS NOT NULL) car
|
||||
|
|
Loading…
Reference in New Issue