Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
张雷
/
skboot-zhongye
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
构建
提交
问题看板
文件
提交
网络
比较
分支
标签
9a9d8e2a
由
张雷
编写于
2024-11-05 09:42:22 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
隐患排查问题修改
1 个父辈
1893b72a
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
21 行增加
和
3 行删除
sk-module-biz/src/main/java/com/skua/modules/safe/controller/app/APPDangerInspectionRecordController.java
sk-module-datafill/src/main/java/com/skua/modules/dataAnalysis/service/impl/FactoryOperateCenterServiceImpl.java
sk-module-biz/src/main/java/com/skua/modules/safe/controller/app/APPDangerInspectionRecordController.java
查看文件 @
9a9d8e2
...
...
@@ -62,6 +62,9 @@ public class APPDangerInspectionRecordController {
if
(
dangerInspectionRecord
.
getDangerId
()
!=
null
&&
dangerInspectionRecord
.
getDangerId
().
length
()
>
0
){
queryWrapper
.
eq
(
"danger_id"
,
dangerInspectionRecord
.
getDangerId
());
}
if
(
StringUtils
.
isNotBlank
(
dangerInspectionRecord
.
getDepartId
())){
queryWrapper
.
ge
(
"depart_id"
,
dangerInspectionRecord
.
getDepartId
()
)
;
}
if
(
StringUtils
.
isNotBlank
(
dangerInspectionRecord
.
getStartTime
())){
queryWrapper
.
ge
(
"report_date"
,
dangerInspectionRecord
.
getStartTime
()
)
;
}
...
...
sk-module-datafill/src/main/java/com/skua/modules/dataAnalysis/service/impl/FactoryOperateCenterServiceImpl.java
查看文件 @
9a9d8e2
...
...
@@ -2,7 +2,6 @@ package com.skua.modules.dataAnalysis.service.impl;
import
com.skua.common.constant.ReportConstant
;
import
com.skua.common.report.ReportViewUtil
;
import
com.skua.core.util.ConvertUtils
;
import
com.skua.core.util.DoubleOperaUtils
;
import
com.skua.modules.dataAnalysis.mapper.FactoryOperateCenterMapper
;
import
com.skua.modules.dataAnalysis.service.IFactoryOperateCenterService
;
...
...
@@ -10,9 +9,7 @@ import com.skua.modules.dataAnalysis.vo.ArchivesWarnVO;
import
com.skua.modules.dataAnalysis.vo.EquipAlarmVO
;
import
com.skua.modules.dataAnalysis.vo.EquipRunTimeVO
;
import
com.skua.modules.dataAnalysis.vo.EquipWarnVO
;
import
com.skua.modules.flow.service.FlowForThirdBusinessService
;
import
com.skua.tool.util.DateUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
javax.annotation.Resource
;
import
java.util.ArrayList
;
...
...
@@ -28,6 +25,24 @@ public class FactoryOperateCenterServiceImpl implements IFactoryOperateCenterSer
@Override
public
Map
<
String
,
Object
>
getData
(
String
departId
,
String
month
)
{
String
tbMonth
=
DateUtils
.
getTbMonth
(
month
);
String
hbMonth
=
DateUtils
.
getHbMonth
(
month
);
String
year
=
month
.
substring
(
0
,
4
);
String
tbYear
=
String
.
valueOf
(
Integer
.
parseInt
(
year
)
-
1
);
String
dataViewName2119Year
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view2119
,
"CSL"
,
departId
,
year
);
String
dataViewName2119YearTb
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view2119
,
"CSL"
,
departId
,
tbYear
);
String
dataViewName2119Month
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view2119
,
"CSL"
,
departId
,
month
);
String
dataViewName2119MonthTb
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view2119
,
"CSL"
,
departId
,
tbMonth
);
String
dataViewName2119MonthHb
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view2119
,
"CSL"
,
departId
,
hbMonth
);
String
field3a24
=
"DLHJ,PAMRJ,SCLPAMZ,SCLPAMF,NACLO,PACGT,PACYT,PFS,FHTY,RYXNJ,"
+
"YWL,GXCLJ,CH3COONA,HXT,FECL3,SH,CH3COOH,FESO4G,FESO4Y,H2O2"
;
String
dataViewName3a24Year
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view3a24
,
field3a24
,
departId
,
year
);
String
dataViewName3a24YearTb
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view3a24
,
field3a24
,
departId
,
tbYear
);
String
dataViewName3a24Month
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view3a24
,
field3a24
,
departId
,
month
);
String
dataViewName3a24MonthTb
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view3a24
,
field3a24
,
departId
,
tbMonth
);
String
dataViewName3a24MonthHb
=
ReportViewUtil
.
buildViewLike
(
ReportConstant
.
view3a24
,
field3a24
,
departId
,
hbMonth
);
Map
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"nclsl"
,
new
HashMap
<>());
Map
<
String
,
Object
>
nclslMap
=
new
HashMap
<>();
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论