added a function to transfare money between two user
This commit is contained in:
parent
cfafd0e148
commit
3c87a971ea
3 changed files with 59 additions and 0 deletions
|
@ -283,6 +283,31 @@ def create_app(test_config=None):
|
|||
socketio.emit("error", "418", to=session[id])
|
||||
leave_room(session[id])
|
||||
|
||||
@app.route("/transfare")
|
||||
def transfare():
|
||||
db = get_db()
|
||||
c = db.cursor()
|
||||
c.execute("SELECT * FROM users")
|
||||
user_list = c.fetchall()
|
||||
return render_template("transfare.html", user_list=user_list)
|
||||
|
||||
@app.route("/api/transfare", methods=['POST'])
|
||||
def api_transfare():
|
||||
db = get_db()
|
||||
c = db.cursor()
|
||||
transfare_from = request.form["transfarefrom"]
|
||||
transfare_to = request.form["transfareto"]
|
||||
change = int(request.form["change"]) * 100
|
||||
c.execute("SELECT * FROM users WHERE id=?", [transfare_from])
|
||||
if c.fetchall() == []:
|
||||
return render_template("error.html", error_code="043")
|
||||
c.execute("SELECT * FROM users WHERE id=?", [transfare_to])
|
||||
if c.fetchall() == []:
|
||||
return render_template("error.html", error_code="043")
|
||||
db_handler.change_balance(transfare_from, -change)
|
||||
db_handler.change_balance(transfare_to, change)
|
||||
return render_template("redirect.html")
|
||||
|
||||
@app.route("/api/balance", methods=['POST', 'GET'])
|
||||
def api_change():
|
||||
if request.method == 'POST':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue