openerp-india team mailing list archive
-
openerp-india team
-
Mailing list archive
-
Message #09247
[Bug 927675] Re: update_list in base/module/module.py does not update the "icon" column
The patch proposed by Carlos Vásquez (CLEARCORP) was merged in the 6.1
branch at revision [1] and should fix the problem.
Thanks for reporting, and thank you Carlos for the fix!
[1] server rev. 4116 rev-id:
odo@xxxxxxxxxxx-20120319183445-uuti8xkh8slksxsu
** Changed in: openobject-server
Status: Confirmed => Fix Released
** Changed in: openobject-server
Milestone: None => 6.1
--
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Server.
https://bugs.launchpad.net/bugs/927675
Title:
update_list in base/module/module.py does not update the "icon" column
Status in OpenERP Server:
Fix Released
Bug description:
Hi!
I tried to add a /static/src/img/icon.png in my module, then I updated
the list of modules; the "icon" column was not updated. Same thing if
I remove the line corresponding to my module in ir_module_module table
and then update the module list.
Finally, after having looked at the 'update_list' method in base/module/module.py, it appears that only the fields available in the __openerp__.py file are updated, knowing:
return {
'description': terp.get('description', ''),
'shortdesc': terp.get('name', ''),
'author': terp.get('author', 'Unknown'),
'maintainer': terp.get('maintainer', False),
'contributors': ', '.join(terp.get('contributors', [])) or False,
'website': terp.get('website', ''),
'license': terp.get('license', 'AGPL-3'),
'certificate': terp.get('certificate') or False,
'complexity': terp.get('complexity', ''),
'sequence': terp.get('sequence', 100),
'application': terp.get('application', False),
'auto_install': terp.get('auto_install', False),
}
No trace of the icon.
Cheers!
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-server/+bug/927675/+subscriptions
References