c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #33913
[Bug 789576] Re: fields.related override: store function persists
The fix landed in trunk at revision 3712, revision-id:
vmt@xxxxxxxxxxx-20111003151355-05uavyp17l5jmipo
Thanks for the bug report!
** Changed in: openobject-server
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to OpenERP Project Group.
https://bugs.launchpad.net/bugs/789576
Title:
fields.related override: store function persists
Status in OpenERP Server:
Fix Released
Bug description:
Hi,
when a fields.related is overridden by a regular field, the store
function is not removed. Values assigned to the field by the users of
the system get overwritten immediately by the store function of the
original field definition.
Here is an example from the HR module:
'parent_id': fields.related('department_id', 'manager_id',
relation='hr.employee', string='Manager', type='many2one', store=True,
select=True, readonly=True, help="It is linked with manager of
Department"),
We want to override this definition with
"fields.many2one('hr.employee', 'Manager')", but any write on this
field triggers a recalculation based on the related field.
The problem is in orm.__init__() where the list of a model's store
functions is populated but never purged.
Reproducable with openerp-server/6.0 rev. 3435.
Cheers,
Stefan.
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-server/+bug/789576/+subscriptions
References