Merge branch 'testing' into bugfix/3843-after-action-go-to
This commit is contained in:
commit
5614eb36f8
|
@ -476,9 +476,12 @@ class EraseBasic(JoinedWithOneDeviceMixin, ActionWithOneDevice):
|
||||||
return urlutils.URL(url_for_resource('Document', item_id=self.id))
|
return urlutils.URL(url_for_resource('Document', item_id=self.id))
|
||||||
|
|
||||||
def get_phid(self):
|
def get_phid(self):
|
||||||
if self.device and self.device.parent:
|
"""This method is used for get the phid of the computer when the action
|
||||||
if hasattr(self.device.parent, 'phid'):
|
was created. Usefull for get the phid of the computer were a hdd was
|
||||||
return self.device.parent.phid()
|
Ereased
|
||||||
|
"""
|
||||||
|
if self.snapshot:
|
||||||
|
return self.snapshot.device.phid()
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
def __str__(self) -> str:
|
def __str__(self) -> str:
|
||||||
|
|
Reference in New Issue