No project description provided
Project description
SCF_FSM_PACKAGE
A resuable django application that can handle transition and workflow's in your project .
Authors
Installation
Install scf_fsm_package with pip
pip install finflo
- In your django application , browse to installed_apps section in settings.py and add finflo
- make sure you have installed DjangoRestFramework
INSTALLED_APPS = [
'finflo',
'rest_framework'
]
if you want party you can customize by adding this finflo section in your settings.py
- from_party and to_party is required to mention the flow is needed to sent from one party to another party
- The MODEL is optional field the user can specify their transition_model in their application
NOTE : The FINFLO section is required
FINFLO = {
'FROM_PARTY' : 'django_app.model_name', # example
'FROM_PARTY' : 'accounts.party',
'TO_PARTY' : 'accounts.party'
'MODEL' : ['accounts.Programs' , 'accounts.Invoices']
}
or else simple mention None ,
FINFLO = {
'FROM_PARTY' : None,
'TO_PARTY' : None,
'MODEL' : None
}
now navigate to the middleware section and add the finflo middleware
MIDDLEWARE = [
'finflo.middleware.TransitionUserMiddleware',
]
Api urls
In your application's urls.py , you can include finflo's api urls for browsable api's
** make sure that you have installed DjangoRestFramework
Now add this peice of code in your urls.py
urlpatterns = [
path('', include('finflo.urls'))
]
Usage
-
import your transition function
from finflo.transitions import FinFlotransition
-
The transition function requires 4 positional arguments :
-
Arguments Data_Type type str action str stage int t_id (optional) int
Example 1 : generic
from finflo.transition import FinFlotransition
myhandler = FinFlotransition()
# example function
def index():
myhandler.transition(type = "PROGRAM",action = "submit" ,stage = 0)
return HttpResponse({"data"})
Example 2 : customizable
- Browse to /api/transition/
- send your type , action , stage , t_id(optional) in body
Tech Stack
1. Python
2. Django==3.2.5
3. Django-rest-framework
Additional API's
Api urls
Api URL's | METHOD | QUERY_PARAMS |
---|---|---|
localhost/model/ | GET | ?type=PROGRAM |
localhost/action/ | GET | NONE |
localhost/action/ | POST | NONE |
localhost/workflowitems/ | GET | NONE |
localhost/workevents/ | GET | NONE |
Support
For support, email support@venzo.com .
Future
- postgres support
- next_Avail_transitions
- customizable workflowitems and workflowevents
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file finflo-1.5.3.tar.gz
.
File metadata
- Download URL: finflo-1.5.3.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b8717e23460c2e509da08f63e746d3e1671f6ff9bcc1c9b43e02598be997cb1 |
|
MD5 | 346d4f5e7321deb3ddd02d949bc01ae0 |
|
BLAKE2b-256 | b61eeebd4a0e51e53e3a7a97ded12bf2fd79bda4a9e1c4336141f34bc93bcd4e |
File details
Details for the file finflo-1.5.3-py3-none-any.whl
.
File metadata
- Download URL: finflo-1.5.3-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a99523eee6776fe0f468f4467c3b5cb9d3cd1ff5ebdcbf3529a93c9320bba033 |
|
MD5 | ccd5d90a2879a43646639e3dcfc4b038 |
|
BLAKE2b-256 | 433bc2d4440175a6fa775f2d72a88b34650945892ee8d3c7528c33c27f8d4882 |