tour plan uchun ikkita yangi field qoshildi
This commit is contained in:
@@ -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']
|
||||
|
||||
@@ -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),
|
||||
),
|
||||
]
|
||||
@@ -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)
|
||||
@@ -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'
|
||||
]
|
||||
Reference in New Issue
Block a user