2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 13:35:40 +00:00

Fixed part image upload

- Image was being saved twice
- Don't call super().post in AjaxUpdateView
- Instead, handle properly
This commit is contained in:
Oliver Walters
2019-05-04 00:37:08 +10:00
parent b6d6b648ef
commit 4af59f0ca9
2 changed files with 6 additions and 7 deletions

View File

@ -115,10 +115,10 @@ class Part(models.Model):
return reverse('part-detail', kwargs={'pk': self.id})
# Short name of the part
name = models.CharField(max_length=100, unique=True, help_text='Part name (must be unique)')
name = models.CharField(max_length=100, unique=True, blank=False, help_text='Part name (must be unique)')
# Longer description of the part (optional)
description = models.CharField(max_length=250, help_text='Part description')
description = models.CharField(max_length=250, blank=False, help_text='Part description')
# Internal Part Number (optional)
# Potentially multiple parts map to the same internal IPN (variants?)