Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
device-back
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Matrix
device-back
Commits
2d1f7be8
提交
2d1f7be8
authored
10月 25, 2021
作者:
zhoushaopan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(装备申请,配发模块,阅知模块): 修改阅知
修改阅知
上级
76e5796d
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
6 行增加
和
4 行删除
+6
-4
AllotBillController.java
...tykj/dev/device/allot/controller/AllotBillController.java
+4
-2
DeviceApplyController.java
...kj/dev/device/apply/controller/DeviceApplyController.java
+1
-1
MatchingDeviceController.java
.../device/matching/controller/MatchingDeviceController.java
+1
-1
没有找到文件。
dev-allot/src/main/java/com/tykj/dev/device/allot/controller/AllotBillController.java
浏览文件 @
2d1f7be8
...
...
@@ -690,8 +690,9 @@ public class AllotBillController {
ids
.
addAll
(
userDao
.
findAllByUnitsId
(
userPublicService
.
findUnitIdByName
(
allotBill
.
getSendUnit
())).
stream
()
.
map
(
User:
:
getUserId
)
.
collect
(
Collectors
.
toList
()));
String
content
=
"发起配发业务已办结"
;
MessageBto
messageBto
=
new
MessageBto
(
taskBto
.
getId
(),
taskBto
.
getBusinessType
(),
allotBill
.
getReceiveUnit
()+
"单位的配发业务已办结,"
,
ids
,
1
);
content
,
ids
,
1
);
messageService
.
add
(
messageBto
);
return
ResponseEntity
.
ok
(
"上传成功"
);
}
...
...
@@ -770,7 +771,8 @@ public class AllotBillController {
userIds
.
addAll
(
userDao
.
findAllByUnitsId
(
userPublicService
.
findUnitIdByName
(
allotBill
.
getReceiveUnit
())).
stream
()
.
map
(
User:
:
getUserId
)
.
collect
(
Collectors
.
toList
()));
String
content
=
allotBill
.
getReceiveUnit
()+
"单位的配发业务已办结"
;
// String content = allotBill.getReceiveUnit()+"单位的配发业务已办结";
String
content
=
"发起配发业务已办结"
;
// MessageBto messageBto = new MessageBto(taskBto.getParentTaskId(), taskBto.getBusinessType(), "业务办结", userIds, 1);
MessageBto
messageBto
=
new
MessageBto
(
taskBto
.
getParentTaskId
(),
taskBto
.
getBusinessType
(),
content
,
userIds
,
1
);
messageService
.
add
(
messageBto
);
...
...
dev-apply/src/main/java/com/tykj/dev/device/apply/controller/DeviceApplyController.java
浏览文件 @
2d1f7be8
...
...
@@ -710,7 +710,7 @@ public class DeviceApplyController {
deviceApplyBillService
.
update
(
deviceApplyBill
);
//发送阅知信息
MessageBto
messageBto
=
new
MessageBto
();
messageBto
.
setContent
(
"申请任务已办结"
);
messageBto
.
setContent
(
"
发起的
申请任务已办结"
);
messageBto
.
setTaskId
(
taskBto
.
getId
());
messageBto
.
setIsHighLight
(
0
);
messageBto
.
setInvolveUserIdList
(
userPublicService
.
findOtherUser
(
userUtils
.
getCurrentUserId
()));
...
...
dev-matching/src/main/java/com/tykj/dev/device/matching/controller/MatchingDeviceController.java
浏览文件 @
2d1f7be8
...
...
@@ -235,7 +235,7 @@ public class MatchingDeviceController {
matchingDeviceBillService
.
update
(
updateMatchingDeviceBill
);
//发送阅知信息
List
<
Integer
>
ids
=
userPublicService
.
findOtherUser
(
userId
);
MessageBto
messageBto
=
new
MessageBto
(
taskBto1
.
getId
(),
taskBto1
.
getBusinessType
(),
"
配套设备入库完成
"
,
ids
,
1
);
MessageBto
messageBto
=
new
MessageBto
(
taskBto1
.
getId
(),
taskBto1
.
getBusinessType
(),
"
发起配套设备入库
"
,
ids
,
1
);
messageService
.
add
(
messageBto
);
myWebSocket
.
sendMessage1
();
return
ResponseEntity
.
ok
(
"ok"
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论