2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 04:25:42 +00:00

Cleanup old forms

This commit is contained in:
Oliver
2021-07-01 14:25:14 +10:00
parent 54731746d8
commit 59b794f0e5
3 changed files with 4 additions and 54 deletions

View File

@ -15,7 +15,7 @@ from InvenTree.fields import DatePickerFormField
from InvenTree.status_codes import StockStatus
from .models import Build, BuildItem, BuildOrderAttachment
from .models import Build, BuildItem
from stock.models import StockLocation, StockItem
@ -275,17 +275,3 @@ class EditBuildItemForm(HelperForm):
'quantity',
'install_into',
]
class EditBuildAttachmentForm(HelperForm):
"""
Form for creating / editing a BuildAttachment object
"""
class Meta:
model = BuildOrderAttachment
fields = [
'build',
'attachment',
'comment'
]