Browse Source

Display subsciption reference in user profile.

opi 8 years ago
parent
commit
2d3bb489b8

+ 3 - 0
coin/members/templates/members/subscriptions.html

@@ -8,6 +8,7 @@
         <tr>
             <th width="60">Type</th>
             <th>Offre</th>
+            <th>Référence</th>
             <th>Date de souscription</th>
             <th>Date de résiliation</th>
             <th>Commentaire</th>
@@ -19,6 +20,7 @@
         <tr>
             <td>{{ subscription.offer.get_configuration_type_display }}</td>
             <td>{{ subscription.offer.name }}</td>
+            <td class="nowrap">{{ subscription.display_subsciption_reference }}</td>
             <td>{{ subscription.subscription_date }}</td>
             <td>{{ subscription.resign_date|default_if_none:"" }}</td>
             <td>{{ subscription.configuration.comment }}</td>
@@ -30,6 +32,7 @@
         <tr class="inactive">
             <td>{{ subscription.offer.get_configuration_type_display }}</td>
             <td>{{ subscription.offer.name }}</td>
+            <td class="nowrap">{{ subscription.display_subsciption_reference }}</td>
             <td>{{ subscription.subscription_date }}</td>
             <td>{{ subscription.resign_date|default_if_none:"" }}</td>
             <td>{{ subscription.configuration.comment }}</td>

+ 4 - 0
coin/offers/models.py

@@ -3,6 +3,7 @@ from __future__ import unicode_literals
 
 import datetime
 
+from django.conf import settings
 from django.db import models
 from django.db.models import Q
 from django.core.validators import MinValueValidator
@@ -106,6 +107,9 @@ class OfferSubscription(models.Model):
     member = models.ForeignKey('members.Member', verbose_name='membre')
     offer = models.ForeignKey('Offer', verbose_name='offre')
 
+    def display_subsciption_reference(self):
+        return settings.SUBSCRIPTION_REFERENCE.format(subsciption=self)
+
     def __unicode__(self):
         return '%s - %s - %s' % (self.member, self.offer.name,
                                        self.subscription_date)

+ 4 - 0
coin/settings.py

@@ -237,6 +237,10 @@ MEMBER_DEFAULT_COTISATION = 20
 # membership fee
 MEMBER_MEMBERSHIP_INFO_URL = ''
 
+# Pattern used to display a unique reference for any subsciption
+# Helpful for bank wire transfer identification
+SUBSCRIPTION_REFERENCE = 'SUB-{subsciption.offer.reference}-{subsciption.pk}'
+
 # Reset session if cookie older than 2h.
 SESSION_COOKIE_AGE = 7200
 

+ 6 - 0
coin/static/css/local.css

@@ -389,3 +389,9 @@ tr.inactive {
 .message.success:before {
     content: "✔ ";
 }
+
+.nowrap {
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+}