[tryton-dev] Trytond es_CO translation update (issue 547002)

2012-10-02 Thread oscar . alvarez . montero
Reviewers: , Please review this at http://codereview.tryton.org/547002/ Affected files: M trytond/ir/locale/es_CO.po M trytond/res/locale/es_CO.po M trytond/webdav/locale/es_CO.po -- tryton-dev@googlegroups.com mailing list

Re: [tryton] Re: Party Bank information

2012-10-02 Thread Raimon Esteve
@b2ck team: Do you have any news/are working about bank module? Or what bank module will be oficial release? In Spanish localization we need bank management data (and extra modules to generate files import/export bank) Thanks. raimon -- -- tryton@googlegroups.com mailing list

Re: [tryton] Re: Party Bank information

2012-10-02 Thread Cédric Krier
On 02/10/12 12:47 +0200, Raimon Esteve wrote: @b2ck team: Do you have any news/are working about bank module? Or what bank module will be oficial release? Nothing was submitted. -- Cédric Krier B2CK SPRL Rue de Rotterdam, 4 4000 Liège Belgium Tel: +32 472 54 46 59 Email/Jabber:

[tryton] Active record !?

2012-10-02 Thread Valentin Hapiot
Hi just checkouted the 2.5 branch and saw that the new version will use the active record pattern. I'm a bit disappointed because I like simplicity, and to at first sight, using this pattern forces those noisy decorators in the methods, it also make things more complex by thinking about static

Re: [tryton] Active record !?

2012-10-02 Thread Cédric Krier
On 02/10/12 11:07 -0700, Valentin Hapiot wrote: Hi just checkouted the 2.5 branch and saw that the new version will use the active record pattern. I'm a bit disappointed because I like simplicity, and to at first sight, using this pattern forces those noisy decorators in the methods, it also

Re: [tryton] Active record !?

2012-10-02 Thread Valentin Hapiot
before: def getter(self, ids, name): res = {} for record in self.browse(ids): res[record.id] = ... return res now: def getter(self, name): return self Is too

Re: [tryton] Active record !?

2012-10-02 Thread Cédric Krier
On 02/10/12 21:41 +0200, Valentin Hapiot wrote: before: def getter(self, ids, name): res = {} for record in self.browse(ids): res[record.id] = ... return res now: def

Re: [tryton] Active record !?

2012-10-02 Thread Valentin Hapiot
Also, is there an updated (2.5) version of the demo module ? Not yet. I tried to update the demo module but I can't get it to work. The tryton.cfg is ok and the module is processed but the model doesn't seem to be registered. Here's the code : from trytond.model import ModelSQL, fields

Re: [tryton] Active record !?

2012-10-02 Thread zodman
2012/10/2 Valentin Hapiot vhap...@gmail.com: Also, is there an updated (2.5) version of the demo module ? Not yet. I tried to update the demo module but I can't get it to work. The tryton.cfg is ok and the module is processed but the model doesn't seem to be registered. Here's the code :

Re: [tryton] Active record !?

2012-10-02 Thread Cédric Krier
On 02/10/12 23:19 +0200, Valentin Hapiot wrote: Also, is there an updated (2.5) version of the demo module ? Not yet. I tried to update the demo module but I can't get it to work. The tryton.cfg is ok and the module is processed but the model doesn't seem to be registered. You have to