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

Item stocktake form

This commit is contained in:
Oliver
2018-04-30 21:03:25 +10:00
parent feff4f0ddd
commit f9138f4997
5 changed files with 52 additions and 0 deletions

View File

@@ -46,6 +46,16 @@ class MoveStockItemForm(forms.ModelForm):
]
class StocktakeForm(forms.ModelForm):
class Meta:
model = StockItem
fields = [
'quantity',
]
class EditStockItemForm(HelperForm):
class Meta: