diff options
Diffstat (limited to 'archaeological_operations/models.py')
| -rw-r--r-- | archaeological_operations/models.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 3ea2b15a2..b82854f20 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -192,12 +192,12 @@ class Operation(BaseHistorizedItem, OwnPerms, ValueGetter, ShortMenuItem,      report_processing = models.ForeignKey(          ReportState, verbose_name=_(u"Report processing"),          blank=True, null=True) +    old_code = models.CharField(_(u"Old code"), max_length=200, null=True, +                                blank=True)      if settings.COUNTRY == 'fr':          code_patriarche = models.IntegerField(u"Code PATRIARCHE", null=True,                                                blank=True, unique=True)          TABLE_COLS = ['full_code_patriarche'] + TABLE_COLS -        code_dracar = models.CharField(u"Code DRACAR", max_length=200, -                                       null=True, blank=True)          # preventive          fnap_financing = models.FloatField(u"Financement FNAP (%)",                                             blank=True, null=True) | 
