Logic fix for editing stock item creation form

This commit is contained in:
Oliver Walters 2020-11-04 08:29:09 +11:00
parent 1e844c642f
commit 56b287b2c8

View File

@ -1505,8 +1505,10 @@ class StockItemCreate(AjaxCreateView):
# form.fields['part'].widget = HiddenInput() # form.fields['part'].widget = HiddenInput()
# Trackable parts get special consideration: # Trackable parts get special consideration:
form.fields['delete_on_deplete'].disabled = not part.trackable if part.trackable:
form.fields['serial_numbers'].disabled = not part.trackable form.fields['delete_on_deplete'].disabled = True
else:
form.fields['serial_numbers'].disabled = True
# If the part is NOT purchaseable, hide the supplier_part field # If the part is NOT purchaseable, hide the supplier_part field
if not part.purchaseable: if not part.purchaseable: