clarify that expense amount can be negative

This commit is contained in:
Thomas Steen Rasmussen 2018-09-01 09:56:22 +02:00
parent 4c124a978d
commit 4123c2eb91

View file

@ -27,7 +27,7 @@ class Expense(CampRelatedModel, UUIDModel):
amount = models.DecimalField( amount = models.DecimalField(
decimal_places=2, decimal_places=2,
max_digits=12, max_digits=12,
help_text='The amount of this expense in DKK. Must match the amount on the invoice uploaded below.', help_text='The amount of this expense in DKK. Must match the amount on the invoice uploaded below. The amount can be negative in some cases (like when returning bottle deposit).',
) )
description = models.CharField( description = models.CharField(