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
4b63779d
Commit
4b63779d
authored
May 08, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
82ea94ea
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
6 deletions
+31
-6
VisaProduct.vue
src/components/SalesVisa/VisaProduct.vue
+0
-1
VisaProductOrder.vue
src/components/SalesVisa/VisaProductOrder.vue
+8
-2
saleOrderSettlement.vue
src/components/SalesVisa/saleOrderSettlement.vue
+23
-3
No files found.
src/components/SalesVisa/VisaProduct.vue
View file @
4b63779d
...
...
@@ -872,7 +872,6 @@ export default {
id
:
obj
.
Id
,
branchId
:
obj
.
RB_Branch_Id
,
blank
:
"y"
,
TrafficToll
:
obj
.
TrafficToll
?
obj
.
TrafficToll
:
0
,
tab
:
"结算列表"
}
});
...
...
src/components/SalesVisa/VisaProductOrder.vue
View file @
4b63779d
...
...
@@ -866,8 +866,11 @@
<span>
实收:
{{
moneyFormat
(
IncomePrice
)
}}
</span>
<span>
优惠:
{{
moneyFormat
(
DiscountMoneyAll
)
}}
</span>
<span>
待收:
<span
:class=
"
{color_red:(PreferPrice-IncomePrice-DiscountMoneyAll)!==0}">
{{
moneyFormat
(
PreferPrice
-
IncomePrice
-
DiscountMoneyAll
)
}}
</span></span>
</div>
:class=
"
{color_red:(PreferPrice-IncomePrice-DiscountMoneyAll)!==0}">
{{
moneyFormat
(
PreferPrice
-
IncomePrice
-
DiscountMoneyAll
)
}}
</span>
</span>
<span>
成本:
{{
moneyFormat
(
CostMoney
)
}}
</span>
</div>
<table
class=
"VisaProductTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
'loading'
>
<tr>
<th
width=
"11%"
>
单号
</th>
...
...
@@ -1137,6 +1140,7 @@
isShow
:
0
,
PreferPrice
:
0
,
IncomePrice
:
0
,
CostMoney
:
0
,
DiscountMoneyAll
:
0
,
EmployeeId
:
0
,
EditVisible
:
false
,
...
...
@@ -1291,6 +1295,7 @@
this
.
apipost
(
'dmc_get_visa_GetVisaOrderList'
,
this
.
msg
,
res
=>
{
this
.
PreferPrice
=
0
;
this
.
IncomePrice
=
0
;
this
.
CostMoney
=
0
;
this
.
DiscountMoneyAll
=
0
;
if
(
res
.
data
.
resultCode
==
0
)
{
this
.
loading
=
false
;
...
...
@@ -1304,6 +1309,7 @@
this
.
PreferPrice
+=
x
.
TotalPrice
;
this
.
DiscountMoneyAll
+=
x
.
DiscountMoney
;
this
.
IncomePrice
+=
(
x
.
Income
+
x
.
PlatformTax
-
x
.
RefundMoney
);
this
.
CostMoney
+=
x
.
CostMoney
;
}
})
}
...
...
src/components/SalesVisa/saleOrderSettlement.vue
View file @
4b63779d
...
...
@@ -24,7 +24,7 @@
<div
class=
"fl meta mg0"
>
成本
</div>
<input
v-if=
"
$route.query.
TrafficToll>0||seeDes"
type=
"button"
<input
v-if=
"TrafficToll>0||seeDes"
type=
"button"
class=
"normalBtn fr"
value=
"新增车费成本"
@
click=
"goUrl()"
/>
</div>
<table
class=
"saleOrderSettlementTable"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
>
...
...
@@ -184,7 +184,8 @@
:page-size=
"this.CollectMsg.pageSize"
:total=
"total1"
>
</el-pagination>
<div
style=
"margin: 20px 0; overflow: hidden;"
>
<!--
<div
style=
"margin: 20px 0; overflow: hidden;"
>
<div
class=
"fl meta mg0"
>
提成核算
</div>
...
...
@@ -208,7 +209,7 @@
暂无提成发放
</td>
</tr>
</table>
</table>
-->
</div>
</
template
>
...
...
@@ -216,6 +217,7 @@
export
default
{
data
(){
return
{
TrafficToll
:
0
,
//交通费用
isDisabled
:
true
,
OrderIds
:[],
total
:
0
,
...
...
@@ -248,6 +250,23 @@
}
},
methods
:{
// 请求签证产品详情
GetVisaProductDetails
(){
this
.
apipost
(
"dmc_get_visa_GetVisaProductInfo_V1"
,
{
Pid
:
this
.
PayMsg
.
TCID
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
let
data
=
res
.
data
.
data
;
this
.
TrafficToll
=
res
.
data
.
data
.
TrafficToll
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
},
err
=>
{}
);
},
goUrlUpdatePay
(
obj
,
type
){
//付款单
this
.
$router
.
push
(
{
...
...
@@ -372,6 +391,7 @@
this
.
getPayList
()
this
.
getTicheng
()
this
.
getCollectList
()
this
.
GetVisaProductDetails
()
}
}
</
script
>
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