2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-10 23:14:13 +00:00

Changes 'notes' fields to be textfield - not charfield

This commit is contained in:
Oliver
2018-04-18 01:16:30 +10:00
parent cd903112cc
commit d8d3509b5e
10 changed files with 161 additions and 4 deletions

View File

@ -131,7 +131,7 @@ class StockItem(models.Model):
choices=ITEM_STATUS_CODES.items(),
validators=[MinValueValidator(0)])
notes = models.CharField(max_length=100, blank=True)
notes = models.TextField(blank=True)
# If stock item is incoming, an (optional) ETA field
# expected_arrival = models.DateField(null=True, blank=True)