Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tour_business
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
魏强
tour_business
Commits
fca3a629
Commit
fca3a629
authored
Apr 29, 2020
by
魏强
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update;
parent
74c1164a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Controller/RentController.py
+3
-3
No files found.
Controller/RentController.py
View file @
fca3a629
...
...
@@ -401,7 +401,7 @@ def force_refund():
#
# money = 2500
else
:
return
jsonify
(
{
'code'
:
-
1
,
'msg'
:
'refund type error!'
}
)
return
jsonify
(
BASE_RESPONSE
(
error_code
=-
1
,
error_message
=
'refund type error!'
)
.
to_dict
()
)
production
=
rent_info
.
Production
rent
=
rent_info
.
Rent
...
...
@@ -496,10 +496,10 @@ def rent_money_liuyuan():
# 退5元
money
=
500
else
:
return
jsonify
(
{
'code'
:
-
1
,
'msg'
:
'refund type error!'
}
)
return
jsonify
(
BASE_RESPONSE
(
error_code
=-
1
,
error_message
=
'refund type error!'
)
.
to_dict
()
)
if
money
>
real_total_consume
:
return
jsonify
(
{
'code'
:
-
1
,
'msg'
:
'refund fee 大于可退金额!'
}
)
return
jsonify
(
BASE_RESPONSE
(
error_code
=-
1
,
error_message
=
'refund fee 大于可退金额!'
)
.
to_dict
()
)
rent_refund_no
=
RentService
.
create_refund_no
()
...
...
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