1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00

Added weightings default and check

This commit is contained in:
Mo 2021-08-16 23:30:30 +02:00
parent bb23670403
commit 43678dd18b

View file

@ -210,6 +210,21 @@ class Experiment(db.Model):
__table_args__ = (db.UniqueConstraint(number, program_id),)
def checkWeightings(self, roundWeightings=False):
roundedOralWeighting = round(self.oral_weighting, 2)
roundedProtocolWeighting = round(self.protocol_weighting, 2)
weightingSum = round(roundedOralWeighting + roundedProtocolWeighting, 2)
if weightingSum != 1:
raise DataBaseException(
f"Oral and protocol weighting (rounded to 2 decimal digits) sum to {weightingSum} and not 1.00!"
)
if roundWeightings:
self.oral_weighting = roundedOralWeighting
self.protocol_weighting = roundedProtocolWeighting
def repr(self):
return f"{self.number} {self.program.repr()}"
@ -381,10 +396,18 @@ class ExperimentMark(db.Model):
id = db.Column(db.Integer, primary_key=True)
oral_mark = db.Column(
db.Integer, db.CheckConstraint("oral_mark > -1"), db.CheckConstraint("oral_mark < 16"), nullable=True
db.Integer,
db.CheckConstraint("oral_mark > -1"),
db.CheckConstraint("oral_mark < 16"),
default=0.5,
nullable=True,
)
protocol_mark = db.Column(
db.Integer, db.CheckConstraint("protocol_mark > -1"), db.CheckConstraint("protocol_mark < 16"), nullable=True
db.Integer,
db.CheckConstraint("protocol_mark > -1"),
db.CheckConstraint("protocol_mark < 16"),
default=0.5,
nullable=True,
)
edited_by_admin = db.Column(db.Boolean, default=False, nullable=False)