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
f96f8595
Commit
f96f8595
authored
Dec 07, 2021
by
季圣华
Browse files
优化采购统计和销售统计报表界面
parent
7d208afe
Changes
2
Hide whitespace changes
Inline
Side-by-side
jshERP-web/src/views/report/BuyInReport.vue
View file @
f96f8595
...
@@ -113,13 +113,14 @@
...
@@ -113,13 +113,14 @@
{
title
:
'
型号
'
,
dataIndex
:
'
materialModel
'
,
width
:
80
},
{
title
:
'
型号
'
,
dataIndex
:
'
materialModel
'
,
width
:
80
},
{
title
:
'
扩展信息
'
,
dataIndex
:
'
materialOther
'
,
width
:
150
},
{
title
:
'
扩展信息
'
,
dataIndex
:
'
materialOther
'
,
width
:
150
},
{
title
:
'
单位
'
,
dataIndex
:
'
materialUnit
'
,
width
:
80
},
{
title
:
'
单位
'
,
dataIndex
:
'
materialUnit
'
,
width
:
80
},
{
title
:
'
进货
数量
'
,
dataIndex
:
'
inSum
'
,
sorter
:
(
a
,
b
)
=>
a
.
inSum
-
b
.
inSum
,
width
:
80
},
{
title
:
'
采购
数量
'
,
dataIndex
:
'
inSum
'
,
sorter
:
(
a
,
b
)
=>
a
.
inSum
-
b
.
inSum
,
width
:
80
},
{
title
:
'
进货
金额
'
,
dataIndex
:
'
inSumPrice
'
,
sorter
:
(
a
,
b
)
=>
a
.
inSumPrice
-
b
.
inSumPrice
,
width
:
80
},
{
title
:
'
采购
金额
'
,
dataIndex
:
'
inSumPrice
'
,
sorter
:
(
a
,
b
)
=>
a
.
inSumPrice
-
b
.
inSumPrice
,
width
:
80
},
{
title
:
'
退货数量
'
,
dataIndex
:
'
outSum
'
,
sorter
:
(
a
,
b
)
=>
a
.
outSum
-
b
.
outSum
,
width
:
80
},
{
title
:
'
退货数量
'
,
dataIndex
:
'
outSum
'
,
sorter
:
(
a
,
b
)
=>
a
.
outSum
-
b
.
outSum
,
width
:
80
},
{
title
:
'
退货金额
'
,
dataIndex
:
'
outSumPrice
'
,
sorter
:
(
a
,
b
)
=>
a
.
outSumPrice
-
b
.
outSumPrice
,
width
:
80
}
{
title
:
'
退货金额
'
,
dataIndex
:
'
outSumPrice
'
,
sorter
:
(
a
,
b
)
=>
a
.
outSumPrice
-
b
.
outSumPrice
,
width
:
80
},
{
title
:
'
实际采购金额
'
,
dataIndex
:
'
inOutSumPrice
'
,
sorter
:
(
a
,
b
)
=>
a
.
inOutSumPrice
-
b
.
inOutSumPrice
,
width
:
100
}
],
],
url
:
{
url
:
{
list
:
"
/depotItem/buyIn
"
,
list
:
"
/depotItem/buyIn
"
}
}
}
}
},
},
...
...
jshERP-web/src/views/report/SaleOutReport.vue
View file @
f96f8595
...
@@ -18,13 +18,18 @@
...
@@ -18,13 +18,18 @@
<a-input
placeholder=
"条码/名称/规格/型号"
v-model=
"queryParam.materialParam"
></a-input>
<a-input
placeholder=
"条码/名称/规格/型号"
v-model=
"queryParam.materialParam"
></a-input>
</a-form-item>
</a-form-item>
</a-col>
</a-col>
<a-col
:md=
"
6
"
:sm=
"24"
>
<a-col
:md=
"
4
"
:sm=
"24"
>
<span
style=
"float: left;overflow: hidden;"
class=
"table-page-search-submitButtons"
>
<span
style=
"float: left;overflow: hidden;"
class=
"table-page-search-submitButtons"
>
<a-button
type=
"primary"
@
click=
"searchQuery"
>
查询
</a-button>
<a-button
type=
"primary"
@
click=
"searchQuery"
>
查询
</a-button>
<a-button
style=
"margin-left: 8px"
v-print=
"'#reportPrint'"
icon=
"printer"
>
打印
</a-button>
<a-button
style=
"margin-left: 8px"
v-print=
"'#reportPrint'"
icon=
"printer"
>
打印
</a-button>
<a-button
style=
"margin-left: 8px"
@
click=
"exportExcel"
icon=
"download"
>
导出
</a-button>
<a-button
style=
"margin-left: 8px"
@
click=
"exportExcel"
icon=
"download"
>
导出
</a-button>
</span>
</span>
</a-col>
</a-col>
<a-col
:md=
"8"
:sm=
"24"
>
<a-form-item>
注:本报表包含零售和销售数据
</a-form-item>
</a-col>
</a-row>
</a-row>
</a-form>
</a-form>
</div>
</div>
...
...
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