Merge branch 'testing' into bugfix/3843-after-action-go-to

This commit is contained in:
Cayo Puigdefabregas 2022-09-27 09:44:45 +02:00
commit 5614eb36f8
1 changed files with 6 additions and 3 deletions

View File

@ -476,9 +476,12 @@ class EraseBasic(JoinedWithOneDeviceMixin, ActionWithOneDevice):
return urlutils.URL(url_for_resource('Document', item_id=self.id))
def get_phid(self):
if self.device and self.device.parent:
if hasattr(self.device.parent, 'phid'):
return self.device.parent.phid()
"""This method is used for get the phid of the computer when the action
was created. Usefull for get the phid of the computer were a hdd was
Ereased
"""
if self.snapshot:
return self.snapshot.device.phid()
return ''
def __str__(self) -> str: