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
0710d7b7
Commit
0710d7b7
authored
6 years ago
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
车资增加条件导出
parent
0a01c7b1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
3 deletions
+21
-3
BusExport.vue
src/components/BusExport.vue
+2
-1
productQuery.vue
src/components/SalesModule/productQuery.vue
+6
-1
BusApportionManagement.vue
src/components/busManagement/BusApportionManagement.vue
+13
-1
No files found.
src/components/BusExport.vue
View file @
0710d7b7
...
...
@@ -147,6 +147,7 @@
MakeEndDate
:
''
,
CurrType
:
''
,
CurrName
:
''
,
ClientId
:
''
},
Year
:
''
,
Month
:
''
,
...
...
@@ -160,7 +161,7 @@
this
.
msg
.
MakeStartDate
=
this
.
$route
.
query
.
MakeStartDate
;
this
.
msg
.
MakeEndDate
=
this
.
$route
.
query
.
MakeEndDate
;
this
.
msg
.
CurrType
=
this
.
$route
.
query
.
CurrType
;
this
.
msg
.
ClientId
=
this
.
$route
.
query
.
ClientId
;
this
.
Year
=
this
.
msg
.
Month
.
split
(
'-'
)[
0
];
this
.
Month
=
this
.
msg
.
Month
.
split
(
'-'
)[
1
];
...
...
This diff is collapsed.
Click to expand it.
src/components/SalesModule/productQuery.vue
View file @
0710d7b7
...
...
@@ -289,7 +289,7 @@
</el-form-item>
</el-col>
<el-col
:span=
"4"
>
<el-form-item
label=
"单地接人数"
prop=
"AirticketNum"
>
<el-form-item
label=
"单地接人数"
prop=
"AirticketNum"
v-show=
"addMsg.GroupType !== '1'"
>
<el-input
v-model=
'addMsg.AirticketNum'
@
keyup
.
native=
"checkInteger(addMsg,'AirticketNum')"
@
input=
'getNumber();getTotalPrice();getHouseNo();autoRemarks("AirticketNum","单地接数量")'
></el-input>
</el-form-item>
</el-col>
...
...
@@ -1110,6 +1110,11 @@
this
.
getNumber
();
this
.
getHouseNo
();
this
.
getTotalPrice
()
}
else
if
(
val
===
'1'
)
{
this
.
addMsg
.
AirticketNum
=
0
this
.
getNumber
();
this
.
getHouseNo
();
this
.
getTotalPrice
()
}
},
downloadFile
:
function
(
item
)
{
...
...
This diff is collapsed.
Click to expand it.
src/components/busManagement/BusApportionManagement.vue
View file @
0710d7b7
...
...
@@ -298,6 +298,16 @@
</el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"客户名称"
class=
'multiple_input countryList'
>
<el-select
filterable
v-model=
'exportInfo.ClientId'
placeholder=
"请选择客户名称"
class=
"w200 _border_b_1"
>
<el-option
:value=
"0"
label=
"不限"
></el-option>
<el-option
v-for=
'item in ClientAccountList'
:label=
'item.Name'
:value=
'item.ID'
:key=
'item.ID'
>
</el-option>
</el-select>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<button
class=
"normalBtn"
type=
"primary"
@
click=
"goToExport('BusExport')"
>
{{
$t
(
'pub.saveBtn'
)
}}
</button>
...
...
@@ -388,7 +398,8 @@ export default {
DCDate
:
''
,
StartGroupDate
:
''
,
EndGroupDate
:
''
,
CurrType
:
3
CurrType
:
3
,
ClientId
:
0
},
pickerBeginDateBefore
:
{
disabledDate
:
time
=>
{
...
...
@@ -818,6 +829,7 @@ export default {
MakeStartDate
:
this
.
exportInfo
.
StartGroupDate
,
MakeEndDate
:
this
.
exportInfo
.
EndGroupDate
,
CurrType
:
this
.
exportInfo
.
CurrType
,
ClientId
:
this
.
exportInfo
.
ClientId
}
});
window
.
open
(
routeData
.
href
,
"_blank"
);
...
...
This diff is collapsed.
Click to expand it.
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