2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-15 03:25:42 +00:00

Remove lead-time field

This commit is contained in:
Oliver Walters
2019-09-12 22:37:09 +10:00
parent 62c9e85add
commit 91453094aa
3 changed files with 20 additions and 2 deletions

View File

@ -250,7 +250,8 @@ class SupplierPart(models.Model):
multiple = models.PositiveIntegerField(default=1, validators=[MinValueValidator(1)], help_text='Order multiple')
lead_time = models.DurationField(blank=True, null=True)
# TODO - Reimplement lead-time as a charfield with special validation (pattern matching).
# lead_time = models.DurationField(blank=True, null=True)
@property
def manufacturer_string(self):