mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
50 lines
1.9 KiB
Python
50 lines
1.9 KiB
Python
|
# Generated by Django 2.2.18 on 2021-02-08 17:27
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('cotisations', '0003_auto_20210124_1105'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='article',
|
||
|
options={'permissions': (('buy_every_article', 'Can buy every article'),), 'verbose_name': 'article', 'verbose_name_plural': 'articles'},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='banque',
|
||
|
options={'verbose_name': 'bank', 'verbose_name_plural': 'banks'},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='baseinvoice',
|
||
|
options={},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='costestimate',
|
||
|
options={},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='cotisation',
|
||
|
options={'permissions': (('change_all_cotisation', 'Can edit the previous subscriptions'),), 'verbose_name': 'subscription', 'verbose_name_plural': 'subscriptions'},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='custominvoice',
|
||
|
options={},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='facture',
|
||
|
options={'permissions': (('change_facture_control', 'Can edit the "controlled" state'), ('change_all_facture', 'Can edit all the previous invoices')), 'verbose_name': 'invoice', 'verbose_name_plural': 'invoices'},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='paiement',
|
||
|
options={'permissions': (('use_every_payment', 'Can use every payment method'),), 'verbose_name': 'payment method', 'verbose_name_plural': 'payment methods'},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='vente',
|
||
|
options={'permissions': (('change_all_vente', 'Can edit all the previous purchases'),), 'verbose_name': 'purchase', 'verbose_name_plural': 'purchases'},
|
||
|
),
|
||
|
]
|