Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
doc_wei
Skyeye
提交
e7b3065b
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看板
提交
e7b3065b
编写于
9月 20, 2022
作者:
doc_wei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ERP进货统计修改第一版
上级
f77804c3
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
37 addition
and
90 deletion
+37
-90
erp/src/main/resources/template/js/erpstatistics/incomingstatistics.js
...resources/template/js/erpstatistics/incomingstatistics.js
+35
-68
erp/src/main/resources/template/tpl/erpstatistics/incomingstatistics.html
...ources/template/tpl/erpstatistics/incomingstatistics.html
+2
-22
未找到文件。
erp/src/main/resources/template/js/erpstatistics/incomingstatistics.js
浏览文件 @
e7b3065b
var
rowId
=
""
;
//单据的时间
var
operTime
=
""
;
layui
.
config
({
base
:
basePath
,
version
:
skyeyeVersion
}).
extend
({
window
:
'
js/winui.window
'
}).
define
([
'
window
'
,
'
table
'
,
'
jquery
'
,
'
winui
'
,
'
form
'
,
'
laydate
'
],
function
(
exports
)
{
}).
define
([
'
window
'
,
'
table
'
,
'
jquery
'
,
'
winui
'
,
'
form
'
],
function
(
exports
)
{
winui
.
renderColor
();
var
$
=
layui
.
$
,
form
=
layui
.
form
,
laydate
=
layui
.
laydate
,
table
=
layui
.
table
;
//初始化统计时间
operTime
=
getOneYMFormatDate
();
//获取本月日期
// 获取本月日期
function
getOneYMFormatDate
(){
var
date
=
new
Date
;
var
year
=
date
.
getFullYear
();
...
...
@@ -28,71 +19,47 @@ layui.config({
return
year
.
toString
()
+
"
-
"
+
month
.
toString
();
}
laydate
.
render
({
elem
:
'
#operTime
'
,
type
:
'
month
'
,
value
:
operTime
});
initTable
();
function
initTable
(){
table
.
render
({
id
:
'
messageTable
'
,
elem
:
'
#messageTable
'
,
method
:
'
post
'
,
url
:
flowableBasePath
+
'
statistics003
'
,
where
:
{
materialName
:
$
(
"
#materialName
"
).
val
(),
operTime
:
operTime
},
even
:
true
,
page
:
true
,
limits
:
[
8
,
16
,
24
,
32
,
40
,
48
,
56
],
limit
:
8
,
cols
:
[[
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
type
:
'
numbers
'
},
{
field
:
'
materialName
'
,
title
:
'
产品名称
'
,
align
:
'
left
'
,
width
:
250
},
{
field
:
'
materialModel
'
,
title
:
'
型号
'
,
align
:
'
left
'
,
width
:
100
},
{
field
:
'
unitName
'
,
title
:
'
单位
'
,
align
:
'
left
'
,
width
:
80
},
{
field
:
'
currentTock
'
,
title
:
'
进货数量
'
,
align
:
'
left
'
,
width
:
100
},
{
field
:
'
currentTockMoney
'
,
title
:
'
进货金额
'
,
align
:
'
left
'
,
width
:
120
},
{
field
:
'
returnCurrentTock
'
,
title
:
'
退货数量
'
,
align
:
'
left
'
,
width
:
100
},
{
field
:
'
returnCurrentTockMoney
'
,
title
:
'
退货金额
'
,
align
:
'
left
'
,
width
:
120
}
]],
done
:
function
(
json
)
{
matchingLanguage
();
}
});
form
.
render
();
}
form
.
on
(
'
submit(formSearch)
'
,
function
(
data
)
{
if
(
winui
.
verifyForm
(
data
.
elem
))
{
loadTable
();
}
return
false
;
});
table
.
render
({
id
:
'
messageTable
'
,
elem
:
'
#messageTable
'
,
method
:
'
post
'
,
url
:
flowableBasePath
+
'
statistics003
'
,
where
:
getTableParams
(),
even
:
true
,
page
:
true
,
limits
:
getLimits
(),
limit
:
getLimit
(),
cols
:
[[
{
title
:
systemLanguage
[
"
com.skyeye.serialNumber
"
][
languageType
],
type
:
'
numbers
'
},
{
field
:
'
materialName
'
,
title
:
'
产品名称
'
,
align
:
'
left
'
,
width
:
250
},
{
field
:
'
materialModel
'
,
title
:
'
型号
'
,
align
:
'
left
'
,
width
:
150
},
{
field
:
'
unitName
'
,
title
:
'
单位
'
,
align
:
'
left
'
,
width
:
80
},
{
field
:
'
currentTock
'
,
title
:
'
进货数量
'
,
align
:
'
left
'
,
width
:
100
},
{
field
:
'
currentTockMoney
'
,
title
:
'
进货金额
'
,
align
:
'
left
'
,
width
:
120
},
{
field
:
'
returnCurrentTock
'
,
title
:
'
退货数量
'
,
align
:
'
left
'
,
width
:
100
},
{
field
:
'
returnCurrentTockMoney
'
,
title
:
'
退货金额
'
,
align
:
'
left
'
,
width
:
120
}
]],
done
:
function
(
json
)
{
matchingLanguage
();
initTableSearchUtil
.
initAdvancedSearch
(
this
,
json
.
searchFilter
,
form
,
"
请选择日期
"
,
function
()
{
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:
getTableParams
()});
});
}
});
form
.
render
();
$
(
"
body
"
).
on
(
"
click
"
,
"
#reloadTable
"
,
function
()
{
loadTable
();
});
$
(
"
body
"
).
on
(
"
click
"
,
"
#formSearch
"
,
function
()
{
refreshTable
();
})
//刷新
// 刷新
function
loadTable
()
{
if
(
isNull
(
$
(
"
#operTime
"
).
val
()))
{
//一定要记得,当createTime为空时
winui
.
window
.
msg
(
"
请选择日期.
"
,
{
icon
:
2
,
time
:
2000
});
}
else
{
operTime
=
$
(
"
#operTime
"
).
val
();
table
.
reloadData
(
"
messageTable
"
,
{
where
:{
materialName
:
$
(
"
#materialName
"
).
val
(),
operTime
:
operTime
}});
}
table
.
reloadData
(
"
messageTable
"
,
{
where
:
getTableParams
()});
}
//搜索
function
refreshTable
(){
if
(
isNull
(
$
(
"
#operTime
"
).
val
()))
{
//一定要记得,当createTime为空时
winui
.
window
.
msg
(
"
请选择日期.
"
,
{
icon
:
2
,
time
:
2000
});
}
else
{
operTime
=
$
(
"
#operTime
"
).
val
();
table
.
reloadData
(
"
messageTable
"
,
{
page
:
{
curr
:
1
},
where
:{
materialName
:
$
(
"
#materialName
"
).
val
(),
operTime
:
operTime
}})
}
}
function
getTableParams
()
{
return
$
.
extend
(
true
,
{},
initTableSearchUtil
.
getSearchValue
(
"
messageTable
"
));
}
exports
(
'
incomingstatistics
'
,
{});
});
erp/src/main/resources/template/tpl/erpstatistics/incomingstatistics.html
浏览文件 @
e7b3065b
...
...
@@ -7,30 +7,10 @@
<link
href=
"../../assets/lib/winui/css/winui.css"
rel=
"stylesheet"
/>
</head>
<body>
<div
class=
"txtcenter"
style=
"margin:0 auto;padding-top:10px;"
>
<form
class=
"layui-form layui-form-pane"
action=
""
autocomplete=
"off"
>
<div
class=
"layui-form-item"
>
<div
class=
"layui-inline"
>
<label
class=
"layui-form-label"
>
商品名称
</label>
<div
class=
"layui-input-inline"
>
<input
type=
"text"
id=
"materialName"
name=
"materialName"
placeholder=
"请输入名称"
class=
"layui-input"
/>
</div>
<label
class=
"layui-form-label"
>
单据日期
</label>
<div
class=
"layui-input-inline"
>
<input
type=
"text"
id=
"operTime"
name=
"operTime"
placeholder=
"请选择单据日期"
class=
"layui-input"
/>
</div>
<button
type=
"reset"
class=
"layui-btn layui-btn-primary list-form-search"
><language
showName=
"com.skyeye.reset"
></language></button>
<button
class=
"layui-btn list-form-search"
lay-submit
lay-filter=
"formSearch"
><language
showName=
"com.skyeye.search2"
></language></button>
</div>
</div>
</form>
</div>
<div
class=
"winui-tip alert-info"
id=
"showInfo"
>
注:此处包含采购+退货+其他入库。
</div>
<div
class=
"winui-toolbar"
>
<div
class=
"winui-tool"
>
<button
id=
"reloadTable"
class=
"winui-toolbtn"
><i
class=
"fa fa-refresh"
aria-hidden=
"true"
></i><language
showName=
"com.skyeye.refreshDataBtn"
></language></button>
<div
style=
"width: calc(100% - 120px); float: right; padding: 8px 10px;"
>
<div
class=
"layui-form-mid layui-word-aux"
style=
"color: red !important;"
>
注:此处包含采购+退货+其他入库。
</div>
</div>
<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;"
>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录