Early returns if no change is made in the Asset so the 'update' action doesn't log

This commit is contained in:
Ivan Nieto Vivanco 2022-06-06 22:00:05 -05:00
parent ab8dcdcc40
commit 1030ad9a27

View file

@ -26,7 +26,7 @@ class AssetObserver
&& ($attributes['checkout_counter'] == $attributesOriginal['checkout_counter'])
&& ($attributes['checkin_counter'] == $attributesOriginal['checkin_counter'])
&& ((isset( $attributes['next_audit_date']) ? $attributes['next_audit_date'] : null) == (isset($attributesOriginal['next_audit_date']) ? $attributesOriginal['next_audit_date']: null))
&& ($attributes['last_checkout'] == $attributesOriginal['last_checkout']))
&& ($attributes['last_checkout'] == $attributesOriginal['last_checkout']))
{
$changed = [];
@ -35,7 +35,11 @@ class AssetObserver
$changed[$key]['old'] = $asset->getRawOriginal()[$key];
$changed[$key]['new'] = $asset->getAttributes()[$key];
}
}
}
if (empty($changed)){
return;
}
$logAction = new Actionlog();
$logAction->item_type = Asset::class;