Walter Mantovani
commited on
Commit
·
702c8e5
1
Parent(s):
b77857f
fix
Browse files
models.py
CHANGED
@@ -59,7 +59,7 @@ class Lotto(db.Model, SerializerMixin):
|
|
59 |
prodotto = db.relationship('Prodotto', back_populates='lotti')
|
60 |
prenotazioni = db.relationship('Prenotazione', back_populates='lotto')
|
61 |
|
62 |
-
serialize_rules = ('-prodotto.lotti', '-prenotazioni', 'get_qta_disponibile', 'get_date', 'get_prezzo_str')
|
63 |
|
64 |
def get_qta_disponibile(self):
|
65 |
qta_prenotata = sum(prenotazione.qta for prenotazione in self.prenotazioni)
|
|
|
59 |
prodotto = db.relationship('Prodotto', back_populates='lotti')
|
60 |
prenotazioni = db.relationship('Prenotazione', back_populates='lotto')
|
61 |
|
62 |
+
serialize_rules = ('-prodotto.lotti', '-prenotazioni.lotto', 'get_qta_disponibile', 'get_date', 'get_prezzo_str')
|
63 |
|
64 |
def get_qta_disponibile(self):
|
65 |
qta_prenotata = sum(prenotazione.qta for prenotazione in self.prenotazioni)
|