Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
张雷
/
skboot-zhongye
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
构建
提交
问题看板
文件
提交
网络
比较
分支
标签
5b869242
由
sonin
编写于
2025-04-01 10:51:26 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
维保标准库模板 修改
1 个父辈
76ef4da1
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
15 行增加
和
33 行删除
sk-module-equipment/src/main/java/com/skua/modules/equipment/controller/web/EquipmentMaintainStandardController.java
sk-module-equipment/src/main/java/com/skua/modules/equipment/entity/EquipmentMaintainStandard.java
sk-module-equipment/src/main/resources/templates/MaintainStandardImport.xlsx
sk-module-equipment/src/main/java/com/skua/modules/equipment/controller/web/EquipmentMaintainStandardController.java
查看文件 @
5b86924
...
...
@@ -192,17 +192,17 @@ public class EquipmentMaintainStandardController {
MultipartHttpServletRequest
multipartRequest
=
(
MultipartHttpServletRequest
)
request
;
Map
<
String
,
MultipartFile
>
fileMap
=
multipartRequest
.
getFileMap
();
//构造机构字典
List
<
Map
<
String
,
Object
>>
departList
=
iEquipmentMaintainStandardService
.
getDepartList
(
"group"
);
Map
<
String
,
String
>
departDictMap
=
new
HashMap
<
String
,
String
>();
departList
.
forEach
(
depart
->{
departDictMap
.
put
(
ConvertUtils
.
getString
(
depart
.
get
(
"depart_name"
)),
ConvertUtils
.
getString
(
depart
.
get
(
"id"
)));
List
<
Map
<
String
,
Object
>>
departList
=
iEquipmentMaintainStandardService
.
getDepartList
(
"group"
);
Map
<
String
,
String
>
departDictMap
=
new
HashMap
<
String
,
String
>();
departList
.
forEach
(
depart
->
{
departDictMap
.
put
(
ConvertUtils
.
getString
(
depart
.
get
(
"depart_name"
)),
ConvertUtils
.
getString
(
depart
.
get
(
"id"
)));
});
//构造设备类别字典
List
<
EquipmentCategory
>
equipmentCategoryList
=
equipmentCategoryService
.
list
();
Map
<
String
,
String
>
equipmentCategoryDictMap
=
new
HashMap
<
String
,
String
>();
equipmentCategoryList
.
forEach
(
equipmentCategory
->{
equipmentCategoryDictMap
.
put
(
equipmentCategory
.
getTreePathName
(),
equipmentCategory
.
getId
());
Map
<
String
,
String
>
equipmentCategoryDictMap
=
new
HashMap
<
String
,
String
>();
equipmentCategoryList
.
forEach
(
equipmentCategory
->
{
equipmentCategoryDictMap
.
put
(
equipmentCategory
.
getTreePathName
(),
equipmentCategory
.
getId
());
});
for
(
Map
.
Entry
<
String
,
MultipartFile
>
entity
:
fileMap
.
entrySet
())
{
// 获取上传文件对象
...
...
@@ -215,28 +215,11 @@ public class EquipmentMaintainStandardController {
List
<
EquipmentMaintainStandard
>
listsdEquipFailureRepairs
=
ExcelImportUtil
.
importExcel
(
multipartFile
.
getInputStream
(),
EquipmentMaintainStandard
.
class
,
params
);
//根据设备类型查出对应id
listsdEquipFailureRepairs
.
forEach
(
e
->
{
//获取一级类型
String
top
=
e
.
getEquipmentTopType
();
//获取二级类型
String
second
=
e
.
getEquipmentSecondType
();
//获取三级类型
String
third
=
e
.
getEquipmentType
();
StringBuffer
sb
=
new
StringBuffer
();
if
(
StringUtils
.
isNotBlank
(
top
))
{
sb
.
append
(
"/"
+
top
);
}
if
(
StringUtils
.
isNotBlank
(
second
))
{
sb
.
append
(
"/"
+
second
);
}
if
(
StringUtils
.
isNotBlank
(
third
))
{
sb
.
append
(
"/"
+
third
);
}
String
key
=
sb
.
substring
(
1
);
//机构字典翻译,并设置到保养库对象
e
.
setDepartId
(
departDictMap
.
get
(
e
.
getDepartId
()));
//设备类型字典翻译,并设置到保养库对象
e
.
setEquipmentType
(
equipmentCategoryDictMap
.
get
(
key
));
String
third
=
e
.
getEquipmentType
();
//机构字典翻译,并设置到保养库对象
e
.
setDepartId
(
departDictMap
.
get
(
e
.
getDepartId
()));
//设备类型字典翻译,并设置到保养库对象
e
.
setEquipmentType
(
equipmentCategoryDictMap
.
get
(
third
));
});
iEquipmentMaintainStandardService
.
addList
(
listsdEquipFailureRepairs
);
return
Result
.
ok
(
"文件导入成功!数据行数:"
+
listsdEquipFailureRepairs
.
size
());
...
...
sk-module-equipment/src/main/java/com/skua/modules/equipment/entity/EquipmentMaintainStandard.java
查看文件 @
5b86924
...
...
@@ -33,7 +33,7 @@ public class EquipmentMaintainStandard {
@Excel
(
name
=
"保养项"
,
width
=
15
)
@ApiModelProperty
(
value
=
"保养项"
)
private
String
maintenanceType
;
@Excel
(
name
=
"设备
三级
类型"
,
width
=
15
)
@Excel
(
name
=
"设备类型"
,
width
=
15
)
@ApiModelProperty
(
value
=
"设备类型"
)
private
String
equipmentType
;
...
...
@@ -41,8 +41,7 @@ public class EquipmentMaintainStandard {
@ApiModelProperty
(
value
=
"设备二级类型"
)
@TableField
(
exist
=
false
)
private
String
equipmentSecondType
;
@Excel
(
name
=
"设备类型"
,
width
=
15
)
@ApiModelProperty
(
value
=
"设备一级类型"
)
@TableField
(
exist
=
false
)
private
String
equipmentTopType
;
...
...
sk-module-equipment/src/main/resources/templates/MaintainStandardImport.xlsx
查看文件 @
5b86924
此文件类型无法预览
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论