mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 21:54:14 -08:00
Bulk Delete Locations does not work [sc-25100]
This commit is contained in:
parent
c7083488b2
commit
0d0984a400
|
@ -106,11 +106,12 @@ class Location extends SnipeModel
|
||||||
*/
|
*/
|
||||||
public function isDeletable()
|
public function isDeletable()
|
||||||
{
|
{
|
||||||
|
|
||||||
return Gate::allows('delete', $this)
|
return Gate::allows('delete', $this)
|
||||||
&& ($this->assets_count === 0)
|
&& ($this->assets_count == 0)
|
||||||
&& ($this->assigned_assets_count === 0)
|
&& ($this->assigned_assets_count == 0)
|
||||||
&& ($this->children_count === 0)
|
&& ($this->children_count == 0)
|
||||||
&& ($this->users_count === 0);
|
&& ($this->users_count == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue