Commit 128158b0 by Aeolus

update

parent 49334cdf
......@@ -18,7 +18,7 @@ route_invoice = Blueprint('invoice', __name__)
@route_invoice.route('/list')
def invoice_list():
if g.user.id not in (2, 4):
if g.user.id not in (162, 4):
# if g.user.id != 4:
return jsonify(BASE_RESPONSE(error_code=-1, error_message='permission denied').to_dict())
......@@ -40,7 +40,7 @@ def invoice_list():
@route_invoice.route('/verify', methods=['GET', 'POST'])
def invoice_compare():
if g.user.id not in (2, 4):
if g.user.id not in (162, 4):
# if g.user.id != 4:
return jsonify(BASE_RESPONSE(error_code=-1, error_message='permission denied').to_dict())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment