Browse Source

Allow to delete a member without deleting its services invoices

Invoices must be kept for six years…

Ref #30 Ref #137
Jocelyn Delalande 6 years ago
parent
commit
a48681d6cc
2 changed files with 21 additions and 0 deletions
  1. 20 0
      coin/billing/migrations/0011_auto_20180819_0221.py
  2. 1 0
      coin/billing/models.py

+ 20 - 0
coin/billing/migrations/0011_auto_20180819_0221.py

@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('billing', '0010_new_billing_system_data'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='invoicedetail',
+            name='offersubscription',
+            field=models.ForeignKey(on_delete=django.db.models.deletion.SET_NULL, default=None, blank=True, to='offers.OfferSubscription', null=True, verbose_name='abonnement'),
+        ),
+    ]

+ 1 - 0
coin/billing/models.py

@@ -326,6 +326,7 @@ class InvoiceDetail(models.Model):
                                 related_name='details')
                                 related_name='details')
     offersubscription = models.ForeignKey(OfferSubscription, null=True,
     offersubscription = models.ForeignKey(OfferSubscription, null=True,
                                           blank=True, default=None,
                                           blank=True, default=None,
+                                          on_delete=models.SET_NULL,
                                           verbose_name='abonnement')
                                           verbose_name='abonnement')
     period_from = models.DateField(
     period_from = models.DateField(
         default=start_of_month,
         default=start_of_month,