1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
.. _tutorial-module:
===============
Module Tutorial
===============
A step by step tutorial to create a first module.
In this tutorial we will create a simple Tryton module to manage business
opportunities.
We will use Tryton and SQLite_ as database, so the installation should be pretty
straightforward.
.. TODO: rename module into training
We will call our module ``opportunity``. This simple module will do the
following things:
.. toctree::
:maxdepth: 1
setup
setup_database
anatomy
model
view
default_values
on_change
function_fields
domains
workflow
states
extend
wizard
report
table_query
Let's start with :ref:`installing Tryton for developers <tutorial-module-setup>`.
.. _SQLite: https://sqlite.org/
|