haldis/app/models/product.py

25 lines
750 B
Python
Raw Normal View History

from models import db
2019-09-07 22:41:50 +00:00
from .location import Location
class Product(db.Model):
id = db.Column(db.Integer, primary_key=True)
2019-09-05 01:33:29 +00:00
location_id = db.Column(db.Integer, db.ForeignKey("location.id"))
name = db.Column(db.String(120), nullable=False)
price = db.Column(db.Integer, nullable=False)
2019-09-07 22:41:50 +00:00
orderItems = db.relationship("OrderItem",
backref="product", lazy="dynamic")
2019-09-07 22:41:50 +00:00
def configure(self, location: Location, name: str, price: int) -> None:
self.location = location
self.name = name
self.price = price
2019-09-07 22:41:50 +00:00
def __repr__(self) -> str:
2019-09-05 01:33:29 +00:00
return "%s (€%d)from %s" % (
self.name,
self.price / 100,
self.location or "None",
)