fix transfer action
This commit is contained in:
parent
9e42ccafc0
commit
eda61f7808
|
@ -3,6 +3,7 @@ import copy
|
||||||
from ereuse_devicehub.config import DevicehubConfig
|
from ereuse_devicehub.config import DevicehubConfig
|
||||||
from ereuse_devicehub.db import db
|
from ereuse_devicehub.db import db
|
||||||
from ereuse_devicehub.devicehub import Devicehub
|
from ereuse_devicehub.devicehub import Devicehub
|
||||||
|
from ereuse_devicehub.inventory.models import Transfer
|
||||||
from ereuse_devicehub.resources.action.models import (
|
from ereuse_devicehub.resources.action.models import (
|
||||||
ActionDevice,
|
ActionDevice,
|
||||||
Allocate,
|
Allocate,
|
||||||
|
@ -85,6 +86,7 @@ def manual_actions():
|
||||||
DataWipe,
|
DataWipe,
|
||||||
ToRepair,
|
ToRepair,
|
||||||
Ready,
|
Ready,
|
||||||
|
Transfer,
|
||||||
)
|
)
|
||||||
|
|
||||||
for action in MANUAL_ACTIONS:
|
for action in MANUAL_ACTIONS:
|
||||||
|
@ -93,7 +95,6 @@ def manual_actions():
|
||||||
|
|
||||||
def change_device(action):
|
def change_device(action):
|
||||||
for ac in action.query.all():
|
for ac in action.query.all():
|
||||||
# import pdb; pdb.set_trace()
|
|
||||||
if hasattr(ac, 'device'):
|
if hasattr(ac, 'device'):
|
||||||
if not ac.device.binding:
|
if not ac.device.binding:
|
||||||
continue
|
continue
|
||||||
|
|
Reference in New Issue