2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-03 20:20:58 +00:00

Add default value for currency

This commit is contained in:
Oliver Walters
2019-09-03 09:10:36 +10:00
parent 7824b8561d
commit 32d09d2d37
2 changed files with 20 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class Currency(models.Model):
description = models.CharField(max_length=100, blank=False, help_text=_('Currency Description'))
value = models.DecimalField(max_digits=10, decimal_places=5, validators=[MinValueValidator(0.00001), MaxValueValidator(100000)], help_text=_('Currency Value'))
value = models.DecimalField(default=1.0, max_digits=10, decimal_places=5, validators=[MinValueValidator(0.00001), MaxValueValidator(100000)], help_text=_('Currency Value'))
base = models.BooleanField(default=False, help_text=_('Use this currency as the base currency'))