Browse Source

Fix de la migration des données.

fix_front_profil
Hugo LEVY-FALK 8 years ago
parent
commit
c05f8f826c
  1. 5
      cotisations/migrations/0032_chequepayment_comnpaypayment.py
  2. 3
      cotisations/views.py

5
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),
]

3
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)

Loading…
Cancel
Save