fixed model receive
This commit is contained in:
parent
13ee6d09e6
commit
c75cdb2c60
|
@ -1441,7 +1441,7 @@ class Receive(JoinedTableMixin, ActionWithMultipleDevices):
|
||||||
nullable=False,
|
nullable=False,
|
||||||
default=lambda: g.user.individual.id)
|
default=lambda: g.user.individual.id)
|
||||||
agent_from = relationship(Agent,
|
agent_from = relationship(Agent,
|
||||||
backref=backref('actions_agent', lazy=True, **_sorted_actions),
|
backref=backref('receive_agent_from', lazy=True, **_sorted_actions),
|
||||||
primaryjoin=agent_from_id == Agent.id)
|
primaryjoin=agent_from_id == Agent.id)
|
||||||
agent_from_id.comment = """ This device go from this agent """
|
agent_from_id.comment = """ This device go from this agent """
|
||||||
agent_to_id = Column(UUID(as_uuid=True),
|
agent_to_id = Column(UUID(as_uuid=True),
|
||||||
|
@ -1449,8 +1449,8 @@ class Receive(JoinedTableMixin, ActionWithMultipleDevices):
|
||||||
nullable=False,
|
nullable=False,
|
||||||
default=lambda: g.user.individual.id)
|
default=lambda: g.user.individual.id)
|
||||||
agent_to = relationship(Agent,
|
agent_to = relationship(Agent,
|
||||||
backref=backref('actions_agent', lazy=True, **_sorted_actions),
|
backref=backref('receive_agent_to', lazy=True, **_sorted_actions),
|
||||||
primaryjoin=agent_to_id == Action.id)
|
primaryjoin=agent_to_id == Agent.id)
|
||||||
agent_to_id.comment = """ This device go to this agent """
|
agent_to_id.comment = """ This device go to this agent """
|
||||||
action_id = Column(UUID(as_uuid=True),
|
action_id = Column(UUID(as_uuid=True),
|
||||||
ForeignKey(Action.id),
|
ForeignKey(Action.id),
|
||||||
|
|
Reference in New Issue