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

Edit / delete / add BOM items

- Remove x-editable inline editing
- Uses only bootstrap-table and modal forms
- Hide the 'part' field in the bom item edit
This commit is contained in:
Oliver Walters
2019-04-16 01:41:01 +10:00
parent 6e2b111b9c
commit bad46f85f4
5 changed files with 4147 additions and 63 deletions

View File

@@ -78,8 +78,10 @@ class EditBomItemForm(HelperForm):
fields = [
'part',
'sub_part',
'quantity'
'quantity',
'note'
]
widgets = {'part': forms.HiddenInput()}
class EditSupplierPartForm(HelperForm):