tour plan uchun ikkita yangi field qoshildi

This commit is contained in:
behruz-dev
2025-11-27 15:03:39 +05:00
parent dbc90ba70a
commit 708f4032ca
4 changed files with 38 additions and 11 deletions

View File

@@ -7,11 +7,17 @@ from core.apps.accounts.models import User
class TourPlan(BaseModel):
district = models.ForeignKey(District, on_delete=models.CASCADE, related_name='tour_plans')
place_name = models.CharField(max_length=200, null=True)
user = models.ForeignKey(User, on_delete=models.CASCADE, related_name='tour_plans')
latitude = models.FloatField(null=True, blank=True)
longitude = models.FloatField(null=True, blank=True)
location_send = models.BooleanField(default=False)
def __str__(self):
return f"{self.user.first_name}'s tour plan to {self.district.name}"
return f"{self.user.first_name}'s tour plan to {self.district.name}"
def save(self, *args, **kwargs):
if self.longitude and self.latitude:
self.location_send = True
return super().save(*args, **kwargs)