Questions tagged [tryton]

Is a three-tier high-level general purpose application platform under the license GPL-3 written in Python and using PostgreSQL as database engine. It is the core base of a complete business solution providing modularity, scalability and security.

The core of Tryton (also called Tryton kernel) provides all the necessary functionalities for a complete application framework: data persistence, extensive modularity, users management (authentication, fine grained control for data access, handling of concurrent access of resources), workflow and report engines, web services and internationalisation. Thus constituting a complete application platform which can be used for any relevant purpose.

The code is licensed under GPL-3, and the PostgreSQL is the main persistence system, though SQLite is use for small systems.

Source: Tryton.org (About)

76 questions
2
votes
3 answers

PyGIWarning: Gtk and Rsvg were imported without specifying a version first. Use gi.require_version

$ python -c 'from gi.repository import Gtk' -c:1: PyGIWarning: Gtk was imported without specifying a version first. Use gi.require_version('Gtk', '3.0') before import to ensure that the right version gets loaded. what should i do?
Emna
  • 31
  • 1
  • 4
2
votes
1 answer

How do I install GNUHealth?

I am following the installation steps mentioned below but have encountered a python problem. https://en.wikibooks.org/wiki/GNU_Health/Installation#Installing_GNU_Health_on_GNU/Linux_and_FreeBSD At the step where the initialisation of the database…
2
votes
2 answers

Tryton ERP installation with sao on Ubuntu

OS: Ubuntu Server 16.04 LTS I am quite confused on how to properly install the Tryton ERP software on ubuntu. When you navigate to the Tryton website, there is the pip variant: $ pip install trytond $ pip install tryton $ pip install…
VapoRizer
  • 341
  • 1
  • 5
  • 16
2
votes
1 answer

How to boot Tryton server automattically

(I have searched and didn't fine what i was looking for) Recently I installed GNU Health using Ubuntu 14.04.3 following the wikibooks tutorial. Everything worked as expected. But i have to boot up the Tryton server manually every time i…
2
votes
1 answer

how can I run my remote server tryton 3.6.0?

I want to run my remote server tryton version 3.6.0 using the following command : ./trytond but it show me an error : ~/gnuhealth/tryton/server/trytond-3.6.0/bin $…
imen laalai
  • 33
  • 1
  • 6
2
votes
1 answer

Error: Maximum recursion depth on using flask-babel method with Nereid

I am getting maximum recursion depth error from Nereid 3.2. I found main cause for this error is Babel dateformat filter in jinja template like {{ blog_date | dateformat(format='MMM YY') }} On debugging I found may be Nereid's speaklater for lazy…
2
votes
4 answers

openerp reporting syntax

I've been struggling trying to mimic in openerp a report found in Tryton for the module Health GNU. In their report folder lies a report.odt file very similar to any sxw report found in openerp, with a few exceptions that is. For instance, instead…
3a2roub
  • 573
  • 1
  • 7
  • 19
2
votes
1 answer

Python to Windows Executable under Wine

Has anyone successfully created a Windows executable file using py2exe, cx_Freeze or Pyinstaller under Wine from a Linux machine? My goal is to be able to just push the code to a gitolite repository Ubuntu server then a git-hook will build the exe…
Tristian
  • 3,406
  • 6
  • 29
  • 47
1
vote
1 answer

What does mean for sub_ids in grouped_slice(ids) in Tryton?

I want to understand an instruction that I have seen a lot. What does for sub_ids in grouped_slice(ids) mean in Tryton? Here is a fragment of a method where such instruction is used: @classmethod def get_duration(cls, works, name): pool =…
1
vote
2 answers

Gtk problem :ModuleNotFoundError: No module named 'gtk'

I have installed gnuhealth and when I run the gnuhealthclient and login with my username and password it shows an error message with gtk problem : no module found I am using centos 7 and I already installed gtk+ and gtk3 with these commands: $sudo…
Oumayma
  • 11
  • 1
  • 5
1
vote
0 answers

install tryton on centos 7 for gnu health but i can't run gnuhealth client and tryton client

when i run $tryton it shows me this the same for $ gnuhealth-client $ tryton Traceback (most recent call last): File "/usr/local/bin/tryton", line 52, in from tryton.client import main File…
Emna
  • 31
  • 1
  • 4
1
vote
1 answer

How can I call a custom function in tryton after record creation?

I need to perform a notification on a non tryton database after the creation of the record. I see that it's possible to overwrite the create function.. but there is any better solutions to be sure to be after the commit of the database ? I do in…
1
vote
1 answer

PYSON domain search referencing fields of current user

I'm using GNU Health on Tryton and want to do a domain search in a view using PYSON and fields related to the current user. The problem is that I don't know how to reference the fields related to the current user. I want to check if the user…
1
vote
0 answers

trytond 3.8 xml parsin error

I get errors when trying to install module timesheets by command sudo trytond -c t.conf -v -d trytond -u timesheet_cost ir I get error: ERROR trytond.convert Error while parsing xml file: In tag record: model ir.property with id…
user257980
  • 1,059
  • 2
  • 15
  • 31
1
vote
0 answers

PyDev on Eclipse does not stop at breakpoints

I've been development software for OpenERP and Tryton for four years, usally with Eclipse and PyDev. Today I've found with the unusual case where the debugger does not stop at breakpoints with the only message: Traceback (most recent call…
aneolf
  • 311
  • 1
  • 2
  • 5
1
2 3 4 5 6