[tryton-dev] project: review view structure (issue387001)

2012-05-25 Thread nicolas . evrard
Reviewers: , Please review this at http://codereview.tryton.org/387001/ Affected files: M work.xml Index: work.xml === --- a/work.xml +++ b/work.xml @@ -64,30 +64,29 @@ field name=typeform/field

[tryton-dev] project_revenue: review project/task view (issue388001)

2012-05-25 Thread nicolas . evrard
Reviewers: , Please review this at http://codereview.tryton.org/388001/ Affected files: M work.py M work.xml Index: work.py === --- a/work.py +++ b/work.py @@ -46,8 +46,11 @@ digits=(16,

[tryton-dev] timesheet: add states on hours (issue385002)

2012-05-25 Thread nicolas . evrard
Reviewers: , Please review this at http://codereview.tryton.org/385002/ Affected files: M work.py Index: work.py === --- a/work.py +++ b/work.py @@ -20,7 +20,11 @@ right = fields.Integer('Right', required=True,

Re: [tryton-dev] New Reference widget

2012-05-25 Thread Jean Cavallo
Everyone, I talked with cedric about this, and we would really need some feedback on this so that we can design the solution that would be the more useful for all. If you encountered this problem before, your solution to it would be interesting as well, as we do not want to develop something that

[tryton-dev] Wizard session forwarding

2012-05-25 Thread Jean Cavallo
Hi all, I am looking for a way to access a wizard's session from within a One2Many field defined on one of the wizard's StateView. I want to initialize some data on the list's elements and need to look for data in the previous states of the wizard. Any idea ? Jean CAVALLO --

Re: [tryton-dev] Wizard session forwarding

2012-05-25 Thread Cédric Krier
On 25/05/12 17:33 +0200, Jean Cavallo wrote: Hi all, I am looking for a way to access a wizard's session from within a One2Many field defined on one of the wizard's StateView. I want to initialize some data on the list's elements and need to look for data in the previous states of the

Re: [tryton-dev] Wizard session forwarding

2012-05-25 Thread Jean Cavallo
I am looking for a way to access a wizard's session from within a One2Many field defined on one of the wizard's StateView. I want to initialize some data on the list's elements and need to look for data in the previous states of the wizard. Use the default_state method. Well, I used

Re: [tryton-dev] Wizard session forwarding

2012-05-25 Thread Cédric Krier
On 25/05/12 17:42 +0200, Jean Cavallo wrote: I am looking for a way to access a wizard's session from within a One2Many field defined on one of the wizard's StateView. I want to initialize some data on the list's elements and need to look for data in the previous states of the

Re: [tryton-dev] Wizard session forwarding

2012-05-25 Thread Jean Cavallo
Well, I used this when I wanted to init basic type fields or Many2Ones. I would like a way to init new records of a One2Many, so I need code that will be called everytime I click on the New icon of the State's One2Many field. It is default_field methods of the target. I know that, but

Re: [tryton-dev] Wizard session forwarding

2012-05-25 Thread Cédric Krier
On 25/05/12 17:50 +0200, Jean Cavallo wrote: Well, I used this when I wanted to init basic type fields or Many2Ones. I would like a way to init new records of a One2Many, so I need code that will be called everytime I click on the New icon of the State's One2Many field. It is