Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
4b23754c
Commit
4b23754c
authored
Oct 24, 2021
by
季圣华
Browse files
优化商品库存报表,可以隐藏0库存
parent
35ec29a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
jshERP-web/src/views/report/MaterialStock.vue
View file @
4b23754c
...
...
@@ -7,7 +7,7 @@
<div
class=
"table-page-search-wrapper"
>
<a-form
layout=
"inline"
@
keyup.enter.native=
"searchQuery"
>
<a-row
:gutter=
"24"
>
<a-col
:md=
"
4
"
:sm=
"24"
>
<a-col
:md=
"
3
"
:sm=
"24"
>
<a-form-item
label=
"仓库"
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
>
<a-select
showSearch
optionFilterProp=
"children"
...
...
@@ -20,7 +20,7 @@
</a-select>
</a-form-item>
</a-col>
<a-col
:md=
"
4
"
:sm=
"24"
>
<a-col
:md=
"
3
"
:sm=
"24"
>
<a-form-item
label=
"类别"
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
>
<a-tree-select
style=
"width:100%"
:dropdownStyle=
"
{maxHeight:'200px',overflow:'auto'}" allow-clear
:treeData="categoryTree" v-model="queryParam.categoryId" placeholder="请选择类别">
...
...
@@ -32,6 +32,14 @@
<a-input
placeholder=
"条码/名称/规格/型号"
v-model=
"queryParam.materialParam"
></a-input>
</a-form-item>
</a-col>
<a-col
:md=
"3"
:sm=
"24"
>
<a-form-item
label=
"零库存"
:labelCol=
"labelCol"
:wrapperCol=
"wrapperCol"
>
<a-select
v-model=
"queryParam.zeroStock"
>
<a-select-option
value=
"0"
>
隐藏
</a-select-option>
<a-select-option
value=
"1"
>
显示
</a-select-option>
</a-select>
</a-form-item>
</a-col>
<span
style=
"float: left;overflow: hidden;"
class=
"table-page-search-submitButtons"
>
<a-col
:md=
"4"
:sm=
"24"
>
<a-button
type=
"primary"
@
click=
"searchQuery"
>
查询
</a-button>
...
...
@@ -122,6 +130,7 @@
depotId
:
''
,
categoryId
:
''
,
materialParam
:
''
,
zeroStock
:
'
0
'
,
mpList
:
getMpListShort
(
Vue
.
ls
.
get
(
'
materialPropertyList
'
))
//扩展属性
},
ipagination
:{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment