Merge branch 'feature/collect' into 'develop'
Feature/collect See merge request gm/gm-backend!89
This commit is contained in:
commit
03feb13166
0
apps/collection/management/__init__.py
Normal file
0
apps/collection/management/__init__.py
Normal file
0
apps/collection/management/commands/__init__.py
Normal file
0
apps/collection/management/commands/__init__.py
Normal file
164
apps/collection/management/commands/import_collection.py
Normal file
164
apps/collection/management/commands/import_collection.py
Normal file
|
|
@ -0,0 +1,164 @@
|
|||
from django.core.management.base import BaseCommand
|
||||
from establishment.models import Establishment
|
||||
from location.models import Country, Language
|
||||
from transfer.models import Collections
|
||||
from collection.models import Collection
|
||||
from news.models import News
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
help = 'Import collection'
|
||||
|
||||
def handle(self, *args, **kwargs):
|
||||
raw_qs = Collections.objects.raw('''
|
||||
select
|
||||
distinct
|
||||
a.id,
|
||||
a.collection_id,
|
||||
-- a.establishment_id,
|
||||
a.title,
|
||||
a.tag_name,
|
||||
a.slug,
|
||||
-- a.attachment_file_name,
|
||||
-- a.attachment_content_type,
|
||||
-- a.attachment_file_size,
|
||||
-- a.attachment_suffix_url,
|
||||
-- active as is_publish,
|
||||
a.country_code,
|
||||
-- a.geometries,
|
||||
a.description,
|
||||
min(a.start) AS start
|
||||
from
|
||||
(
|
||||
select distinct
|
||||
c.id,
|
||||
c.id as collection_id,
|
||||
m.establishment_id,
|
||||
c.title, c.tag_name,
|
||||
c.slug, c.attachment_file_name,
|
||||
c.attachment_content_type, c.attachment_file_size,
|
||||
c.attachment_suffix_url,
|
||||
active,
|
||||
s.country_code_2 as country_code,
|
||||
c.geometries,
|
||||
c.title as description,
|
||||
m.created_at as start
|
||||
from collections as c
|
||||
join metadata m on m.value = c.tag_name
|
||||
join establishments e on e.id = m.establishment_id
|
||||
join sites s on s.id = c.site_id
|
||||
where m.`key` = 'collection'
|
||||
|
||||
union
|
||||
|
||||
select distinct
|
||||
c.id,
|
||||
c.id as collection_id,
|
||||
m.establishment_id,
|
||||
c.title, c.tag_name,
|
||||
c.slug, c.attachment_file_name,
|
||||
c.attachment_content_type, c.attachment_file_size,
|
||||
c.attachment_suffix_url,
|
||||
active,
|
||||
s.country_code_2 as country_code,
|
||||
c.geometries,
|
||||
c.title as description,
|
||||
m.created_at as start
|
||||
from collections as c
|
||||
join metadata m on m.value = c.slug
|
||||
join establishments e on e.id = m.establishment_id
|
||||
join sites s on s.id = c.site_id
|
||||
where m.`key` = 'collection'
|
||||
) a
|
||||
group by
|
||||
a.id,
|
||||
a.collection_id,
|
||||
-- a.establishment_id,
|
||||
a.title,
|
||||
a.tag_name,
|
||||
a.slug,
|
||||
-- a.attachment_file_name,
|
||||
-- a.attachment_content_type,
|
||||
-- a.attachment_file_size,
|
||||
-- a.attachment_suffix_url,
|
||||
-- active as is_publish,
|
||||
a.country_code,
|
||||
a.description
|
||||
''')
|
||||
objects = []
|
||||
queryset = [vars(query) for query in raw_qs]
|
||||
for obj in queryset:
|
||||
# establishment = Establishment.objects.filter(old_id=obj['establishment_id']).first()
|
||||
lang = Language.objects.filter(locale=obj['country_code'])
|
||||
country = Country.objects.filter(languages__in=lang).first()
|
||||
if country:
|
||||
objects.append(
|
||||
Collection(name={"en-GB": obj['title']}, collection_type=Collection.ORDINARY,
|
||||
country=country,
|
||||
description=obj['description'],
|
||||
slug=obj['slug'], old_id=obj['collection_id'],
|
||||
start=obj['start']
|
||||
)
|
||||
)
|
||||
Collection.objects.bulk_create(objects)
|
||||
|
||||
raw_qs = Collections.objects.raw('''
|
||||
select
|
||||
distinct
|
||||
a.id,
|
||||
a.collection_id,
|
||||
a.establishment_id
|
||||
from
|
||||
(
|
||||
select distinct
|
||||
c.id,
|
||||
c.id as collection_id,
|
||||
m.establishment_id,
|
||||
c.title, c.tag_name,
|
||||
c.slug, c.attachment_file_name,
|
||||
c.attachment_content_type, c.attachment_file_size,
|
||||
c.attachment_suffix_url,
|
||||
active,
|
||||
s.country_code_2 as country_code,
|
||||
c.geometries,
|
||||
c.title as description,
|
||||
m.created_at as start
|
||||
from collections as c
|
||||
join metadata m on m.value = c.tag_name
|
||||
join establishments e on e.id = m.establishment_id
|
||||
join sites s on s.id = c.site_id
|
||||
where m.`key` = 'collection'
|
||||
|
||||
union
|
||||
|
||||
select distinct
|
||||
c.id,
|
||||
c.id as collection_id,
|
||||
m.establishment_id,
|
||||
c.title, c.tag_name,
|
||||
c.slug, c.attachment_file_name,
|
||||
c.attachment_content_type, c.attachment_file_size,
|
||||
c.attachment_suffix_url,
|
||||
active,
|
||||
s.country_code_2 as country_code,
|
||||
c.geometries,
|
||||
c.title as description,
|
||||
m.created_at as start
|
||||
from collections as c
|
||||
join metadata m on m.value = c.slug
|
||||
join establishments e on e.id = m.establishment_id
|
||||
join sites s on s.id = c.site_id
|
||||
where m.`key` = 'collection'
|
||||
) a
|
||||
''')
|
||||
|
||||
queryset = [vars(query) for query in raw_qs]
|
||||
for obj in queryset:
|
||||
print('COLLECT_ID: {}'.format(obj['collection_id']))
|
||||
est = Establishment.objects.filter(old_id=obj['establishment_id'])
|
||||
if est.exists():
|
||||
inst = est.first()
|
||||
collect = Collection.objects.filter(old_id=obj['collection_id'])
|
||||
for c in collect:
|
||||
inst.collections.add(c)
|
||||
inst.save()
|
||||
18
apps/collection/migrations/0017_collection_old_id.py
Normal file
18
apps/collection/migrations/0017_collection_old_id.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 2.2.4 on 2019-10-31 13:58
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('collection', '0016_auto_20191024_1334'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='collection',
|
||||
name='old_id',
|
||||
field=models.IntegerField(blank=True, null=True),
|
||||
),
|
||||
]
|
||||
|
|
@ -76,6 +76,7 @@ class Collection(ProjectBaseMixin, CollectionDateMixin,
|
|||
slug = models.SlugField(max_length=50, unique=True,
|
||||
verbose_name=_('Collection slug'), editable=True, null=True)
|
||||
|
||||
old_id=models.IntegerField(null=True, blank=True)
|
||||
objects = CollectionQuerySet.as_manager()
|
||||
|
||||
class Meta:
|
||||
|
|
|
|||
|
|
@ -27,22 +27,7 @@ card = {
|
|||
# "country": "Country",
|
||||
}
|
||||
},
|
||||
"Guide": {
|
||||
# как работать с ForeignKey на самого себя(self), поле "parent"
|
||||
"data_type": "objects",
|
||||
"dependencies": ("Collection", "self"),
|
||||
"fields": {
|
||||
"Guides": {
|
||||
# нету аналогов для полей start и end
|
||||
"name": "title"
|
||||
}
|
||||
},
|
||||
"relations": {
|
||||
# аналалог для поля "collection" не найдено
|
||||
# "parent": "Guide",
|
||||
# "collection": "Collection"
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
used_apps = ("location", )
|
||||
|
|
|
|||
|
|
@ -8,11 +8,13 @@ from pprint import pprint
|
|||
|
||||
|
||||
def transfer_countries():
|
||||
queryset = Cities.objects.raw("""SELECT cities.id, cities.country_code_2
|
||||
FROM cities WHERE
|
||||
country_code_2 IS NOT NULL AND
|
||||
queryset = Cities.objects.raw("""
|
||||
SELECT cities.id, cities.country_code_2
|
||||
FROM cities
|
||||
WHERE country_code_2 IS NOT NULL AND
|
||||
country_code_2 != ""
|
||||
GROUP BY cities.country_code_2""")
|
||||
GROUP BY cities.id, cities.country_code_2
|
||||
""")
|
||||
|
||||
queryset = [vars(query) for query in queryset]
|
||||
|
||||
|
|
@ -24,16 +26,24 @@ def transfer_countries():
|
|||
|
||||
|
||||
def transfer_regions():
|
||||
regions_without_subregion_queryset = Cities.objects.raw("""SELECT cities.id, cities.region_code,
|
||||
cities.country_code_2, cities.subregion_code
|
||||
FROM cities WHERE
|
||||
(subregion_code IS NULL OR
|
||||
subregion_code = "") AND
|
||||
region_code IS NOT NULL AND
|
||||
region_code != "" AND
|
||||
country_code_2 IS NOT NULL AND
|
||||
country_code_2 != ""
|
||||
GROUP BY region_code""")
|
||||
regions_without_subregion_queryset = Cities.objects.raw("""
|
||||
SELECT cities.id,
|
||||
cities.region_code,
|
||||
cities.country_code_2,
|
||||
cities.subregion_code
|
||||
FROM cities
|
||||
WHERE (subregion_code IS NULL
|
||||
OR subregion_code = ""
|
||||
)
|
||||
AND region_code IS NOT NULL
|
||||
AND region_code != ""
|
||||
AND country_code_2 IS NOT NULL
|
||||
AND country_code_2 != ""
|
||||
GROUP BY cities.id,
|
||||
cities.region_code,
|
||||
cities.country_code_2,
|
||||
cities.subregion_code
|
||||
""")
|
||||
|
||||
regions_without_subregion_queryset = [vars(query) for query in regions_without_subregion_queryset]
|
||||
|
||||
|
|
@ -43,16 +53,21 @@ def transfer_regions():
|
|||
else:
|
||||
pprint(f"Parent regions serializer errors: {serialized_without_subregion.errors}")
|
||||
|
||||
regions_with_subregion_queryset = Cities.objects.raw("""SELECT cities.id, cities.region_code,
|
||||
cities.country_code_2, cities.subregion_code
|
||||
FROM cities WHERE
|
||||
subregion_code IS NOT NULL AND
|
||||
regions_with_subregion_queryset = Cities.objects.raw("""
|
||||
SELECT
|
||||
cities.id,
|
||||
cities.region_code,
|
||||
cities.country_code_2,
|
||||
cities.subregion_code
|
||||
FROM cities
|
||||
WHERE subregion_code IS NOT NULL AND
|
||||
subregion_code != "" AND
|
||||
region_code IS NOT NULL AND
|
||||
region_code != "" AND
|
||||
country_code_2 IS NOT NULL AND
|
||||
country_code_2 != ""
|
||||
AND cities.subregion_code in (
|
||||
AND cities.subregion_code in
|
||||
(
|
||||
SELECT region_code FROM cities WHERE
|
||||
(subregion_code IS NULL OR
|
||||
subregion_code = "") AND
|
||||
|
|
@ -61,7 +76,11 @@ def transfer_regions():
|
|||
country_code_2 IS NOT NULL AND
|
||||
country_code_2 != ""
|
||||
)
|
||||
GROUP BY region_code""")
|
||||
GROUP BY cities.id,
|
||||
cities.region_code,
|
||||
cities.country_code_2,
|
||||
cities.subregion_code
|
||||
""")
|
||||
|
||||
regions_with_subregion_queryset = [vars(query) for query in regions_with_subregion_queryset]
|
||||
|
||||
|
|
|
|||
29
apps/product/migrations/0003_auto_20191030_1315.py
Normal file
29
apps/product/migrations/0003_auto_20191030_1315.py
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Generated by Django 2.2.4 on 2019-10-30 13:15
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0002_product_slug'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='product',
|
||||
name='old_id',
|
||||
field=models.IntegerField(blank=True, null=True, verbose_name='Product old id'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='product',
|
||||
name='old_id_establishment',
|
||||
field=models.IntegerField(blank=True, null=True, verbose_name='Establishment old id'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='product',
|
||||
name='establishment',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='products', to='establishment.Establishment', verbose_name='establishment'),
|
||||
),
|
||||
]
|
||||
33
apps/product/migrations/0004_auto_20191031_0923.py
Normal file
33
apps/product/migrations/0004_auto_20191031_0923.py
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# Generated by Django 2.2.4 on 2019-10-31 09:23
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0003_auto_20191030_1315'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='product',
|
||||
name='old_id_establishment',
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='product',
|
||||
name='establishment',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='products', to='establishment.Establishment', verbose_name='establishment'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='product',
|
||||
name='old_id',
|
||||
field=models.IntegerField(blank=True, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='productsubtype',
|
||||
name='index_name',
|
||||
field=models.CharField(choices=[('rum', 'Rum'), ('other', 'Other'), ('extra brut', 'extra brut'), ('brut', 'brut'), ('brut nature', 'brut nature'), ('demi-sec', 'demi-sec'), ('Extra Dry', 'Extra Dry'), ('dosage zero', 'dosage zero'), ('sec', 'sec'), ('doux', 'doux'), ('moelleux', 'moelleux')], db_index=True, max_length=50, unique=True, verbose_name='Index name'),
|
||||
),
|
||||
]
|
||||
19
apps/product/migrations/0005_auto_20191031_0929.py
Normal file
19
apps/product/migrations/0005_auto_20191031_0929.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 2.2.4 on 2019-10-31 09:29
|
||||
|
||||
import django.contrib.postgres.fields.jsonb
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0004_auto_20191031_0923'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='product',
|
||||
name='characteristics',
|
||||
field=django.contrib.postgres.fields.jsonb.JSONField(null=True, verbose_name='Characteristics'),
|
||||
),
|
||||
]
|
||||
19
apps/product/migrations/0006_auto_20191031_0930.py
Normal file
19
apps/product/migrations/0006_auto_20191031_0930.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 2.2.4 on 2019-10-31 09:30
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0005_auto_20191031_0929'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='product',
|
||||
name='establishment',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='products', to='establishment.Establishment', verbose_name='establishment'),
|
||||
),
|
||||
]
|
||||
29
apps/product/migrations/0007_auto_20191031_1408.py
Normal file
29
apps/product/migrations/0007_auto_20191031_1408.py
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
# Generated by Django 2.2.4 on 2019-10-31 14:08
|
||||
|
||||
import django.contrib.postgres.fields.jsonb
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0006_auto_20191031_0930'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='product',
|
||||
name='old_id',
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='product',
|
||||
name='characteristics',
|
||||
field=django.contrib.postgres.fields.jsonb.JSONField(verbose_name='Characteristics', null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='product',
|
||||
name='establishment',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, related_name='products', to='establishment.Establishment', verbose_name='establishment'),
|
||||
),
|
||||
]
|
||||
19
apps/product/migrations/0008_auto_20191031_1410.py
Normal file
19
apps/product/migrations/0008_auto_20191031_1410.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 2.2.4 on 2019-10-31 14:10
|
||||
|
||||
import django.contrib.postgres.fields.jsonb
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('product', '0007_auto_20191031_1408'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='product',
|
||||
name='characteristics',
|
||||
field=django.contrib.postgres.fields.jsonb.JSONField(null=True, verbose_name='Characteristics'),
|
||||
),
|
||||
]
|
||||
|
|
@ -138,7 +138,8 @@ class Product(TranslatedFieldsMixin, BaseAttributes):
|
|||
help_text='{"en-GB":"some text"}')
|
||||
description = TJSONField(_('Description'), null=True, blank=True,
|
||||
default=None, help_text='{"en-GB":"some text"}')
|
||||
characteristics = JSONField(_('Characteristics'))
|
||||
#TODO set null=False
|
||||
characteristics = JSONField(_('Characteristics'), null=True)
|
||||
country = models.ManyToManyField('location.Country',
|
||||
verbose_name=_('Country'))
|
||||
available = models.BooleanField(_('Available'), default=True)
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ class RegionSerializer(serializers.ModelSerializer):
|
|||
print(data)
|
||||
if "subregion_code" in data and data["subregion_code"] is not None and data["subregion_code"].strip() != "":
|
||||
try:
|
||||
parent_region = Region.objects.get(code=str(data['region_code']))
|
||||
parent_region = Region.objects.filter(code=str(data['region_code'])).first()
|
||||
except Exception as e:
|
||||
raise ValueError(f"Parent region error with {data}: {e}")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user