core -- Apply black + isort to all files

This commit is contained in:
Aurélien Delobelle 2018-10-06 12:35:49 +02:00
parent 104e71dcf6
commit fdd2b35289
196 changed files with 10727 additions and 8365 deletions

View file

@ -7,32 +7,36 @@ from django.db import migrations, models
def adapt_operation_types(apps, schema_editor):
Operation = apps.get_model("kfet", "Operation")
Operation.objects.filter(
is_checkout=False,
type__in=['withdraw', 'deposit']).update(type='edit')
is_checkout=False, type__in=["withdraw", "deposit"]
).update(type="edit")
def revert_operation_types(apps, schema_editor):
Operation = apps.get_model("kfet", "Operation")
edits = Operation.objects.filter(type='edit')
edits.filter(amount__gt=0).update(type='deposit')
edits.filter(amount__lte=0).update(type='withdraw')
edits = Operation.objects.filter(type="edit")
edits.filter(amount__gt=0).update(type="deposit")
edits.filter(amount__lte=0).update(type="withdraw")
class Migration(migrations.Migration):
dependencies = [
('kfet', '0049_merge'),
]
dependencies = [("kfet", "0049_merge")]
operations = [
migrations.AlterField(
model_name='operation',
name='type',
field=models.CharField(choices=[('purchase', 'Achat'), ('deposit', 'Charge'), ('withdraw', 'Retrait'), ('initial', 'Initial'), ('edit', 'Édition')], max_length=8),
model_name="operation",
name="type",
field=models.CharField(
choices=[
("purchase", "Achat"),
("deposit", "Charge"),
("withdraw", "Retrait"),
("initial", "Initial"),
("edit", "Édition"),
],
max_length=8,
),
),
migrations.RunPython(adapt_operation_types, revert_operation_types),
migrations.RemoveField(
model_name='operation',
name='is_checkout',
),
migrations.RemoveField(model_name="operation", name="is_checkout"),
]