Cached model name (collections)

This commit is contained in:
Matthew Dillon 2016-02-02 12:11:23 -07:00
parent 432af284c2
commit e361ba26e2
2 changed files with 29 additions and 3 deletions

View file

@ -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,
),
]

View file

@ -73,11 +73,17 @@ class Collection(models.Model):
reagent = models.ForeignKey('processing.Reagent', blank=True, null=True) reagent = models.ForeignKey('processing.Reagent', blank=True, null=True)
adfg_permit = models.ForeignKey(ADFGPermit, blank=True, null=True) adfg_permit = models.ForeignKey(ADFGPermit, blank=True, null=True)
flaw = models.ForeignKey(Flaw, 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): def __str__(self):
return "{} {} {} {} {} {}".format(self.project, self.study_location, return self.display_name
self.collection_start_date, self.collection_end_date,
self.collection_type, self.collection_method)
class Meta: class Meta:
unique_together = ('project', 'study_location', 'collection_type', unique_together = ('project', 'study_location', 'collection_type',