1
0
Fork 0

Added Backend Part

This commit is contained in:
Giebisch 2023-01-30 16:12:14 +01:00
parent 48ac90a984
commit f085315d70
5 changed files with 45 additions and 2 deletions

View file

@ -329,6 +329,9 @@ class Quotation(BookStatus):
position = models.IntegerField(
validators=[MinValueValidator(0)], null=True, blank=True
)
endposition = models.IntegerField(
validators=[MinValueValidator(0)], null=True, blank=True
)
position_mode = models.CharField(
max_length=3,
choices=ProgressMode.choices,