mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-24 04:03:34 -08:00
Early returns if no change is made in the Asset so the 'update' action doesn't log
This commit is contained in:
parent
ab8dcdcc40
commit
1030ad9a27
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue