diff --git a/ccdb/collections_ccdb/migrations/0002_collection_display_name.py b/ccdb/collections_ccdb/migrations/0002_collection_display_name.py new file mode 100644 index 0000000..92a1768 --- /dev/null +++ b/ccdb/collections_ccdb/migrations/0002_collection_display_name.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('collections_ccdb', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='collection', + name='display_name', + field=models.CharField(max_length=255, editable=False, default='x'), + preserve_default=False, + ), + ] diff --git a/ccdb/collections_ccdb/models.py b/ccdb/collections_ccdb/models.py index 63e810d..6e92c6e 100644 --- a/ccdb/collections_ccdb/models.py +++ b/ccdb/collections_ccdb/models.py @@ -73,11 +73,17 @@ class Collection(models.Model): reagent = models.ForeignKey('processing.Reagent', blank=True, null=True) adfg_permit = models.ForeignKey(ADFGPermit, blank=True, null=True) flaw = models.ForeignKey(Flaw, blank=True, null=True) + display_name = models.CharField(max_length=255, editable=False) + + def save(self, *args, **kwargs): + self.display_name = "{} {} {} {} {} {}".format(self.project, + self.study_location, self.collection_start_date, + self.collection_end_date, self.collection_type, + self.collection_method) + super(Collection, self).save(*args, **kwargs) def __str__(self): - return "{} {} {} {} {} {}".format(self.project, self.study_location, - self.collection_start_date, self.collection_end_date, - self.collection_type, self.collection_method) + return self.display_name class Meta: unique_together = ('project', 'study_location', 'collection_type',