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
ff8ae767
Commit
ff8ae767
authored
Jun 26, 2019
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
车资增加备注录入;营收报表增加领队导游查询
parent
689a5758
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
72 additions
and
3 deletions
+72
-3
TeamRevenueReport.vue
...mponents/FinancialModule/ReportForm/TeamRevenueReport.vue
+62
-2
BusApportionManagement.vue
src/components/busManagement/BusApportionManagement.vue
+10
-1
No files found.
src/components/FinancialModule/ReportForm/TeamRevenueReport.vue
View file @
ff8ae767
...
...
@@ -527,13 +527,31 @@ tr._item_list td:last-child {
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"是否联运"
>
<el-form-item
label=
"是否联运
:
"
>
<el-select
v-model=
"msg.Is_Transport"
filterable
class=
"w150"
>
<el-option
value=
"-1"
label=
"不限"
></el-option>
<el-option
value=
"1"
label=
"是"
></el-option>
<el-option
value=
"0"
label=
"否"
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"领队类型:"
>
<el-select
v-model=
"msg.LeaderType"
filterable
class=
"w150"
@
change=
"GetLeaderList()"
>
<el-option
:value=
"0"
label=
"请选择"
></el-option>
<el-option
:value=
"1"
label=
"领队"
></el-option>
<el-option
:value=
"2"
label=
"领兼导"
></el-option>
<el-option
:value=
"3"
label=
"导游"
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"领队/导游:"
>
<el-select
v-model=
"msg.LeaderId"
filterable
class=
"w150"
>
<el-option
:label=
"$t('pub.unlimitedSel')"
:value=
"0"
></el-option>
<el-option
v-for=
"item in LeaderList"
:label=
'item.Name'
:value=
'item.ID'
:key=
'item.ID'
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"4"
v-if=
"userId==1||userId==5"
>
<el-button
@
click=
"msg.Is_Open=0,SetTravelClose()"
type=
"danger"
size=
"small"
round
:loading=
"btnloading"
>
开启团队收支
</el-button>
...
...
@@ -815,7 +833,9 @@ export default {
Type
:
1
,
QueryCondition
:
"-1"
,
DataType
:
"1"
,
Is_Transport
:
'-1'
Is_Transport
:
'-1'
,
LeaderId
:
0
,
LeaderType
:
0
},
getCompanyMsg
:
{
// 公司
...
...
@@ -838,6 +858,7 @@ export default {
multipleSort
:
false
,
kaiqiZzBox
:
false
,
KaiqiZzTime
:
[],
LeaderList
:
[],
kaiqiZzTitle
:
""
,
kaiqiZzLoading
:
false
,
kaiqiZzMsg
:
{
...
...
@@ -920,6 +941,28 @@ export default {
isFrozen
:
true
,
componentName
:
"TCNUMJump"
},
{
field
:
"LeaderName"
,
title
:
"领队"
,
width
:
60
,
titleAlign
:
"left"
,
columnAlign
:
"left"
,
isResize
:
true
,
result
:
[],
type
:
"select"
,
isFrozen
:
true
},
{
field
:
"GuideName"
,
title
:
"导游"
,
width
:
60
,
titleAlign
:
"left"
,
columnAlign
:
"left"
,
isResize
:
true
,
result
:
[],
type
:
"select"
,
isFrozen
:
true
},
{
field
:
"Is_Transport"
,
title
:
"是否有联运支出"
,
...
...
@@ -1570,6 +1613,23 @@ export default {
}
})
},
//获取领队和导游
GetLeaderList
()
{
this
.
LeaderList
=
[];
this
.
msg
.
LeaderId
=
0
;
let
msg
=
{
Type
:
this
.
msg
.
LeaderType
,
}
this
.
apipost
(
'leader_post_GetList'
,
msg
,
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
LeaderList
=
res
.
data
.
data
;
}
},
err
=>
{}
)
},
getLineTeamList
(
lineId
,
PlaceId
)
{
...
...
src/components/busManagement/BusApportionManagement.vue
View file @
ff8ae767
<
style
>
.BusedHeight
{
display
:
block
!important
;
height
:
4
50px
;
height
:
5
50px
;
}
.FinaceItem
span
{
display
:
inline-block
;
...
...
@@ -318,6 +318,13 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"8"
:gutter=
"35"
>
<el-form-item
label=
"制单备注"
>
<el-input
v-model=
"addMsg.Remark"
type=
"textarea"
rows=
"2"
placeholder=
"请输入"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"4"
:gutter=
"35"
>
<el-form-item
label=
"团队编号"
>
...
...
@@ -464,6 +471,7 @@ export default {
f_rate
:
''
,
ClientID
:
0
,
PayDate
:
''
,
Remark
:
''
,
VorList
:[]
},
dataList
:
[],
...
...
@@ -715,6 +723,7 @@ export default {
f_rate
:
''
,
ClientID
:
0
,
PayDate
:
''
,
Remark
:
''
,
VorList
:[]
};
this
.
Year
=
''
;
...
...
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