mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Add 'purchaseable' field to part export
This commit is contained in:
parent
a2705bbe73
commit
8723a6c219
@ -1187,6 +1187,7 @@ class PartExport(AjaxView):
|
||||
'Component',
|
||||
'Template',
|
||||
'Trackable',
|
||||
'Purchaseable',
|
||||
'Salable',
|
||||
'Active',
|
||||
'Virtual',
|
||||
@ -1233,6 +1234,7 @@ class PartExport(AjaxView):
|
||||
line.append(part.component)
|
||||
line.append(part.is_template)
|
||||
line.append(part.trackable)
|
||||
line.append(part.purchaseable)
|
||||
line.append(part.salable)
|
||||
line.append(part.active)
|
||||
line.append(part.virtual)
|
||||
|
Loading…
Reference in New Issue
Block a user