Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
device-back
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Matrix
device-back
Commits
061af1fc
提交
061af1fc
authored
6月 07, 2023
作者:
zjm
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
分开手动上联
上级
be8cffec
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
20 行增加
和
6 行删除
+20
-6
ExternalUnitEquipController.java
...vice/matching/controller/ExternalUnitEquipController.java
+1
-1
SelfCheckBillServiceImpl.java
...vice/selfcheck/service/impl/SelfCheckBillServiceImpl.java
+5
-3
RunController.java
...union/src/main/java/com/tykj/dev/union/RunController.java
+13
-1
application-dev.properties
dev-union/src/main/resources/application-dev.properties
+1
-1
没有找到文件。
dev-matching/src/main/java/com/tykj/dev/device/matching/controller/ExternalUnitEquipController.java
浏览文件 @
061af1fc
...
...
@@ -127,7 +127,7 @@ public class ExternalUnitEquipController {
case
"省政府办公厅"
:
case
"省用通信局"
:
case
"省
专
用通信局"
:
case
"宁波市专用通信局"
:
...
...
dev-selfcheck/src/main/java/com/tykj/dev/device/selfcheck/service/impl/SelfCheckBillServiceImpl.java
浏览文件 @
061af1fc
...
...
@@ -569,9 +569,11 @@ public class SelfCheckBillServiceImpl implements SelfCheckBillService {
if
(
selfExaminationBillEntity
.
getUnStockDetail
()!=
null
){
//5 非在库
newDeviceList
.
addAll
(
Objects
.
requireNonNull
(
JacksonUtil
.
readValue
(
selfExaminationBillEntity
.
getUnStockDetail
(),
new
TypeReference
<
List
<
DeviceLibrary
>>()
{
})));
List
<
DeviceLibrary
>
deviceLibraries
=
JacksonUtil
.
readValue
(
selfExaminationBillEntity
.
getUnStockDetail
(),
new
TypeReference
<
List
<
DeviceLibrary
>>()
{
});
if
(
deviceLibraries
!=
null
)
{
newDeviceList
.
addAll
(
deviceLibraries
);
}
}
selfExaminationBillEntity
.
setDeviceLibraries
(
newDeviceList
);
...
...
dev-union/src/main/java/com/tykj/dev/union/RunController.java
浏览文件 @
061af1fc
...
...
@@ -30,6 +30,7 @@ import com.tykj.dev.device.selfcheck.service.SelfCheckBillService;
import
com.tykj.dev.device.sendback.service.DeviceRepelDetailService
;
import
com.tykj.dev.device.storage.service.StorageBillService
;
import
com.tykj.dev.device.train.controller.TrainJobController
;
import
com.tykj.dev.device.train.service.WorkHandoverService
;
import
com.tykj.dev.device.user.cache.UnitsCache
;
import
com.tykj.dev.device.user.subject.dao.AreaDao
;
import
com.tykj.dev.device.user.subject.entity.Area
;
...
...
@@ -118,7 +119,10 @@ public class RunController {
private
StorageBillService
storageBillService
;
@Autowired
TrainJobController
trainJobController
;
private
TrainJobController
trainJobController
;
@Resource
private
WorkHandoverService
workHandoverService
;
@ApiOperation
(
value
=
"修正核查的历史装备数据"
)
...
...
@@ -324,4 +328,12 @@ public class RunController {
trainJobController
.
historyUpperChain
();
}
@ApiOperation
(
value
=
"业务历史循环上链(交接)"
,
notes
=
"业务历史循环上链"
)
@GetMapping
(
"/bill/toBlock14"
)
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
void
toBlock14
()
{
workHandoverService
.
historyUpperChain
();
}
}
dev-union/src/main/resources/application-dev.properties
浏览文件 @
061af1fc
...
...
@@ -27,6 +27,6 @@ block.carrier.ip=http://192.168.0.147:8088
carrier.url
=
http://192.168.0.101:8087/configuration/saveConfiguration
file.matching.excel
=
/Users/zhoushaopan/excel/
check.time.last
=
C:/file/
CHECKTIME
2.txt
check.time.last
=
C:/file/2.txt
ven.http
=
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论