summaryrefslogtreecommitdiff
path: root/archaeological_finds/models_treatments.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/models_treatments.py')
-rw-r--r--archaeological_finds/models_treatments.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/archaeological_finds/models_treatments.py b/archaeological_finds/models_treatments.py
index e5f338a48..5054d0da1 100644
--- a/archaeological_finds/models_treatments.py
+++ b/archaeological_finds/models_treatments.py
@@ -126,6 +126,14 @@ class Treatment(BaseHistorizedItem, ImageModel, OwnPerms, ShortMenuItem):
end_date = models.DateField(_(u"Closing date"), blank=True, null=True)
container = models.ForeignKey(Container, verbose_name=_(u"Container"),
blank=True, null=True)
+ estimated_cost = models.FloatField(_(u"Estimated cost"),
+ blank=True, null=True)
+ quoted_cost = models.FloatField(_(u"Quoted cost"),
+ blank=True, null=True)
+ realized_cost = models.FloatField(_(u"Realized cost"),
+ blank=True, null=True)
+ insurance_cost = models.FloatField(_(u"Insurance cost"),
+ blank=True, null=True)
target_is_basket = models.BooleanField(_(u"Target a basket"),
default=False)
cached_label = models.TextField(_(u"Cached name"), null=True, blank=True)