2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-12-15 08:48:11 +00:00

remove old fields from the StockItemTracking model

This commit is contained in:
Oliver Walters
2021-05-12 08:07:03 +10:00
parent 03a231bffb
commit 68b53acbf1
4 changed files with 34 additions and 26 deletions

View File

@@ -437,14 +437,15 @@ class EditStockItemForm(HelperForm):
class TrackingEntryForm(HelperForm):
""" Form for creating / editing a StockItemTracking object.
"""
Form for creating / editing a StockItemTracking object.
Note: 2021-05-11 - This form is not currently used - should delete?
"""
class Meta:
model = StockItemTracking
fields = [
'title',
'notes',
'link',
]