diff --git a/InvenTree/stock/models.py b/InvenTree/stock/models.py index e4b8f3bcfa..40d95a5676 100644 --- a/InvenTree/stock/models.py +++ b/InvenTree/stock/models.py @@ -18,6 +18,11 @@ class StockItem(models.Model): quantity = models.PositiveIntegerField() updated = models.DateField(auto_now=True) + # last time the stock was checked / counted + last_checked = models.DateField(blank=True, null=True) + + review_needed = models.BooleanField(default=False) + # Stock status types ITEM_IN_STOCK = 10 ITEM_INCOMING = 15