2.1.2 get_address_point_ajax change by ref v2

This commit is contained in:
SDE
2024-12-23 20:42:06 +03:00
parent b867ab7d02
commit 1e6c70122f
4 changed files with 41 additions and 37 deletions

View File

@@ -18,7 +18,7 @@ def search_cities_in_db(search_str):
for item in objs_wo_tz:
item.get_n_save_timezone()
res_data = City.objects.filter(id__in=ids).values(
'id', 'name', 'country__name', 'timezone'
'id', 'name', 'country__name', 'timezone', 'country__flag'
)
return list(res_data)