← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 771700] Re: web 6.0: form_evalExpr fail on complex expression (patch provided)

 

Hello,

This issue was already fix in trunk branch with following revision information.
4507 sma@xxxxxxxxxxx-20110203092443-qfx42cufzhqantht

Thank You.

** Changed in: openobject-client-web
       Status: New => Fix Released

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/771700

Title:
  web 6.0: form_evalExpr fail on complex expression (patch provided)

Status in OpenERP Web Client:
  Fix Released
Status in OpenERP Web Client 6.0 series:
  New

Bug description:
  Steps to reproduce the problem:

  take a object with a view like this:

  <group attrs="{'readonly': ['|', ('version','>',1),('state','!=','draft')]}">
    <field name="version"/>
  </group>
  <field name="state"/>

  - state: is a selection field with a default value of "draft"
  - version: is an integer field with a default value of 1

  When creating this kind of object, the group will appear readonly on
  the web client, which is wrong.

  After digging into the javascript, following are the operations the
  form_evalExpr perform:

  1. push "|" to the stack
  2. compare version_value > 1
  3. compare version_value != 'draft'
  4. evaluate the or and return the result

  The problem apprea on step 3., the "elem" variable is not
  reinitialized on each loop, so is compare with the value of the widget
  found in previous step (2.), see patch attached for a one line fix.


References