Tryton - Overview

What is Tryton?

General architecture

arch.png

Tryton Client - Presentation layer

Tryton Server - Logic layer (1/3)

Tryton Server - Logic layer (2/3)

Tryton Server - Logic layer (3/3)

PostgreSQL - Persistence and transactional layer

Best open source RDBMS:

Add New Models

1
2
3
4
5
6
7
8
9
 class Category(OSV):
     "Party category"
     _name = 'party.category'
     _description = __doc__
     name = fields.Char('Name')
     parties = fields.One2Many(
         'party.party', 'category', 'Parties')
     code = fields.Integer('Code Length')
 Category()

Thanks for your attention

Any questions?