Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
10a5f3be
Commit
10a5f3be
authored
Aug 03, 2020
by
黄媛媛
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
查看报损/报溢单
parent
11e28235
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
137 additions
and
9 deletions
+137
-9
FinancialDocumentsDetail.vue
src/components/FinancialModule/FinancialDocumentsDetail.vue
+10
-9
breakageSingle.vue
src/components/FinancialModule/breakageSingle.vue
+118
-0
config.js
src/router/config.js
+9
-0
No files found.
src/components/FinancialModule/FinancialDocumentsDetail.vue
View file @
10a5f3be
...
...
@@ -397,6 +397,7 @@
<span
class=
"fr"
style=
"text-decoration: underline;cursor: pointer;"
v-if=
"GetDetail.OtherType==15"
@
click=
"goassets(GetDetail.ReFinanceId,GetDetail.OtherType)"
>
电商采购单:
{{
GetDetail
.
ReFinanceId
}}
</span>
<span
class=
"fr"
style=
"text-decoration: underline;cursor: pointer;"
v-if=
"GetDetail.OtherType==16"
@
click=
"goassets(GetDetail.ReFinanceId,GetDetail.OtherType)"
>
电商出库单:
{{
GetDetail
.
ReFinanceId
}}
</span>
<span
class=
"fr"
style=
"text-decoration: underline;cursor: pointer;"
v-if=
"GetDetail.OtherType==17"
@
click=
"lookbreakage(GetDetail.ReFinanceId)"
>
报损/报溢单:
{{
GetDetail
.
ReFinanceId
}}
</span>
<span
v-if=
"GetDetail.TemplateId==28 || GetDetail.TemplateId==30"
@
click=
"Gourl(GetDetail)"
style=
"cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
提成详情
</span>
<span
v-if=
"(GetDetail.TemplateId==29 || GetDetail.TemplateId==31) && OPState"
@
click=
"GoOPurl(GetDetail)"
style=
"cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
提成详情
</span>
<span
v-if=
"CostTypeState"
@
click=
"GourlCostType('VisitRecord',1)"
style=
"margin:0 10px;cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
拜访记录
</span>
...
...
@@ -1579,16 +1580,16 @@ export default {
blank
:
'y'
},
})
// var assetsDomain = 'http://www.test.com:8081/#/';//本地地址
// // var assetsDomain = 'http://zcyx.oytour.com/#/';//线上地址
// if(OtherType==15){
// window.open(assetsDomain+ 'procurementDetails' +"?ID="+ID+'&token='+token, "_blank"); //采购详情
// }else if(OtherType==16){
// window.open(assetsDomain+ 'outboundD' +"?ID="+ID+'&type=2', "_blank"); //出库详情
// // window.open(assetsDomain+ 'chukudan' +"?ID="+ID+'&type=2', "_blank"); //出库详情
// }
},
lookbreakage
(
ID
){
this
.
$router
.
replace
({
name
:
"breakageSingle"
,
query
:
{
ID
:
ID
,
blank
:
'y'
},
})
}
},
mounted
(){
// document.onkeydown = this.KeyDown
...
...
src/components/FinancialModule/breakageSingle.vue
0 → 100644
View file @
10a5f3be
<
style
scoped
>
.breakageSingle
.xiangq
{
padding
:
15px
0
;
display
:
flex
;
flex-direction
:
row
;
align-items
:
center
;
justify-content
:
space-between
;
}
.breakageSingle
.topkuang
{
padding
:
5px
10px
;
border
:
1px
solid
#e2e2e2
;
background
:
#e2e2e2
;
border-radius
:
15px
;
margin-right
:
25px
;
}
.breakageSingle
.el-table
th
.is-leaf
{
text-align
:
left
!important
;
}
</
style
>
<
template
>
<div
class=
"breakageSingle"
>
<div
class=
"xiangq"
>
<div>
<el-tag
style=
"margin-right: 10px;"
>
出入库id:
{{
dataList
.
OutOrInId
}}
</el-tag>
</div>
</div>
<el-table
:data=
"dataList.DetailList"
border
header-align=
'left'
style=
"width: 100%"
>
<el-table-column
prop=
"Id"
label=
"编号"
width=
"80"
>
</el-table-column>
<el-table-column
prop=
"GoodsName"
label=
"商品名称"
>
</el-table-column>
<el-table-column
prop=
"SpecificationName"
label=
"规格"
width=
"300"
>
</el-table-column>
<el-table-column
prop=
"InventoryNum"
label=
"当前库存数"
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"RealityNum"
label=
"实际库存数"
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"ReportLossNum"
label=
"报损/报溢数"
width=
"150"
>
</el-table-column>
<el-table-column
prop=
"ReportLossPrice"
label=
"报损/报溢总价格"
width=
"150"
>
</el-table-column>
</el-table>
</div>
</
template
>
<
script
>
export
default
{
data
(){
return
{
msg
:{
LossId
:
0
,
RB_Group_id
:
''
},
dataList
:{},
}
},
created
(){
let
RB_Group_id
=
this
.
getLocalStorage
().
RB_Group_id
;
this
.
msg
.
LossId
=
this
.
$route
.
query
.
ID
;
this
.
msg
.
RB_Group_id
=
RB_Group_id
;
this
.
getList
()
},
methods
:{
getList
(){
this
.
apiJavaPostZc
(
"/api/Warehouse/GetSuppliesReportLoss"
,
this
.
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
===
1
)
{
this
.
dataList
=
res
.
data
.
data
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
null
);
},
},
mounted
(){
}
}
</
script
>
src/router/config.js
View file @
10a5f3be
...
...
@@ -3452,6 +3452,15 @@ export default {
title
:
'详情'
},
},
// 查看报损单详情
{
path
:
'/breakageSingle'
,
name
:
'breakageSingle'
,
component
:
resolve
=>
require
([
'@/components/FinancialModule/breakageSingle'
],
resolve
),
meta
:
{
title
:
'详情'
},
},
// 申请书
{
path
:
'/Application'
,
...
...
Write
Preview
Markdown
is supported
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