You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If child_condition is not met, it calls the original accept method. But it leads to two "accept" transitions in the log, the second one being already from the "accepted" state, although it's not allowed by the workflow.
I found out I can access the undecorated Parent.accept method via return super(Child, self).accept.func().
The real issue happened on a Django model with django-xworkflows.
The text was updated successfully, but these errors were encountered:
Hi,
With the following use case:
If
child_condition
is not met, it calls the originalaccept
method. But it leads to two "accept" transitions in the log, the second one being already from the "accepted" state, although it's not allowed by the workflow.I found out I can access the undecorated
Parent.accept
method viareturn super(Child, self).accept.func()
.The real issue happened on a Django model with django-xworkflows.
The text was updated successfully, but these errors were encountered: