diff --git a/cotisations/migrations/0032_chequepayment_comnpaypayment.py b/cotisations/migrations/0032_chequepayment_comnpaypayment.py index 81fada42..2277efb4 100644 --- a/cotisations/migrations/0032_chequepayment_comnpaypayment.py +++ b/cotisations/migrations/0032_chequepayment_comnpaypayment.py @@ -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), ] diff --git a/cotisations/views.py b/cotisations/views.py index 13c8b461..40e10e36 100644 --- a/cotisations/views.py +++ b/cotisations/views.py @@ -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)