Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Conocimientos
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

How to create small and medium images in product.product?

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
productimagevariantsize
1 Responder
9984 Vistas
Avatar
Pascal Tremblay

Hello there,

My post will be long. Don't have the choice. I don't manage to do this.

I have installed the example code of my friend Yenthe :

https://github.com/Yenthe666/Odoo_Samples/tree/master/upload_imagesNow, I'm trying to use this code in product.product and it doesn't work.


In the file openerp/addons/product/product.py :

I have added this code in the product.product class.

class product_product(osv.osv):

        _name = "product.product"

        _description = "Product"

        _inherits = {'product.template': 'product_tmpl_id'}

        _inherit = ['mail.thread']

        _order = 'default_code,name_template'

        def _get_image_variant2(self, cr, uid, ids, name, args, context=None):

                _logger.error("_get_image_variant2")

                result = dict.fromkeys(ids, False)

                for obj in self.browse(cr, uid, ids, context=context):

                        result[obj.id] = tools.image_get_resized_images(obj.image_variant)

                return result

        def _set_image_variant2(self, cr, uid, id, name, value, args, context=None):

                _logger.error("_set_image_variant2")

                return self.write(cr, uid, [id], {'image_variant': tools.image_resize_image_big(value)}, context=context)

        

        'image_variant': fields.binary("Variant Image",

                help="This field holds the image used as image for the product variant, limited to 1024x1024px."),

        'image_variant_medium': fields.function(_get_image_variant2, fnct_inv=_set_image_variant2,

                string="Image variant medium (auto-resized to 128x128):", type="binary", multi="_get_image_variant2",

                store={

                        'product.product': (lambda self, cr, uid, ids, c={}: ids, ['image_variant'], 10),

                },help="Medium-sized image of the category. It is automatically "\

                        "resized as a 128x128px image, with aspect ratio preserved. "\

                        "Use this field in form views or some kanban views."),

        'image_variant_small': fields.function(_get_image_variant2, fnct_inv=_set_image_variant2,

                string="Image variant small (auto-resized to 64x64):", type="binary", multi="_get_image_variant2",

                store={

                        'product.product': (lambda self, cr, uid, ids, c={}: ids, ['image_variant'], 10),

                },

                help="Small-sized image of the category. It is automatically "\

                        "resized as a 64x64px image, with aspect ratio preserved. "\

                        "Use this field anywhere a small image is required.")


In the view product.product_normal_form_view :

I added two new fields.

        <field name="image_variant_small" widget="image" class="oe_avatar oe_left"/>

        <field name="image_variant_medium" widget="image" class="oe_avatar oe_left"/>

See result at the bottom right of this screenshot.


The problem :

When I edit this product.product record, I select a new image in one of these two new fields (image variant small or image variant medium), the image appears. Then, I click on save button. My two new fields stay blank... Like the preview above! Grrr!

Only the original image_medium field changes. The new image only appears there at the top left!

What I do wrong?

Thanks everybody to help! If it miss something in this post, I can add it quickly. Thanks!




Update #1 (january 1, 2016)

See the name of each one of the image fields. I think that each fields have a different name. Is it what it should be?



Update #2 (january 1, 2016)

In the module of Yenthe, upload_images, i have printed the context in the _set_images method when I save a new image :

    context :: {'lang': 'en_US', 'params': {'action': 1827}, 'tz': 'America/Montreal', 'uid': 1}

In the file odoo-8.0-20151003/openerp/addons/product/product.py, I have also printed the context in the _set_image_variant2 method

(see above for this method) when I save a new image in within one of my two new fields of the product.product view above  :

context :: {'lang': 'en_US', 'tz': 'America/Montreal', 'uid': 1, 'active_model': 'product.template', 'params': {'action': 348}, 'search_disable_custom_filters': True, 'search_default_product_tmpl_id': [491], 'active_ids': [491], 'active_id': 491}

What I see special there????  In the context of my new _set_image_variant method, there is an 'active_model' : 'product.template'... Should it not be setted at product.product rather?

May be this is the problem?





1
Avatar
Descartar
Avatar
Dr Obx
Mejor respuesta

Is it not as with the fields ? Only one field can have a value if there is more than one with the same name in one view. Every image must have a  unique field name.


0
Avatar
Descartar
Pascal Tremblay
Autor

My post now has an update #1. Thanks for your answer.

Dr Obx

So top two images works fine, only those in right bottom corner won't ?

Pascal Tremblay
Autor

exactly like you say. I saw something in the log. I update #2 now.

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
How to put different image on each variant of a product? Resuelto
product image variant different
Avatar
Avatar
5
ene 16
16560
Is it possible to easily assign one image to multiple product variants?
product variant
Avatar
Avatar
Avatar
Avatar
3
may 25
2445
Pros and Cons of creating product variants Instantly or Dynamically or Never Resuelto
product variant
Avatar
Avatar
Avatar
Avatar
3
nov 24
9499
Incorrect Variant Count after importing Newly added Size/color on odoo 17??
sales product variant size colors
Avatar
Avatar
1
sept 24
1590
Allow selection of multiple values from a single attribute of a product's variant
product variant
Avatar
Avatar
Avatar
3
sept 24
6761
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now