Add 'purchaseable' field to part export

This commit is contained in:
Oliver Walters 2019-09-09 19:10:57 +10:00
parent a2705bbe73
commit 8723a6c219

View File

@ -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)