← Back to team overview

openerp-dev-web team mailing list archive

[Bug 691126] Re: fields values in a form not saved since the revision 4106

 

i will test it soon, some other problem to solve before

-- 
You received this bug notification because you are a member of OpenERP
SA's Web Client R&D, which is a bug assignee.
https://bugs.launchpad.net/bugs/691126

Title:
  fields values in a form not saved since the revision 4106

Status in OpenObject Web Client:
  Fix Released

Bug description:
  Hello,

since rev 4106 and +

I made a wizard (osv.osv memory) with several steps.
In fact, a class with several states (step 1, step2, step3, etc...)...and my xml file displays the fields on step 1, or step 2, etc..with
this way to do :
<group  attrs="{'invisible':[('state','!=','step1')]}" >
<field name="recycling_rate"
 </group>
<group  attrs="{'invisible':[('state','!=','step2')]}" >
<field name="packaging"
 </group>
<group  attrs="{'invisible':[('state','!=','step3')]}" >
<field name="colours"
 </group>
etc...(it's a brief explanation)

Since the version 4106...
when I do a browse on the object...the values of fields are not catching from the step2.
With the gtk client, there is no problem. The browse catches well all fields on all steps.
WIth the version 4105, it works on the web client. I do the test with a "bzr revert -r 4105".
The problem comes from the adding of code in rev 4106.