django-viewflow Questions
3
Solved
Synopsis
I'm developing a web application to learn Django (python 3.4 & Django 1.6.10). The web app has complex and often updated workflows. I decided to integrate the Django-Viewflow library ...
Leveridge asked 26/2, 2015 at 4:2
1
Solved
Is there a way to start a Viewflow process with Django model post_save signal. I managed to do this:
//start viewflow process
start = (
flow.StartSignal(post_save, create_dest_flow)
.Next(this.a...
Kempis asked 30/12, 2018 at 19:39
0
Following is my flow:-
class APLWorkflow(Flow):
start = (
flow.StartFunction(function1)
.Next(this.request_quotes)
)
request_quotes = (
flow.Handler(function2)
.Next(this.move_package)
)...
Salamis asked 14/8, 2018 at 10:17
1
I would like to implement the following use case with the ViewFlow library:
Problem
Processes of a particular Flow, started by a user, must wait in a queue before executing a celery job. Each use...
Nudicaul asked 27/7, 2015 at 16:58
1
© 2022 - 2024 — McMap. All rights reserved.