8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-13 14:08:13 +00:00

Fix de la migration des données.

This commit is contained in:
Hugo LEVY-FALK 2018-07-11 15:15:58 +02:00
parent ee86595509
commit c05f8f826c
2 changed files with 4 additions and 4 deletions

View file

@ -27,7 +27,6 @@ def add_comnpay(apps, schema_editor):
)
comnpay = ComnpayPayment()
comnpay.payment_user = options.payment_id
comnpay.payment_pass = options.payment_pass
comnpay.payment = payment
comnpay.save()
payment.moyen = "ComnPay"
@ -61,6 +60,6 @@ class Migration(migrations.Migration):
],
bases=(cotisations.payment_methods.mixins.PaymentMethodMixin, models.Model),
),
# migrations.RunPython(add_comnpay),
# migrations.RunPython(add_cheque),
migrations.RunPython(add_comnpay),
migrations.RunPython(add_cheque),
]

View file

@ -421,7 +421,8 @@ def add_paiement(request):
return form({
'factureform': payment,
'payment_method': payment_method,
'action_name': _("Add")
'action_name': _("Add"),
'title': _("New payment method")
}, 'cotisations/facture.html', request)