diff --git a/assets/forms.py b/assets/forms.py
index 7912c81f..0304e6a0 100644
--- a/assets/forms.py
+++ b/assets/forms.py
@@ -21,11 +21,11 @@ class AssetForm(forms.ModelForm):
self.fields['date_acquired'].widget.format = '%Y-%m-%d'
-# Needed to prevent assets losing parent data on audit
class AssetAuditForm(AssetForm):
class Meta(AssetForm.Meta):
- # TODO Inherit exlcusions from superclass
- exclude = ['asset_id_prefix', 'asset_id_number', 'last_audited_at', 'last_audited_by', 'parent']
+ # Prevents assets losing existing data that isn't included in the audit form
+ exclude = ['asset_id_prefix', 'asset_id_number', 'last_audited_at', 'last_audited_by',
+ 'parent', 'purchased_from', 'purchase_price', 'comments']
class AssetSearchForm(forms.Form):
diff --git a/assets/templates/asset_audit.html b/assets/templates/asset_audit.html
index caaee4d7..2ed26c88 100644
--- a/assets/templates/asset_audit.html
+++ b/assets/templates/asset_audit.html
@@ -69,7 +69,12 @@