8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-02 12:14:05 +00:00

Merge branch 'fix_inital_migration' into 'dev'

Fix initial migration

See merge request federez/re2o!295
This commit is contained in:
chirac 2018-09-20 14:32:28 +02:00
commit eb712c7c6f

View file

@ -30,7 +30,9 @@ def update_rights(apps, schema_editor):
create_permissions(app)
app.models_module = False
former = Permission.objects.get(codename='change_facture_pdf')
ContentType = apps.get_model("contenttypes", "ContentType")
content_type = ContentType.objects.get_for_model(Permission)
former, created = Permission.objects.get_or_create(codename='change_facture_pdf', content_type=content_type)
new_1 = Permission.objects.get(codename='add_custominvoice')
new_2 = Permission.objects.get(codename='change_custominvoice')
new_3 = Permission.objects.get(codename='view_custominvoice')