Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

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

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
productimagevariantsize
1 Răspunde
9982 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Dr Obx
Cel mai bun răspuns

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
Imagine profil
Abandonează
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.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to put different image on each variant of a product? Rezolvat
product image variant different
Imagine profil
Imagine profil
5
ian. 16
16556
Is it possible to easily assign one image to multiple product variants?
product variant
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
mai 25
2445
Pros and Cons of creating product variants Instantly or Dynamically or Never Rezolvat
product variant
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
nov. 24
9497
Incorrect Variant Count after importing Newly added Size/color on odoo 17??
sales product variant size colors
Imagine profil
Imagine profil
1
sept. 24
1588
Allow selection of multiple values from a single attribute of a product's variant
product variant
Imagine profil
Imagine profil
Imagine profil
3
sept. 24
6758
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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