user request yuborishda api fix qilindi

This commit is contained in:
Husanjonazamov
2026-03-17 19:06:38 +05:00
parent 4479a0c1a5
commit 9a13a2b4f0
3 changed files with 52 additions and 12 deletions

View File

@@ -65,8 +65,9 @@ class EvaluationrequestModel(AbstractBaseModel):
blank=True,
null=True,
)
chassi = models.IntegerField(
chassi = models.CharField(
verbose_name=_("chassi"),
max_length=100,
blank=True,
null=True,
)
@@ -74,6 +75,12 @@ class EvaluationrequestModel(AbstractBaseModel):
verbose_name=_("need delivering"),
default=True,
)
location_name = models.CharField(
verbose_name=_("location name"),
max_length=255,
blank=True,
null=True,
)
location_lat = models.DecimalField(
verbose_name=_("location latitude"),
max_digits=9,