Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
32daf3b6
S
Skyeye
项目概览
doc_wei
/
Skyeye
通知
1172
Star
154
Fork
127
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Skyeye
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
32daf3b6
编写于
7月 16, 2024
作者:
W
WJ-202301081617\Wlos
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:修改库位管理
上级
f86ff5c4
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
24 addition
and
10 deletion
+24
-10
admin-assistant/src/main/resources/template/js/assetReportManage/assetReportMyUseChoose.js
...s/template/js/assetReportManage/assetReportMyUseChoose.js
+3
-2
admin-assistant/src/main/resources/template/js/myHasMation/myAssetManagement.js
...in/resources/template/js/myHasMation/myAssetManagement.js
+2
-2
erp/src/main/resources/template/js/turnIocatorManage/turnIocatorManage.js
...ources/template/js/turnIocatorManage/turnIocatorManage.js
+19
-6
未找到文件。
admin-assistant/src/main/resources/template/js/assetReportManage/assetReportMyUseChoose.js
浏览文件 @
32daf3b6
...
...
@@ -52,6 +52,7 @@ layui.config({
{
field
:
'
name
'
,
title
:
'
资产名称
'
,
width
:
120
,
templet
:
function
(
d
)
{
return
getNotUndefinedVal
(
d
.
assetMation
?.
name
);
}},
{
field
:
'
assetNum
'
,
title
:
'
资产编号
'
,
align
:
'
left
'
,
width
:
150
},
{
field
:
'
specifications
'
,
title
:
'
资产规格
'
,
width
:
120
,
templet
:
function
(
d
)
{
return
getNotUndefinedVal
(
d
.
assetMation
?.
specifications
);
}},
...
...
@@ -62,7 +63,7 @@ layui.config({
{
field
:
'
typeId
'
,
title
:
'
资产类型
'
,
width
:
120
,
templet
:
function
(
d
)
{
return
sysDictDataUtil
.
getDictDataNameByCodeAndKey
(
"
ADM_ASSET_TYPE
"
,
d
.
typeId
);
}},
{
field
:
'
assetNum
'
,
title
:
'
资产编号
'
,
align
:
'
left
'
,
width
:
150
},
// { field: 'specifications', title: '资产规格', align: 'left', width: 120 },
{
field
:
'
assetAdminMation
'
,
title
:
'
管理员
'
,
width
:
120
,
templet
:
function
(
d
)
{
return
getNotUndefinedVal
(
d
.
assetAdminMation
?.
name
);
...
...
@@ -72,7 +73,7 @@ layui.config({
done
:
function
(
res
)
{
matchingLanguage
();
initTableSearchUtil
.
initAdvancedSearch
(
this
,
res
.
searchFilter
,
form
,
"
请输入资产
名称,资产
编号
"
,
function
()
{
initTableSearchUtil
.
initAdvancedSearch
(
this
,
res
.
searchFilter
,
form
,
"
请输入资产编号
"
,
function
()
{
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
if
(
myUseAssetReportCheckType
)
{
...
...
admin-assistant/src/main/resources/template/js/myHasMation/myAssetManagement.js
浏览文件 @
32daf3b6
...
...
@@ -23,6 +23,7 @@ layui.config({
limit
:
getLimit
(),
cols
:
[[
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
type
:
'
numbers
'
},
{
field
:
'
assetNum
'
,
title
:
'
资产编号
'
,
align
:
'
left
'
,
width
:
200
},
{
field
:
'
name
'
,
title
:
'
资产名称
'
,
width
:
120
,
templet
:
function
(
d
)
{
return
getNotUndefinedVal
(
d
.
assetMation
?.
name
);
}},
...
...
@@ -32,7 +33,6 @@ layui.config({
{
field
:
'
typeId
'
,
title
:
'
资产类型
'
,
width
:
120
,
templet
:
function
(
d
)
{
return
sysDictDataUtil
.
getDictDataNameByCodeAndKey
(
"
ADM_ASSET_TYPE
"
,
d
.
assetMation
.
typeId
);
}},
{
field
:
'
assetNum
'
,
title
:
'
资产编号
'
,
align
:
'
left
'
,
width
:
150
},
{
field
:
'
assetAdminMation
'
,
title
:
'
管理员
'
,
width
:
120
,
templet
:
function
(
d
)
{
return
getNotUndefinedVal
(
d
.
assetAdminMation
?.
name
);
}},
...
...
@@ -40,7 +40,7 @@ layui.config({
]],
done
:
function
(
json
)
{
matchingLanguage
();
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入资产
名称,资产
编号
"
,
function
()
{
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入资产编号
"
,
function
()
{
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
}
...
...
erp/src/main/resources/template/js/turnIocatorManage/turnIocatorManage.js
浏览文件 @
32daf3b6
var
rowId
=
""
;
var
parentNode
=
null
;
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
}).
define
([
'
window
'
,
'
jquery
'
,
'
winui
'
,
'
dropdown
'
,
'
fsCommon
'
,
'
fsTree
'
,
'
table
'
,
'
form
'
],
function
(
exports
)
{
}).
define
([
'
window
'
,
'
tableTreeDj
'
,
'
jquery
'
,
'
winui
'
,
'
dropdown
'
,
'
fsCommon
'
,
'
fsTree
'
,
'
table
'
,
'
form
'
],
function
(
exports
)
{
winui
.
renderColor
();
var
$
=
layui
.
$
,
fsTree
=
layui
.
fsTree
,
form
=
layui
.
form
,
table
=
layui
.
table
;
// table = layui.table;
tableTree
=
layui
.
tableTreeDj
;
var
ztree
;
var
id
=
GetUrlParam
(
"
id
"
);
var
objectKey
=
GetUrlParam
(
"
objectKey
"
)
...
...
@@ -50,7 +57,7 @@ layui.config({
}
function
initLoadTable
()
{
table
.
render
({
table
Tree
.
render
({
id
:
'
messageTable
'
,
elem
:
'
#messageTable
'
,
method
:
'
post
'
,
...
...
@@ -71,12 +78,18 @@ layui.config({
done
:
function
(
json
)
{
matchingLanguage
();
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请输入编号
"
,
function
()
{
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
table
Tree
.
reload
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
}
});
}
// , {
// keyId: 'id',
// keyPid: 'parentId',
// title: 'dictName',
// }
);
table
.
on
(
'
tool(messageTable)
'
,
function
(
obj
)
{
table
Tree
.
getTable
()
.
on
(
'
tool(messageTable)
'
,
function
(
obj
)
{
var
data
=
obj
.
data
;
var
layEvent
=
obj
.
event
;
if
(
layEvent
===
'
edit
'
)
{
//编辑
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录