This commit is contained in:
Shaxobff
2026-05-06 17:05:35 +05:00
parent a17c2a52ce
commit 89a5411e3c
16 changed files with 226 additions and 11 deletions

View File

@@ -32,6 +32,24 @@ class AutoEvaluationModel(AbstractBaseModel):
null=True,
blank=True,
)
with_tender_field = models.BooleanField(default=False)
tender_contract_number = models.CharField(
max_length=255,
null=True,
blank=True
)
tender_contract_file = models.FileField(
upload_to="tender_contracts/%Y/%m/",
null=True,
blank=True
)
tender_contract_date = models.DateField(
null=True,
blank=True
)
valuation = models.OneToOneField(
ValuationModel,
on_delete=models.CASCADE,