Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
b9f354de
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看板
提交
b9f354de
编写于
9月 02, 2023
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 客户新增已销售产品,供应商新增已采购商品
上级
68bd67c5
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
100 addition
and
3 deletion
+100
-3
crm/src/main/resources/template/js/customerManage/customerManage.js
...in/resources/template/js/customerManage/customerManage.js
+3
-0
erp/src/main/resources/template/js/holder/holderNormsList.js
erp/src/main/resources/template/js/holder/holderNormsList.js
+67
-0
erp/src/main/resources/template/js/supplier/supplierManage.js
...src/main/resources/template/js/supplier/supplierManage.js
+3
-0
erp/src/main/resources/template/tpl/holder/holderNormsList.html
...c/main/resources/template/tpl/holder/holderNormsList.html
+24
-0
pro/src/main/resources/template/js/project/projectList.js
pro/src/main/resources/template/js/project/projectList.js
+1
-1
school/src/main/resources/template/js/subject/subjectManage.js
...l/src/main/resources/template/js/subject/subjectManage.js
+2
-2
未找到文件。
crm/src/main/resources/template/js/customerManage/customerManage.js
浏览文件 @
b9f354de
...
...
@@ -19,6 +19,9 @@ layui.config({
pageUrl
:
systemCommonUtil
.
getUrl
(
'
FP2023030300001&id=
'
+
objectId
,
null
)
}],
suffixData
:
[{
title
:
'
已销售产品
'
,
pageUrl
:
'
../../tpl/holder/holderNormsList.html
'
},
{
title
:
'
团队
'
,
pageUrl
:
'
../../tpl/teamBusiness/teamBusinessDetails.html
'
}],
...
...
erp/src/main/resources/template/js/holder/holderNormsList.js
0 → 100644
浏览文件 @
b9f354de
var
objectKey
=
""
;
var
objectId
=
""
;
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
}).
define
([
'
window
'
,
'
table
'
,
'
jquery
'
,
'
winui
'
,
'
form
'
],
function
(
exports
)
{
winui
.
renderColor
();
var
$
=
layui
.
$
,
form
=
layui
.
form
,
table
=
layui
.
table
;
objectKey
=
GetUrlParam
(
"
objectKey
"
);
objectId
=
GetUrlParam
(
"
objectId
"
);
if
(
isNull
(
objectKey
)
||
isNull
(
objectId
))
{
winui
.
window
.
msg
(
"
请传入适用对象信息
"
,
{
icon
:
2
,
time
:
2000
});
return
false
;
}
table
.
render
({
id
:
'
messageTable
'
,
elem
:
'
#messageTable
'
,
method
:
'
post
'
,
url
:
sysMainMation
.
erpBasePath
+
'
queryHolderNormsList
'
,
where
:
getTableParams
(),
even
:
true
,
page
:
true
,
limits
:
getLimits
(),
limit
:
getLimit
(),
cols
:
[[
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
type
:
'
numbers
'
},
{
field
:
'
materialId
'
,
title
:
'
产品名称
'
,
align
:
'
left
'
,
width
:
150
,
templet
:
function
(
d
)
{
return
isNull
(
d
.
materialMation
)
?
''
:
d
.
materialMation
.
name
;
}},
{
field
:
'
normsId
'
,
title
:
'
产品规格
'
,
align
:
'
left
'
,
width
:
400
,
templet
:
function
(
d
)
{
return
isNull
(
d
.
normsMation
)
?
''
:
d
.
normsMation
.
name
;
}}
]],
done
:
function
(
json
)
{
matchingLanguage
();
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
暂不支持搜索
"
,
function
()
{
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
}
});
table
.
on
(
'
tool(messageTable)
'
,
function
(
obj
)
{
var
data
=
obj
.
data
;
var
layEvent
=
obj
.
event
;
});
form
.
render
();
$
(
"
body
"
).
on
(
"
click
"
,
"
#reloadTable
"
,
function
()
{
loadTable
();
});
function
loadTable
()
{
table
.
reloadData
(
"
messageTable
"
,
{
where
:
getTableParams
()});
}
function
getTableParams
()
{
return
$
.
extend
(
true
,
{
holderKey
:
objectKey
,
holderId
:
objectId
},
initTableSearchUtil
.
getSearchValue
(
"
messageTable
"
));
}
exports
(
'
holderNormsList
'
,
{});
});
\ No newline at end of file
erp/src/main/resources/template/js/supplier/supplierManage.js
浏览文件 @
b9f354de
...
...
@@ -19,6 +19,9 @@ layui.config({
pageUrl
:
systemCommonUtil
.
getUrl
(
'
FP2023080200005&id=
'
+
objectId
,
null
)
}],
suffixData
:
[{
title
:
'
已采购产品
'
,
pageUrl
:
'
../../tpl/holder/holderNormsList.html
'
},
{
title
:
'
团队
'
,
pageUrl
:
'
../../tpl/teamBusiness/teamBusinessDetails.html
'
}],
...
...
erp/src/main/resources/template/tpl/holder/holderNormsList.html
0 → 100644
浏览文件 @
b9f354de
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
/>
<title></title>
<link
href=
"../../assets/lib/layui/css/layui.css"
rel=
"stylesheet"
/>
<link
href=
"../../assets/lib/winui/css/winui.css"
rel=
"stylesheet"
/>
</head>
<body>
<div
class=
"winui-toolbar"
>
<div
class=
"winui-tool"
>
<button
id=
"reloadTable"
class=
"winui-toolbtn search-table-btn-right"
><i
class=
"fa fa-refresh"
aria-hidden=
"true"
></i><language
showName=
"com.skyeye.refreshDataBtn"
></language></button>
</div>
</div>
<div
style=
"margin:auto 10px;"
>
<table
id=
"messageTable"
lay-filter=
"messageTable"
></table>
</div>
<script
src=
"../../assets/lib/layui/layui.js"
></script>
<script
src=
"../../assets/lib/layui/custom.js"
></script>
<script
type=
"text/javascript"
>
layui
.
config
({
base
:
'
../../js/holder/
'
}).
use
(
'
holderNormsList
'
);
</script>
</body>
</html>
\ No newline at end of file
pro/src/main/resources/template/js/project/projectList.js
浏览文件 @
b9f354de
...
...
@@ -119,7 +119,7 @@ layui.config({
// 服务
function
giveService
(
data
)
{
_openNewWindows
({
url
:
systemCommonUtil
.
getUrl
(
'
../../tpl/project/projectManage.html?objectId=
'
+
data
.
id
+
'
&objectKey=
'
+
data
.
serviceClassName
,
null
)
,
url
:
'
../../tpl/project/projectManage.html?objectId=
'
+
data
.
id
+
'
&objectKey=
'
+
data
.
serviceClassName
,
title
:
"
服务
"
,
pageId
:
"
projectGiveService
"
,
area
:
[
'
90vw
'
,
'
90vh
'
],
...
...
school/src/main/resources/template/js/subject/subjectManage.js
浏览文件 @
b9f354de
...
...
@@ -20,10 +20,10 @@ layui.config({
}],
suffixData
:
[{
title
:
'
章节
'
,
pageUrl
:
systemCommonUtil
.
getUrl
(
'
../../tpl/chapter/chapterList.html
'
,
null
)
pageUrl
:
'
../../tpl/chapter/chapterList.html
'
},
{
title
:
'
知识点
'
,
pageUrl
:
systemCommonUtil
.
getUrl
(
'
../../tpl/knowledge/knowledgeList.html
'
,
null
)
pageUrl
:
'
../../tpl/knowledge/knowledgeList.html
'
}],
element
:
layui
.
element
,
object
:
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录