d0863325a5
But for real, it's a real shitstorm in there. - Added context by making the init go through a function and not implicitly happen via imports - Fixup all context and contextless function mixups - splitup the models in sensible different files - give the dump of view functions in views/__init__.py their own file - add all routes via blueprints, not half of them - move the slack notifications function and class to its own file, no idea what it was doing in a views file in the first place.
20 lines
682 B
Python
20 lines
682 B
Python
from models import db
|
|
|
|
|
|
class Location(db.Model):
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
name = db.Column(db.String(120), nullable=False)
|
|
address = db.Column(db.String(254))
|
|
website = db.Column(db.String(120))
|
|
telephone = db.Column(db.String(20), nullable=True)
|
|
products = db.relationship('Product', backref='location', lazy='dynamic')
|
|
orders = db.relationship('Order', backref='location', lazy='dynamic')
|
|
|
|
def configure(self, name, address, telephone, website):
|
|
self.name = name
|
|
self.address = address
|
|
self.website = website
|
|
self.telephone = telephone
|
|
|
|
def __repr__(self):
|
|
return '%s' % (self.name)
|