mirror of
https://github.com/camptocamp/odoo-cloud-platform.git
synced 2026-06-24 16:48:36 +00:00
The 'base' Kanban view for res.partner in 9.0 loads the large 'image' field in the 'search_read' but display the 'small_image'. The js code also has to issue js calls to get the small images as they have not been prefetched. This is noticeably slow to load when the large images are read from S3 which is slower than a local filesystem/database. This fix loads the 'small_image' instead of the large one. This bug has been fixed in Odoo 10.0.
22 lines
579 B
Python
22 lines
579 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2016 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
|
|
|
|
|
{'name': 'Attachments on S3 storage',
|
|
'summary': 'Store assets and attachments on a S3 compatible object storage',
|
|
'version': '9.0.1.2.0',
|
|
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
|
'license': 'AGPL-3',
|
|
'category': 'Knowledge Management',
|
|
'depends': ['base'],
|
|
'external_dependencies': {
|
|
'python': ['boto'],
|
|
},
|
|
'website': 'http://www.camptocamp.com',
|
|
'data': [
|
|
'views/res_partner_views.xml',
|
|
],
|
|
'installable': True,
|
|
}
|