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

@@ -6,5 +6,5 @@ from core.apps.shared.models import TourPlan
@admin.register(TourPlan)
class TourPlanAdmin(admin.ModelAdmin):
list_display = ['id', 'district', 'longitude', 'latitude', 'user']
list_display = ['id', 'place_name', 'longitude', 'latitude', 'user']

View File

@@ -0,0 +1,27 @@
# Generated by Django 5.2 on 2025-11-27 10:02
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('shared', '0008_rename_langitude_location_latitude_and_more'),
]
operations = [
migrations.RemoveField(
model_name='tourplan',
name='district',
),
migrations.AddField(
model_name='tourplan',
name='location_send',
field=models.BooleanField(default=False),
),
migrations.AddField(
model_name='tourplan',
name='place_name',
field=models.CharField(max_length=200, null=True),
),
]

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)

View File

@@ -11,11 +11,5 @@ class TourPlanSerializer(serializers.ModelSerializer):
class Meta:
model = TourPlan
fields = [
'id', 'district', 'longitude', 'latitude', 'created_at'
]
def get_district(self, obj):
return {
'id': obj.district.id,
'name': obj.district.name,
}
'id', 'place_name', 'longitude', 'latitude', 'location_send', 'created_at'
]