* dev: estimates and pages migrations * dev: favorite and user migrations * chore: workspace base model * chore: workspace user properties * chore: removed unused variables * chore: favorite view set changes * chore: default sequence id --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
# Django imports
|
|
from django.core.validators import MaxValueValidator, MinValueValidator
|
|
from django.db import models
|
|
|
|
# Module imports
|
|
from .project import ProjectBaseModel
|
|
|
|
|
|
class Estimate(ProjectBaseModel):
|
|
name = models.CharField(max_length=255)
|
|
description = models.TextField(
|
|
verbose_name="Estimate Description", blank=True
|
|
)
|
|
type = models.CharField(max_length=255, default="Categories")
|
|
|
|
def __str__(self):
|
|
"""Return name of the estimate"""
|
|
return f"{self.name} <{self.project.name}>"
|
|
|
|
class Meta:
|
|
unique_together = ["name", "project"]
|
|
verbose_name = "Estimate"
|
|
verbose_name_plural = "Estimates"
|
|
db_table = "estimates"
|
|
ordering = ("name",)
|
|
|
|
|
|
class EstimatePoint(ProjectBaseModel):
|
|
estimate = models.ForeignKey(
|
|
"db.Estimate",
|
|
on_delete=models.CASCADE,
|
|
related_name="points",
|
|
)
|
|
key = models.IntegerField(
|
|
default=0, validators=[MinValueValidator(0), MaxValueValidator(12)]
|
|
)
|
|
description = models.TextField(blank=True)
|
|
value = models.CharField(max_length=20)
|
|
|
|
def __str__(self):
|
|
"""Return name of the estimate"""
|
|
return f"{self.estimate.name} <{self.key}> <{self.value}>"
|
|
|
|
class Meta:
|
|
verbose_name = "Estimate Point"
|
|
verbose_name_plural = "Estimate Points"
|
|
db_table = "estimate_points"
|
|
ordering = ("value",)
|