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

Moved tracking information to StockItem

This commit is contained in:
Oliver
2018-04-16 20:08:04 +10:00
parent f7eff8ae98
commit 76ee150ca4
31 changed files with 167 additions and 640 deletions

View File

@ -111,7 +111,8 @@ class Part(models.Model):
units = models.CharField(max_length=20, default="pcs", blank=True)
# Is this part "trackable"?
# Trackable parts can have unique instances which are assigned serial numbers
# Trackable parts can have unique instances
# which are assigned serial numbers (or batch numbers)
# and can have their movements tracked
trackable = models.BooleanField(default=False)

View File

@ -9,7 +9,6 @@
<li><a href="/part/">Parts</a></li>
<li><a href="/stock/">Stock</a></li>
<li><a href="/supplier/">Suppliers</a></li>
<li><a href="/track/">Tracking</a></li>
</ul>
</div>
</nav>