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
69d2211b
Commit
69d2211b
authored
Jun 26, 2023
by
youjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
be46419d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
10 deletions
+20
-10
TeamRevenueReport.vue
...mponents/FinancialModule/ReportForm/TeamRevenueReport.vue
+15
-0
TicketManager.vue
src/components/Ticketing/TicketManager.vue
+5
-10
No files found.
src/components/FinancialModule/ReportForm/TeamRevenueReport.vue
View file @
69d2211b
...
...
@@ -511,6 +511,7 @@ tr._item_list td:last-child {
<el-option
value=
"17"
v-if=
"isShowType"
label=
"单项酒店"
></el-option>
<el-option
value=
"18"
v-if=
"isShowType"
label=
"单项包车"
></el-option>
<el-option
value=
"19"
v-if=
"isShowType"
label=
"单项门票"
></el-option>
<el-option
value=
"20"
label=
"开票收入"
></el-option>
</el-select>
<el-select
v-model=
"msg.DataType"
:disabled=
"shujuType"
filterable
class=
"w150"
v-if=
"isShowGrounding==false"
>
<el-option
value=
"6"
v-if=
"isShowType"
label=
"日本地接部专户"
></el-option>
...
...
@@ -1540,6 +1541,16 @@ export default {
isResize
:
true
,
componentName
:
"TCIDJumpWang"
},
{
field
:
"AirServiceCharge"
,
formatter
:
this
.
moneyFormat
,
title
:
"开票费用"
,
width
:
120
,
titleAlign
:
"left"
,
columnAlign
:
"right"
,
isResize
:
true
,
componentName
:
"TCIDJumpWang"
},
// {field: 'Money11', title: '房费',width: 90, titleAlign: 'left',columnAlign:'left',isResize:true},
{
field
:
"Visa"
,
...
...
@@ -2551,6 +2562,7 @@ export default {
if
(
field
===
"JiPiao"
)
return
this
.
priceFormat
(
rowData
.
JiPiao
);
if
(
field
===
"GuoNeiLianYunJiPiao"
)
return
this
.
priceFormat
(
rowData
.
GuoNeiLianYunJiPiao
);
if
(
field
===
"AirLossIncome"
)
return
this
.
priceFormat
(
rowData
.
AirLossIncome
);
if
(
field
===
"AirServiceCharge"
)
return
this
.
priceFormat
(
rowData
.
AirServiceCharge
);
if
(
field
===
"Visa"
)
return
this
.
priceFormat
(
rowData
.
Visa
);
if
(
field
===
"TiCheng"
)
return
this
.
priceFormat
(
rowData
.
TiCheng
);
if
(
field
===
"CompensationMoney"
)
...
...
@@ -2647,6 +2659,9 @@ export default {
if
(
rowData
.
AirLossIncome
<
0
&&
columnName
==
"AirLossIncome"
){
return
"column-cell-class-name-test-red"
}
if
(
rowData
.
AirServiceCharge
<
0
&&
columnName
==
"AirServiceCharge"
){
return
"column-cell-class-name-test-red"
}
if
(
rowData
.
Visa
<
0
&&
columnName
==
"Visa"
){
return
"column-cell-class-name-test-red"
}
...
...
src/components/Ticketing/TicketManager.vue
View file @
69d2211b
...
...
@@ -1387,8 +1387,8 @@
<li>
<span>
<em>
开票状态
</em>
<el-select
v-model=
"msg.
TicketManager
"
:placeholder=
"$t('pub.pleaseSel')"
class=
"w120"
>
<el-option
v-for=
"item in
TicketManager
List"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
<el-select
v-model=
"msg.
IsSelectInvoicing
"
:placeholder=
"$t('pub.pleaseSel')"
class=
"w120"
>
<el-option
v-for=
"item in
maintenance
List"
:key=
"item.Id"
:label=
"item.Name"
:value=
"item.Id"
>
</el-option>
</el-select>
</span>
...
...
@@ -1866,6 +1866,7 @@
<div
class=
"_jztime"
>
<p
class=
"PingFangSC"
>
{{item.TicketDeadlineStr}}
</p>
<p
class=
"_text"
>
{{$t('Airticket.Air_deadTicketTime')}}
</p>
<p
class=
"_text"
v-if=
"item.InvoicingPrice>0"
>
¥{{item.InvoicingPrice}}
</p>
</div>
</el-col>
<el-col
:span=
"3"
class=
""
>
...
...
@@ -1950,12 +1951,6 @@
<el-button
type=
"primary"
class=
"iconfont icon-duigou"
@
click=
"UpdateTicketState(item.ID,1)"
>
</el-button>
</el-tooltip>
<!-- <el-tooltip class="item" effect="dark" content="开票费用" placement="top-start"
v-if="item.isBillingCharge">
<el-button type="primary" class="el-icon-coin" @click="BillingCharge(item)"
style="font-size: 16px;">
</el-button>
</el-tooltip> -->
</el-button-group>
</div>
</el-col>
...
...
@@ -2792,9 +2787,9 @@
IsLimit
:
1
,
Departure_city
:
0
,
//出发地
SellType
:
-
1
,
//售卖机票类型:0-团队机票,1-单卖机票
TicketManager
:
'0'
,
//是否未维护开票金额1-未维护,2-已维护
IsSelectInvoicing
:
'0'
,
//是否未维护开票金额1-未维护,2-已维护
},
TicketManager
List
:[
maintenance
List
:[
{
Name
:
'不限'
,
Id
:
'0'
},
{
Name
:
'未维护'
,
Id
:
'1'
},
{
Name
:
'已维护'
,
Id
:
'2'
},
...
...
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