mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Merge pull request #284 from SchrodingersGat/hide-fields
Hide some fields from forms
This commit is contained in:
commit
41d237c0e4
@ -32,13 +32,10 @@ class CreateStockItemForm(HelperForm):
|
|||||||
'part',
|
'part',
|
||||||
'supplier_part',
|
'supplier_part',
|
||||||
'location',
|
'location',
|
||||||
'belongs_to',
|
|
||||||
'serial',
|
|
||||||
'batch',
|
'batch',
|
||||||
'quantity',
|
'quantity',
|
||||||
'status',
|
'status',
|
||||||
'notes',
|
'notes',
|
||||||
# 'customer',
|
|
||||||
'URL',
|
'URL',
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -67,7 +64,13 @@ class StocktakeForm(forms.ModelForm):
|
|||||||
|
|
||||||
|
|
||||||
class EditStockItemForm(HelperForm):
|
class EditStockItemForm(HelperForm):
|
||||||
""" Form for editing a StockItem object """
|
""" Form for editing a StockItem object.
|
||||||
|
Note that not all fields can be edited here (even if they can be specified during creation.
|
||||||
|
|
||||||
|
location - Must be updated in a 'move' transaction
|
||||||
|
quantity - Must be updated in a 'stocktake' transaction
|
||||||
|
part - Cannot be edited after creation
|
||||||
|
"""
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = StockItem
|
model = StockItem
|
||||||
|
Loading…
Reference in New Issue
Block a user