本文整理汇总了Python中models.Ticket.book_temp方法的典型用法代码示例。如果您正苦于以下问题:Python Ticket.book_temp方法的具体用法?Python Ticket.book_temp怎么用?Python Ticket.book_temp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Ticket
的用法示例。
在下文中一共展示了Ticket.book_temp方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: book_ticket
# 需要导入模块: from models import Ticket [as 别名]
# 或者: from models.Ticket import book_temp [as 别名]
def book_ticket():
if 'user_id' not in session:
return login_in_please()
user_id = session['user_id']
req = request.get_json()
if 'type' not in req:
return bad_request()
ticket_type = req['type']
if ticket_type not in app.config['TYPE_IDS'].values():
return bad_request()
seat_num = None
if ticket_type == app.config['TYPE_IDS']['pc']:
if 'seat' not in req:
return bad_request()
seat_num = req['seat']
tickets_max = app.config['TICKETS_MAX']
price = app.config['PRICING'][ticket_type]
r = Ticket.book_temp(user_id, ticket_type, price, tickets_max, seat_num)
if r[0]:
ticket = Ticket.query.filter(Ticket.owner_id == user_id) \
.filter(or_(Ticket.paid, Ticket.reserved_until >= datetime.now())) \
.one()
return jsonify({'ticket': ticket.as_pub_dict()}), 201
# Conflict while booking ticket
return jsonify({'error': str(r[1])}), 409