haldis/app/models/product.py

26 lines
927 B
Python
Raw Normal View History

2019-09-09 23:06:11 +00:00
"Script for everything Product related in the database"
from models import db
2019-09-07 22:41:50 +00:00
from .location import Location
class Product(db.Model):
2019-09-09 23:06:11 +00:00
"Class used for configuring the Product model in the database"
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-09 23:06:11 +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:
2019-09-09 23:06:11 +00:00
"Configure the Product"
# pylint: disable=W0201
self.location = location
self.name = name
self.price = price
2019-09-07 22:41:50 +00:00
def __repr__(self) -> str:
2019-09-09 23:06:11 +00:00
return "%s (€%d)from %s" % (self.name, self.price / 100,
self.location or "None",)