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
a7659657
Commit
a7659657
authored
Jun 21, 2023
by
黄奎
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
ae6dc8f9
c1b9cce2
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
76 additions
and
53 deletions
+76
-53
OrderList.vue
src/components/Hotel/reservation/OrderList.vue
+7
-4
OrderList.vue
src/components/Hotel/singleProduct/components/OrderList.vue
+8
-4
VisaProductOrder.vue
src/components/SalesVisa/VisaProductOrder.vue
+15
-12
OrderList.vue
src/components/SingleAirTicket/components/OrderList.vue
+9
-5
orderList.vue
...omponents/busManagement/BookAcar/components/orderList.vue
+7
-3
tripBusOrderList.vue
...ts/busManagement/BookAcar/components/tripBusOrderList.vue
+23
-21
OrderList.vue
src/components/scenicSpot/reservation/OrderList.vue
+7
-4
No files found.
src/components/Hotel/reservation/OrderList.vue
View file @
a7659657
...
...
@@ -1008,10 +1008,6 @@ export default {
},
isOffset
(
row
,
index
,
num
,
name
){
this
.
makeAdocument
(
row
,
index
,
num
,
name
,
'Offset'
)
setTimeout
(()
=>
{
this
.
cdState
=
true
},
100
)
},
editRemark
(
item
){
this
.
postMsg
.
OrderId
=
item
.
OrderId
...
...
@@ -1103,6 +1099,13 @@ export default {
},
// 制作单据
makeAdocument
(
row
,
index
,
num
,
name
,
Offset
)
{
if
((
num
==
2
||
num
==
3
)
&&
row
.
Income
<=
0
){
this
.
Info
(
'请先制收款单据,再制成本或退款单据!'
)
return
}
if
(
Offset
){
this
.
cdState
=
true
}
let
type
=
0
if
(
num
==
3
){
type
=
2
...
...
src/components/Hotel/singleProduct/components/OrderList.vue
View file @
a7659657
...
...
@@ -891,9 +891,6 @@ export default {
methods
:
{
isOffset
(
row
,
index
,
num
,
name
){
this
.
makeAdocument
(
row
,
index
,
num
,
name
,
'Offset'
)
setTimeout
(()
=>
{
this
.
cdState
=
true
},
100
)
},
// 单据详情
...
...
@@ -909,6 +906,13 @@ export default {
},
// 制作单据
makeAdocument
(
row
,
index
,
num
,
name
,
Offset
)
{
if
((
num
==
2
||
num
==
3
)
&&
row
.
Income
<=
0
){
this
.
Info
(
'请先制收款单据,再制成本或退款单据!'
)
return
}
if
(
Offset
){
this
.
cdState
=
true
}
let
type
=
0
if
(
num
==
3
){
type
=
2
...
...
src/components/SalesVisa/VisaProductOrder.vue
View file @
a7659657
...
...
@@ -1153,13 +1153,16 @@
methods
:
{
isOffset
(
row
,
index
,
num
){
this
.
makeAdocument
(
row
,
index
,
num
,
'Offset'
)
setTimeout
(()
=>
{
this
.
cdState
=
true
},
100
)
},
// 制作单据
makeAdocument
(
row
,
index
,
num
,
Offset
)
{
if
((
num
==
2
||
num
==
3
)
&&
row
.
Income
<=
0
){
this
.
Info
(
'请先制收款单据,再制成本或退款单据!'
)
return
}
if
(
Offset
){
this
.
cdState
=
true
}
let
type
=
0
if
(
num
==
3
){
type
=
2
...
...
src/components/SingleAirTicket/components/OrderList.vue
View file @
a7659657
...
...
@@ -575,12 +575,12 @@
</el-table-column>
<el-table-column
label=
"应收"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
Income
Money
}}
{{
scope
.
row
.
Money
}}
</
template
>
</el-table-column>
<el-table-column
label=
"实收"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
Back
Money
}}
{{
scope
.
row
.
Income
Money
}}
</
template
>
</el-table-column>
<el-table-column
label=
"退款"
>
...
...
@@ -1036,9 +1036,6 @@
},
isOffset
(
row
,
index
,
num
){
this
.
makeAdocument
(
row
,
index
,
num
,
'Offset'
)
setTimeout
(()
=>
{
this
.
cdState
=
true
},
100
)
},
submit2
(){
if
(
this
.
loading3
)
return
...
...
@@ -1139,6 +1136,13 @@
},
// 制作单据
makeAdocument
(
row
,
index
,
num
,
Offset
)
{
if
((
num
==
2
||
num
==
3
)
&&
row
.
IncomeMoney
<=
0
){
this
.
Info
(
'请先制收款单据,再制成本或退款单据!'
)
return
}
if
(
Offset
){
this
.
cdState
=
true
}
let
type
=
0
if
(
num
==
3
){
type
=
2
...
...
src/components/busManagement/BookAcar/components/orderList.vue
View file @
a7659657
...
...
@@ -1167,9 +1167,6 @@ export default {
},
isOffset
(
row
,
index
,
num
)
{
this
.
makeAdocument
(
row
,
index
,
num
,
"Offset"
);
setTimeout
(()
=>
{
this
.
cdState
=
true
;
},
100
);
},
editRemark
(
item
)
{
this
.
postMsg
.
OrderId
=
item
.
OrderId
;
...
...
@@ -1313,6 +1310,13 @@ export default {
},
// 制作单据
makeAdocument
(
row
,
index
,
num
,
Offset
)
{
if
((
num
==
2
||
num
==
3
)
&&
row
.
Income
<=
0
){
this
.
Info
(
'请先制收款单据,再制成本或退款单据!'
)
return
}
if
(
Offset
){
this
.
cdState
=
true
}
let
type
=
0
;
if
(
num
==
3
)
{
type
=
2
;
...
...
src/components/busManagement/BookAcar/components/tripBusOrderList.vue
View file @
a7659657
...
...
@@ -1115,10 +1115,6 @@
},
isOffset
(
row
,
index
,
num
){
this
.
makeAdocument
(
row
,
index
,
num
,
'Offset'
)
setTimeout
(()
=>
{
this
.
cdState
=
true
},
100
)
},
editRemark
(
item
){
this
.
postMsg
.
Id
=
item
.
Id
...
...
@@ -1206,6 +1202,13 @@
},
// 制作单据
makeAdocument
(
row
,
index
,
num
,
Offset
)
{
if
((
num
==
2
||
num
==
3
)
&&
row
.
Income
<=
0
){
this
.
Info
(
'请先制收款单据,再制成本或退款单据!'
)
return
}
if
(
Offset
){
this
.
cdState
=
true
}
let
type
=
0
if
(
num
==
3
){
type
=
2
...
...
@@ -1604,4 +1607,3 @@
}
};
</
script
>
\ No newline at end of file
src/components/scenicSpot/reservation/OrderList.vue
View file @
a7659657
...
...
@@ -1168,10 +1168,6 @@ export default {
},
isOffset
(
row
,
index
,
num
){
this
.
makeAdocument
(
row
,
index
,
num
,
'Offset'
)
setTimeout
(()
=>
{
this
.
cdState
=
true
},
100
)
},
editRemark
(
item
){
this
.
postMsg
.
OrderId
=
item
.
OrderId
...
...
@@ -1315,6 +1311,13 @@ export default {
},
// 制作单据
makeAdocument
(
row
,
index
,
num
,
Offset
)
{
if
((
num
==
2
||
num
==
3
)
&&
row
.
Income
<=
0
){
this
.
Info
(
'请先制收款单据,再制成本或退款单据!'
)
return
}
if
(
Offset
){
this
.
cdState
=
true
}
let
type
=
0
if
(
num
==
3
){
type
=
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