2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 04:55:44 +00:00

setup not realy needed

This commit is contained in:
2021-05-18 11:18:13 +02:00
parent 616dd76f8a
commit dd56bc1fa5
2 changed files with 31 additions and 38 deletions

View File

@ -609,23 +609,20 @@ class PurchaseOrderUpload(FileManagementFormView):
)
class MyFileManager(FileManager):
def setup(self):
self.REQUIRED_HEADERS = [
'Quantity',
]
REQUIRED_HEADERS = [
'Quantity',
]
self.ITEM_MATCH_HEADERS = [
'Manufacturer_MPN',
'Supplier_SKU',
]
ITEM_MATCH_HEADERS = [
'Manufacturer_MPN',
'Supplier_SKU',
]
self.OPTIONAL_HEADERS = [
'Purchase_Price',
'Reference',
'Notes',
]
return super().setup()
OPTIONAL_HEADERS = [
'Purchase_Price',
'Reference',
'Notes',
]
name = 'order'
form_list_override = [