Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilidad
- Inventario
- PoS
- Project
- MRP
Se marcó esta pregunta
I got this Code from Base code itself, anyway this will be helpful for those who searching for default image in odoo 9.
In Header,
from openerp.tools import openerp,image_colorize, image_resize_image_big
In Py,
photo = fields.Binary(string="Image to upload", default=lambda self:self._get_default_image())
@api.model
def _get_default_image(self, colorize=False):
image = image_colorize(open(openerp.modules.get_module_resource('base','static/src/img', 'avatar.png')).read())
return image_resize_image_big(image.encode('base64'))
In Xml, should specify widget="image" for showing image in Form.
<field name="photo" widget="image" />
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
InscribirsePublicaciones relacionadas | Respuestas | Vistas | Actividad | |
---|---|---|---|---|
|
1
mar 16
|
2002 | ||
|
1
oct 18
|
7004 | ||
|
5
dic 23
|
28927 | ||
|
1
may 25
|
1379 | ||
|
2
nov 24
|
821 |