Jump to content

Tryton

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 85.201.159.186 (talk) at 14:14, 14 August 2009 (Added references). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Tryton
Stable release
1.2/ April 20, 2009 (2009-04-20)
Repository
Written inPython
Operating systemCross-platform
TypeBusiness software
LicenseGPLv3 license
Websitehttp://www.tryton.org/

Tryton is a three-tier high-level general purpose computer application platform on top of which is built a business solution (or ERP) through a set of so-called Tryton modules.

The Tryton platform is organised around a three-tiers architecture: The Tryton client, the Tryton server and the DBMS (mainly PostgreSQL). The platform along with the official modules is licenced under the GPL-3[1].

The name Tryton refers to Triton, the largest moon of Neptune, and Python, the implementation language.

Tryton's origin is a fork of the version 4.2 of TinyERP (wich was later called OpenERP). The first version was published in November 2008[2][3][4], this version came with a major rewriting of some parts of the kernel and the main modules.

In contrast to their parent project and other open-source business software, the Tryton founders avoided creating a partner network which tends to generate opposition and duality between the partners and the community of volunteers. They followed the PostgreSQL example where the project is driven by a federation of companies[5].

The release process is organised around series. A series is a set of releases with the same two first numbers (E.G. 1.0 or 1.2) that shares the same API and the same database scheme. A new series appears every six months and new versions in older release are introduced when bugfixes are availables[6].

Modules and functional coverage

The official modules provide a coverage of the following functional fields:

  • Accouting and analytic accounting
  • Sale management
  • Purchase management
  • Inventory management
  • Timesheet and project management

Technical features

The client and the server applications are written in Python, the client use GTK+ as graphical toolkit. Both are available on Linux, MacOS and Windows[7].

The kernel provides the technical foundations needed by most business applications. However it is not linked to any particular functional field hence constituting a general purpose framework:

  • Data persistence: ensured by accessor objects called Models, they allow easy creation, migration and access to records.
  • User Management: The kernel comes with the base features of user management: user groups, access rules by models and records, etc.
  • Report Engine: The report engine is based on relatorio that uses ODT files as templates and generate ODT or PDF reports.
  • Internationalisation: Tryton is currently available in English, French, German, Spanich and Italian. New translations can be added directly from the client interface.
  • Historical data: Data historization may be enabled on any business model allowing for example to get the list of all the past value of the cost price of any product. It also allows to dynamically access historized record at any time in the past: for instance the customer information on each open invoice will be the ones of the day the invoice was opened.
  • Support for DAV protocols: WebDAV, CalDAV and CardDAV. This allow out-of-the-box document management and synchronizations of calendars and contacts.
  • Database independence is allowed since the 1.2 series and will be used in the 1.4 series for the SQLite backend.
  • Built-in automatic migration mechanism: it allows to update the underlying database scheme without any human manipulation. Migration is ensured from series to series (releases inside the same series doesn't require migration). This automation is possible because the migration process is taken into account and tested continually within the development.
  • Advanced modularity: The modularity allows to provide a layered approach of the business concepts along with a great flexibility, which speeds up custom developments.

References