diff --git a/cotisations/migrations/0031_comnpaypayment_production.py b/cotisations/migrations/0031_comnpaypayment_production.py new file mode 100644 index 00000000..25ec7fb8 --- /dev/null +++ b/cotisations/migrations/0031_comnpaypayment_production.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2018-08-11 23:03 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('cotisations', '0030_custom_payment'), + ] + + operations = [ + migrations.AddField( + model_name='comnpaypayment', + name='production', + field=models.BooleanField(default=True, verbose_name='Production mode enabled (production url, instead of homologation)'), + ), + ] diff --git a/cotisations/payment_methods/comnpay/models.py b/cotisations/payment_methods/comnpay/models.py index ff6fed0d..dbc2f4ba 100644 --- a/cotisations/payment_methods/comnpay/models.py +++ b/cotisations/payment_methods/comnpay/models.py @@ -65,6 +65,16 @@ class ComnpayPayment(PaymentMethodMixin, models.Model): decimal_places=2, default=1, ) + production = models.BooleanField( + default=True, + verbose_name=_l("Production mode enabled (production url, instead of homologation)"), + ) + + def return_url_comnpay(self): + if self.production: + return 'https://secure.comnpay.com' + else: + return 'https://secure.homologation.comnpay.com' def end_payment(self, invoice, request): """ @@ -87,8 +97,9 @@ class ComnpayPayment(PaymentMethodMixin, models.Model): "", "D" ) + r = { - 'action': 'https://secure.homologation.comnpay.com', + 'action': self.return_url_comnpay(), 'method': 'POST', 'content': p.buildSecretHTML( _("Pay invoice no : ")+str(invoice.id), diff --git a/users/migrations/0075_merge_20180815_2202.py b/users/migrations/0075_merge_20180815_2202.py new file mode 100644 index 00000000..c24ebf4e --- /dev/null +++ b/users/migrations/0075_merge_20180815_2202.py @@ -0,0 +1,16 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2018-08-15 20:02 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('users', '0074_auto_20180814_1059'), + ('users', '0074_auto_20180810_2104'), + ] + + operations = [ + ]