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
f8bcb32f
Commit
f8bcb32f
authored
Jul 07, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
05a34eda
5daf288e
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
8 deletions
+25
-8
addFinancialDocuments.vue
src/components/FinancialModule/addFinancialDocuments.vue
+1
-1
domesticCommissionTW2.vue
src/components/FinancialModule/domesticCommissionTW2.vue
+13
-6
TravelControlListSale.vue
...onents/TravelManager/TravelList/TravelControlListSale.vue
+4
-1
todayOrderTotal.vue
src/components/TravelManager/TravelList/todayOrderTotal.vue
+7
-0
No files found.
src/components/FinancialModule/addFinancialDocuments.vue
View file @
f8bcb32f
...
...
@@ -1455,7 +1455,7 @@
yballPrice
+=
(
Number
(
item
.
UnitPrice
)
*
100
)
})
this
.
yballPriceTo
=
yballPrice
/
100
totalAmount
=
this
.
$commonUtils
.
addCommas
(
Math
.
round
(
this
.
orderObj
.
Money
*
100
)
/
100
)
totalAmount
=
Math
.
round
(
this
.
orderObj
.
Money
*
100
)
/
100
if
(
totalAmount
!=
this
.
yballPriceTo
)
{
this
.
Error
(
`原币总金额需等于
${
this
.
orderObj
.
Money
}
!`
)
return
...
...
src/components/FinancialModule/domesticCommissionTW2.vue
View file @
f8bcb32f
...
...
@@ -88,7 +88,7 @@
</td>
<td>
<p>
{{
item
.
SumDiJieBonus
?
item
.
Sum
DiJieBonus
:
'-'
}}
</p>
<p>
{{
item
.
BranchDiJieBonus
?
item
.
Branch
DiJieBonus
:
'-'
}}
</p>
</td>
<td>
...
...
@@ -133,11 +133,13 @@
<el-button
type=
"primary"
class=
"CM_look"
@
click=
"goUrl('domesticCommissionUserTW',item.Id)"
icon=
"iconfont icon-chakan"
circle
></el-button>
</el-tooltip>
<el-tooltip
v-if=
"cMaker==true&&item.BranchCommission>0&&item.CurrencyRateList[0].Rate>0"
class=
"item"
effect=
"dark"
content=
"提成制单"
placement=
"top"
>
<!-- v-if="cMaker==true&&item.BranchCommission>0&&item.CurrencyRateList[0].Rate>0" -->
<el-tooltip
class=
"item"
effect=
"dark"
content=
"提成制单"
placement=
"top"
>
<el-button
@
click=
"YijianZD(item,1)"
type=
"danger"
class=
"CM_look"
icon=
"iconfont icon-mui-icon-add"
circle
></el-button>
</el-tooltip>
<el-tooltip
v-if=
"cMaker==true&&item.SumDiJieBonus>0&&item.CurrencyRateList[0].Rate>0"
class=
"item"
effect=
"dark"
content=
"地接奖励制单"
placement=
"top"
>
<!-- v-if="cMaker==true&&item.SumDiJieBonus>0&&item.CurrencyRateList[0].Rate>0" -->
<el-tooltip
class=
"item"
effect=
"dark"
content=
"地接奖励制单"
placement=
"top"
>
<el-button
@
click=
"YijianZD(item,2)"
type=
"danger"
class=
"CM_look"
icon=
"iconfont icon-mui-icon-add"
circle
></el-button>
</el-tooltip>
...
...
@@ -393,8 +395,9 @@
);
},
YijianZD
(
item
,
type
)
{
let
Money
if
(
this
.
msg
.
OutBranchId
>-
1
){
let
Money
=
0
if
(
type
==
1
){
if
(
this
.
msg
.
OutBranchId
>
0
){
if
(
item
.
BranchCommission
>
0
){
Money
=
item
.
BranchCommission
}
else
{
...
...
@@ -404,6 +407,10 @@
}
else
{
Money
=
item
.
SumPrice
}
}
else
{
Money
=
item
.
BranchDiJieBonus
}
let
obj
=
{
CostType
:
16
,
Money
:
Money
,
...
...
src/components/TravelManager/TravelList/TravelControlListSale.vue
View file @
f8bcb32f
...
...
@@ -375,7 +375,10 @@
<span
v-if=
"item.Status==1"
title=
"销售"
>
{{
$t
(
'visaT.sale'
)
}}
</span>
<span
v-if=
"item.GroupRecommendType==1"
title=
"精品"
>
精
</span>
<label
style=
"display:inline-block;margin:5px 0 0 5px;font-size:12px;"
>
{{
item
.
PriceTeamTypeName
}}
</label>
style=
"display:inline-block;margin:5px 0 0 5px;font-size:12px;"
>
<!--
{{
item
.
PriceTeamTypeName
}}
-->
单团
</label>
</div>
<div
class=
"TCL-OutBranchName"
:title=
"$t('visa.v_salecompany')"
>
{{
item
.
OutBranchName
}}
</div>
<div
class=
"TCL-TOPTCNUM"
>
(
{{
item
.
TCID
}}
)
{{
item
.
TCNUM
}}
</div>
...
...
src/components/TravelManager/TravelList/todayOrderTotal.vue
View file @
f8bcb32f
...
...
@@ -292,6 +292,13 @@
"
></i></el-tooltip>
<el-tooltip
class=
"item"
effect=
"dark"
content=
"通过B2B确认单报名"
placement=
"top"
v-show=
"item.isFormB2B == 1"
>
<i
class=
"iconfont icon-tiaozheng"
style=
"font-size: 22px; color: #297bef"
></i></el-tooltip>
<label
style=
"display:inline-block;margin:5px 0 0 5px;font-size:12px;color: red;"
>
<!--
{{
item
.
PriceTeamTypeName
}}
-->
{{
item
.
teamType
==
1
?
'单团'
:
''
}}
</label>
</p>
<p
class=
"fz12 over_ellipsis"
style=
"width: 100%; text-decoration: underline; cursor: pointer"
...
...
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