mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -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['checkout_counter'] == $attributesOriginal['checkout_counter'])
|
||||||
&& ($attributes['checkin_counter'] == $attributesOriginal['checkin_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))
|
&& ((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 = [];
|
$changed = [];
|
||||||
|
|
||||||
|
@ -35,7 +35,11 @@ class AssetObserver
|
||||||
$changed[$key]['old'] = $asset->getRawOriginal()[$key];
|
$changed[$key]['old'] = $asset->getRawOriginal()[$key];
|
||||||
$changed[$key]['new'] = $asset->getAttributes()[$key];
|
$changed[$key]['new'] = $asset->getAttributes()[$key];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empty($changed)){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$logAction = new Actionlog();
|
$logAction = new Actionlog();
|
||||||
$logAction->item_type = Asset::class;
|
$logAction->item_type = Asset::class;
|
||||||
|
|
Loading…
Reference in a new issue