Re: [tryton-dev] Looping in class registering on __init__.py

2014-02-27 Thread Jean C
> > Here [2], first Many2One is in line # 125; second in line # 334 >> > > [2] > https://bitbucket.org/camus77/trytond_hotel_presik/src/52933b9c303c8ff0c74b440330d820421e6e60fb/booking.py?at=default > > The second one is not a Many2One definition. Jean Cavallo *Coopengo*

Re: [tryton-dev] Codereview notification

2014-02-27 Thread Cédric Krier
On 27 Feb 19:34, Sergi Almacellas Abellana wrote: > El 23/02/14 19:06, Cédric Krier ha escrit: > >On 22 Feb 20:39, Sergi Almacellas Abellana wrote: > >>>El 21/02/14 15:16, Cédric Krier ha escrit: > >On 20 Feb 11:38, Cédric Krier wrote: > >> >>>Hi, > >> >>> > >> >>>I find the notifi

Re: [tryton-dev] Looping in class registering on __init__.py

2014-02-27 Thread hyan...@gmail.com
2014-02-27 13:28 GMT-05:00 Sergi Almacellas Abellana : > El 27/02/14 17:21, hyan...@gmail.com ha escrit: > > > > > 2014-02-27 10:04 GMT-05:00 Jean C : > >> Looks like both models each have a Many2One field toward the other. >> >> Jean Cavallo >> *Coopengo* >> > > > The model have a Many2One poi

Re: [tryton-dev] Codereview notification

2014-02-27 Thread Sergi Almacellas Abellana
El 23/02/14 19:06, Cédric Krier ha escrit: On 22 Feb 20:39, Sergi Almacellas Abellana wrote: >El 21/02/14 15:16, Cédric Krier ha escrit: > >On 20 Feb 11:38, Cédric Krier wrote: > >>>Hi, > >>> > >>>I find the notification on this mailing list becoming annoying between > >>>the error reviews, th

Re: [tryton-dev] Looping in class registering on __init__.py

2014-02-27 Thread Sergi Almacellas Abellana
El 27/02/14 17:21, hyan...@gmail.com ha escrit: 2014-02-27 10:04 GMT-05:00 Jean C >: Looks like both models each have a Many2One field toward the other. Jean Cavallo /Coopengo/ The model have a Many2One pointing to the other model, the other

Re: [tryton-dev] Looping in class registering on __init__.py

2014-02-27 Thread hyan...@gmail.com
2014-02-27 10:04 GMT-05:00 Jean C : > Looks like both models each have a Many2One field toward the other. > > Jean Cavallo > *Coopengo* > The model have a Many2One pointing to the other model, the other model has been created with a method into the first one.

Re: [tryton-dev] Looping in class registering on __init__.py

2014-02-27 Thread hyan...@gmail.com
2014-02-27 10:04 GMT-05:00 Jesús Martín Jiménez : > > > > 2014-02-27 15:53 GMT+01:00 hyan...@gmail.com : > > Hi devs! :-D >> >> I've a problem wth class registering on __init__.py, is looping between >> two, if a put one on top of the other the following error message appear: >> >> psycopg2.Progra

Re: [tryton-dev] Looping in class registering on __init__.py

2014-02-27 Thread Jean C
Looks like both models each have a Many2One field toward the other. Jean Cavallo *Coopengo*

Re: [tryton-dev] Looping in class registering on __init__.py

2014-02-27 Thread Jesús Martín Jiménez
2014-02-27 15:53 GMT+01:00 hyan...@gmail.com : > Hi devs! :-D > > I've a problem wth class registering on __init__.py, is looping between > two, if a put one on top of the other the following error message appear: > > psycopg2.ProgrammingError: relation "class_name" does not exist > > > Please cou

[tryton-dev] Looping in class registering on __init__.py

2014-02-27 Thread hyan...@gmail.com
Hi devs! :-D I've a problem wth class registering on __init__.py, is looping between two, if a put one on top of the other the following error message appear: psycopg2.ProgrammingError: relation "class_name" does not exist Please could you give me some advise to deal with it. By the way ¿there

Re: [tryton-dev] How to modify the order of loading modules in the boot sequence of the server

2014-02-27 Thread Jesús Martín Jiménez
El jueves, 27 de febrero de 2014 14:25:05 UTC+1, Cédric Krier escribió: > > On 27 Feb 04:31, Jesús Martín Jiménez wrote: > > Hi, > > > > I would like to improve a developed module by loading it at last of all > > installed ones in the boot sequence of the server. It should be > dinamically

Re: [tryton-dev] How to modify the order of loading modules in the boot sequence of the server

2014-02-27 Thread Cédric Krier
On 27 Feb 04:31, Jesús Martín Jiménez wrote: > Hi, > > I would like to improve a developed module by loading it at last of all > installed ones in the boot sequence of the server. It should be dinamically > because it does not know which modules are installed in advance. Is it > possible do it

[tryton-dev] How to modify the order of loading modules in the boot sequence of the server

2014-02-27 Thread Jesús Martín Jiménez
Hi, I would like to improve a developed module by loading it at last of all installed ones in the boot sequence of the server. It should be dinamically because it does not know which modules are installed in advance. Is it possible do it without modifying its dependences? Thanks a lot.