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
c7617d5d
Commit
c7617d5d
authored
Jan 18, 2023
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
d9798306
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
85 additions
and
3 deletions
+85
-3
BasicDocuments.vue
src/components/FinancialModule/BasicDocuments.vue
+49
-1
FinancialDocumentsDetail.vue
src/components/FinancialModule/FinancialDocumentsDetail.vue
+36
-2
No files found.
src/components/FinancialModule/BasicDocuments.vue
View file @
c7617d5d
...
...
@@ -350,7 +350,8 @@
<div
class=
"illustrate-text"
>
<p
class=
"illustrate-left"
>
附加说明:
<span
class=
"fr"
v-if=
"GetDetail.ComplainID > 0"
@
click=
"goUrl('ComplaintsDetail', GetDetail.ComplainID,GetDetail.OrderID)"
>
<span
style=
"color:#000"
>
投诉单号:
</span>
<span
class=
"cursorpointer text-decoration"
>
{{GetDetail.ComplainID}}
</span></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==28 || GetDetail.TemplateId==30) && GetDetail.OtherType!=63 && GetDetail.OtherType!=64"
@
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 && GetDetail.OtherType!=63 && GetDetail.OtherType!=64"
@
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>
<span
v-if=
"CostTypeState"
@
click=
"GourlCostType('yingyanMap',2)"
style=
"cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
鹰眼轨迹
</span>
<span
v-if=
"GetDetail.OtherType==6"
style=
"cursor: pointer;float: right;color: #000;font-size: 12px;"
>
...
...
@@ -369,6 +370,18 @@
<div
v-if=
"GetDetail.OtherType==56||GetDetail.OtherType==57"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionTicketDetails('ImpressionTicketUserDetails')"
>
{{GetDetail.OtherType==56?'票务提成详情':'票务工资详情'}}
</div>
<div
v-if=
"GetDetail.OtherType==61||GetDetail.OtherType==62"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleDetails('singleProductHotelOrderOP')"
>
{{'单项酒店订单:'+GetDetail.ReFinanceId}}
</div>
<div
v-if=
"GetDetail.OtherType==66"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleDetails('SingleticketOrderListOP')"
>
{{'单项门票订单:'+GetDetail.ReFinanceId}}
</div>
<div
v-if=
"GetDetail.OtherType==67"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleDetails('SingleCarOrderListOP')"
>
{{'单项车订单:'+GetDetail.ReFinanceId}}
</div>
<div
v-if=
"GetDetail.OtherType==63"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleCommissionDetails('ServiceCommissiondetails',1)"
>
{{'单项销售提成详情'}}
</div>
<div
v-if=
"GetDetail.OtherType==64"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleCommissionDetails('ServiceCommissiondetails',2)"
>
{{'单项OP提成详情'}}
</div>
</div>
<table
border=
"1"
bordercolor=
"#D2D2D2"
style=
"border-collapse:collapse;margin-top:15px;"
width=
"100%"
v-if=
"GetDetail.TCIDAndTCNUMList.length>0"
>
<tr
v-for=
"(o,ox) in GetDetail.TCIDAndTCNUMList"
class=
"_fujiashuoming_tr"
>
...
...
@@ -1558,6 +1571,28 @@ export default {
},
methods
:{
// 单项服务提成
ImpressionSingleCommissionDetails
(
path
,
type
){
this
.
$router
.
push
({
path
:
path
,
query
:
{
PeriodId
:
this
.
GetDetail
.
ReFinanceId
,
Type
:
type
,
blank
:
'y'
,
tab
:
'单项服务提现详情'
}
});
},
// 单项酒店订单
ImpressionSingleDetails
(
path
){
this
.
$router
.
push
({
path
:
path
,
query
:
{
OrderId
:
this
.
GetDetail
.
ReFinanceId
,
blank
:
'y'
}
});
},
// 印象票务制单详情
ImpressionTicketDetails
(
path
){
this
.
$router
.
push
({
...
...
@@ -1663,6 +1698,19 @@ export default {
},
GoOPurl
(
GetDetail
){
this
.
$router
.
push
({
name
:
'OpComPersonDetails'
,
query
:
{
EmployeeId
:
GetDetail
.
AccountEmployeeId
,
PeriodsId
:
GetDetail
.
OPPeriodsId
,
RB_Branch_Id
:
GetDetail
.
RB_Branch_Id
,
blank
:
"y"
,
tab
:
"op提成明细"
}
});
},
Gourl
(
GetDetail
){
if
(
GetDetail
.
OtherType
==
43
){
//9月9号新增 如果是43 就跳转到国内的详情 反之按之前的来用
this
.
$router
.
push
({
...
...
src/components/FinancialModule/FinancialDocumentsDetail.vue
View file @
c7617d5d
...
...
@@ -418,8 +418,8 @@
<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=
"
(GetDetail.TemplateId==28 || GetDetail.TemplateId==30) && GetDetail.OtherType!=63 && GetDetail.OtherType!=64
"
@
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
&& GetDetail.OtherType!=63 && GetDetail.OtherType!=64
"
@
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>
<span
v-if=
"CostTypeState"
@
click=
"GourlCostType('yingyanMap',2)"
style=
"cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
鹰眼轨迹
</span>
<span
v-if=
"GetDetail.OtherType==5"
@
click=
"GourlHotelZr"
style=
"cursor: pointer;float: right;color: #000;font-size: 14px;text-decoration: underline;"
>
酒店折让
</span>
...
...
@@ -438,6 +438,18 @@
<div
v-if=
"GetDetail.OtherType==56||GetDetail.OtherType==57"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionTicketDetails('ImpressionTicketUserDetails')"
>
{{
GetDetail
.
OtherType
==
56
?
'票务提成详情'
:
'票务工资详情'
}}
</div>
<div
v-if=
"GetDetail.OtherType==61||GetDetail.OtherType==62"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleDetails('singleProductHotelOrderOP')"
>
{{
'单项酒店订单:'
+
GetDetail
.
ReFinanceId
}}
</div>
<div
v-if=
"GetDetail.OtherType==66"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleDetails('SingleticketOrderListOP')"
>
{{
'单项门票订单:'
+
GetDetail
.
ReFinanceId
}}
</div>
<div
v-if=
"GetDetail.OtherType==67"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleDetails('SingleCarOrderListOP')"
>
{{
'单项车订单:'
+
GetDetail
.
ReFinanceId
}}
</div>
<div
v-if=
"GetDetail.OtherType==63"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleCommissionDetails('ServiceCommissiondetails',1)"
>
{{
'单项销售提成详情'
}}
</div>
<div
v-if=
"GetDetail.OtherType==64"
class=
"illustrate-right fygsbumen-box-right"
@
click=
"ImpressionSingleCommissionDetails('ServiceCommissiondetails',2)"
>
{{
'单项OP提成详情'
}}
</div>
</div>
<table
border=
"1"
bordercolor=
"#D2D2D2"
style=
"border-collapse:collapse;margin-top:15px;"
width=
"100%"
v-if=
"GetDetail.TCIDAndTCNUMList.length>0"
>
...
...
@@ -1022,6 +1034,28 @@ export default {
}
},
methods
:{
// 单项服务提成
ImpressionSingleCommissionDetails
(
path
,
type
){
this
.
$router
.
push
({
path
:
path
,
query
:
{
PeriodId
:
this
.
GetDetail
.
ReFinanceId
,
Type
:
type
,
blank
:
'y'
,
tab
:
'单项服务提现详情'
}
});
},
// 单项酒店订单
ImpressionSingleDetails
(
path
){
this
.
$router
.
push
({
path
:
path
,
query
:
{
OrderId
:
this
.
GetDetail
.
ReFinanceId
,
blank
:
'y'
}
});
},
// 印象票务制单详情
ImpressionTicketDetails
(
path
){
this
.
$router
.
push
({
...
...
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