|
@@ -15,21 +15,10 @@ class Offer(models.Model):
|
|
|
The choices list is dynamically generated at start in the __init__
|
|
|
"""
|
|
|
|
|
|
- def __init__(self, *args, **kwargs):
|
|
|
- from coin.configuration.models import Configuration
|
|
|
- super(Offer, self).__init__(*args, **kwargs)
|
|
|
- """
|
|
|
- Génère automatiquement la liste de choix possibles de types
|
|
|
- de configurations en fonction des classes enfants de Configuration
|
|
|
- """
|
|
|
- self._meta.get_field_by_name('configuration_type')[0]._choices = (
|
|
|
- Configuration.get_configurations_choices_list())
|
|
|
-
|
|
|
name = models.CharField(max_length=255, blank=False, null=False,
|
|
|
verbose_name="nom de l'offre")
|
|
|
configuration_type = models.CharField(max_length=50,
|
|
|
- null=True,
|
|
|
- choices = (('',''),),
|
|
|
+ blank=True,
|
|
|
verbose_name='type de configuration',
|
|
|
help_text="Type de configuration à utiliser avec cette offre")
|
|
|
billing_period = models.IntegerField(blank=False, null=False, default=1,
|
|
@@ -49,17 +38,18 @@ class Offer(models.Model):
|
|
|
"""
|
|
|
Renvoi le nom affichable du type de configuration
|
|
|
"""
|
|
|
+ from coin.configuration.models import Configuration
|
|
|
for item in Configuration.get_configurations_choices_list():
|
|
|
if item and self.configuration_type in item:
|
|
|
return item[1]
|
|
|
return self.configuration_type
|
|
|
+ get_configuration_type_display.short_description = 'type de configuration'
|
|
|
|
|
|
def __unicode__(self):
|
|
|
- return '%s : %s - %d€ / %im' % (
|
|
|
- self.get_configuration_type_display(),
|
|
|
- self.name,
|
|
|
- self.period_fees,
|
|
|
- self.billing_period)
|
|
|
+ return '{name} - {period_fee}€ / {billing_period}m'.format(
|
|
|
+ name=self.name,
|
|
|
+ period_fee=self.period_fees,
|
|
|
+ billing_period=self.billing_period)
|
|
|
|
|
|
class Meta:
|
|
|
verbose_name = 'offre'
|