| 13 | === Settings === |
| 14 | There is a key decision as to whether to have a 2-step process with Commits or whether to simply Dispatch straight to Requests...the former is more suitable where there are many dispatch centers 'competing' to fulfill requests...the latter for when a dispatch center is the only place fulfilling (it's) Requests. |
| 15 | The default is to use commits, to disable this: |
| 16 | {{{ |
| 17 | settings.req.use_commit = False |
| 18 | }}} |
| 19 | |
| 20 | Which request types are enabled is controlled via this setting: |
| 21 | {{{ |
| 22 | settings.req.req_type = ("Stock", "People", "Other") |
| 23 | }}} |
| 24 | |
| 25 | There are several other settings, but these are the key ones. |
| 26 | |