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
a010cdd9
Commit
a010cdd9
authored
Jun 25, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
022db52d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
TicketManager.vue
src/components/Ticketing/TicketManager.vue
+5
-4
No files found.
src/components/Ticketing/TicketManager.vue
View file @
a010cdd9
...
...
@@ -2647,13 +2647,14 @@
<!-- 开票费用 -->
<el-dialog
width=
"1000px"
title=
"开票费用"
:visible
.
sync=
"BillingChargeDialog"
center
>
<el-form
class=
"Rform"
ref=
"form"
:model=
"Ticketform"
label-width=
"67px"
>
<div
style=
"color: red;font-size: 13px;text-align: right;padding: 0 0 5px 0;"
>
注:开票单价*开票人数+升舱增收=总开票金额
</div>
<table
class=
"po_content singeRowTable"
style=
"border:1px solid #E6E6E6;margin-bottom:15px"
cellspacing=
"0"
cellpadding=
"0"
v-loading=
"loading"
>
<tr>
<th>
团号
</th>
<th>
开票人数
</th>
<th>
升舱增收
</th>
<th>
开票单价
</th>
<th>
升舱增收
</th>
<th>
总开票金额
</th>
</tr>
<tr
v-for=
"(item,index) in MsgRAirServiceList"
:key=
"index"
>
...
...
@@ -2665,11 +2666,11 @@
@
keyup
.
native=
"checkInteger(item,'GuestNum'),computeBillingCharge()"
></el-input>
</td>
<td>
<el-input
size=
"mini"
style=
"width:150px"
v-model=
"item.
IncreaseIncome"
@
keyup
.
native=
"checkPrice(item,'IncreaseIncome'
)"
>
<el-input
size=
"mini"
style=
"width:150px"
v-model=
"item.
UnitPrice"
@
keyup
.
native=
"checkPrice(item,'UnitPrice'),computeBillingCharge(
)"
>
</el-input>
</td>
<td>
<el-input
size=
"mini"
style=
"width:150px"
v-model=
"item.
UnitPrice"
@
keyup
.
native=
"checkPrice(item,'UnitPric
e'),computeBillingCharge()"
>
<el-input
size=
"mini"
style=
"width:150px"
v-model=
"item.
IncreaseIncome"
@
keyup
.
native=
"checkPrice(item,'IncreaseIncom
e'),computeBillingCharge()"
>
</el-input>
</td>
<td>
...
...
@@ -3089,7 +3090,7 @@
},
computeBillingCharge
(){
this
.
MsgRAirServiceList
.
forEach
(
x
=>
{
x
.
TotalPrice
=
x
.
GuestNum
*
x
.
UnitPrice
x
.
TotalPrice
=
(
x
.
GuestNum
*
x
.
UnitPrice
)
+
Number
(
x
.
IncreaseIncome
)
})
},
SelectFinaceId
(
val
,
index
)
{
...
...
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