diff --git a/InvenTree/part/forms.py b/InvenTree/part/forms.py index 38280bbc1c..286f8ac451 100644 --- a/InvenTree/part/forms.py +++ b/InvenTree/part/forms.py @@ -51,18 +51,6 @@ class BomUploadSelectFile(HelperForm): ] -class BomUploadSelectFields(HelperForm): - """ Form for selecting BOM fields """ - - starting_row = forms.IntegerField(required=True, initial=2, help_text='Index of starting row', validators=[MinValueValidator(1)]) - - class Meta: - model = Part - fields = [ - 'starting_row', - ] - - class EditPartAttachmentForm(HelperForm): """ Form for editing a PartAttachment object """ diff --git a/InvenTree/part/templates/part/bom_upload/select_fields.html b/InvenTree/part/templates/part/bom_upload/select_fields.html index 026ffb1a40..21849f31f8 100644 --- a/InvenTree/part/templates/part/bom_upload/select_fields.html +++ b/InvenTree/part/templates/part/bom_upload/select_fields.html @@ -24,9 +24,6 @@