Multiple images base
(0)
238
Tecnativa

Multiple images base

FREE
Technical name
base_multi_image
License
AGPL-3
Secure dependencies
N/A
Multiple images base

Multiple images base

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runboat

This module extends the functionality of any model to support multiple images (a gallery) attached to it and allow you to manage them.

Table of contents

Installation

This module adds abstract models to work on. Its sole purpose is to serve as base for other modules that implement galleries, so if you install this one manually you will notice no change. You should install any other module based on this one and this will get installed automatically.

Configuration

To manage all stored images, you need to:

  • Go to Settings > Technical > Multi images.

… but you probably prefer to manage them from the forms supplied by submodules that inherit this behavior.

Development

To develop a module based on this one:

  • See module product_multi_image as an example.

  • You have to inherit model base_multi_image.owner to the model that needs the gallery:

    class MyOwner(models.Model):
        _name = "my.model.name"
        _inherit = ["my.model.name", "base_multi_image.owner"]
    
        # If you need this, you will need ``pre_init_hook_for_submodules`` and
          ``uninstall_hook_for_submodules`` as detailed below.
        old_image_field = fields.Binary(related="image_main", store=False)
    
  • Somewhere in the owner view, add:

    <field
        name="image_ids"
        nolabel="1"
        context="{
            'default_owner_model': 'my.model.name',
            'default_owner_id': id,
        }"
        mode="kanban"/>
    
  • If the model you are extending already had an image field, and you want to trick Odoo to make those images to multi-image mode, you will need to make use of the provided ~.hooks.pre_init_hook_for_submodules and ~.hooks.uninstall_hook_for_submodules, like the product_multi_image module does:

    try:
        from odoo.addons.base_multi_image.hooks import (
            pre_init_hook_for_submodules,
            uninstall_hook_for_submodules,
        )
    except ImportError:
        pass
    
    
    def pre_init_hook(cr):
        """Transform single into multi images."""
        pre_init_hook_for_submodules(cr, "product.template", "image")
        pre_init_hook_for_submodules(cr, "product.product", "image_variant")
    
    
    def uninstall_hook(cr, registry):
        """Remove multi images for models that no longer use them."""
        uninstall_hook_for_submodules(cr, registry, "product.template")
        uninstall_hook_for_submodules(cr, registry, "product.product")
    
Try me on Runbot

Known issues / Roadmap

  • OS file storage mode for images is meant to provide a path where Odoo has read access and the image is already found, not for making the module store images there. It would be nice to add that feature though.

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.

Do not contact contributors directly about support or help with technical issues.

Credits

Authors

  • Tecnativa
  • Antiun Ingeniería
  • S.L.
  • Sodexis
  • LasLabs

Contributors

Other credits

Original implementation

This module is inspired in previous module product_images from OpenLabs and Akretion.

Maintainers

This module is maintained by the OCA.

Odoo Community Association

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

This module is part of the OCA/server-tools project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

0.0 / 5.0
based on 0 ratings
This theme does not use any external Python dependencies.

Available languages

Language % translated
German / Deutsch
79%
Croatian / hrvatski jezik
75%
Slovenian / slovenščina
62%
Italian / Italiano
58%
Chinese (Simplified) / 简体中文
50%
French / Français
25%
Turkish / Türkçe
18%
Polish / Język polski
18%
Bulgarian / български език
18%
Thai / ภาษาไทย
18%
Swedish / Svenska
18%
Macedonian / македонски јазик
18%
Hebrew / עִבְרִי
18%
Indonesian / Bahasa Indonesia
18%
Persian / فارس
18%
Spanish (DO) / Español (DO)
18%
Ukrainian / українська
18%
Spanish (MX) / Español (MX)
18%
Mongolian / монгол
18%
Spanish (EC) / Español (EC)
18%
Dutch / Nederlands
18%
Spanish (VE) / Español (VE)
18%
Spanish (PE) / Español (PE)
18%
Dutch (BE) / Nederlands (BE)
18%
Bosnian / bosanski jezik
18%
English (UK)
18%
Vietnamese / Tiếng Việt
18%
Spanish (CO) / Español (CO)
18%
Chinese (Traditional) / 繁體中文
18%
Portuguese (BR) / Português (BR)
18%
Spanish (AR) / Español (AR)
18%
Romanian / română
18%
Slovak / Slovenský jazyk
18%
Portuguese / Português
18%
Estonian / Eesti keel
18%
Japanese / 日本語
18%
Turkish / Türkçe
18%
Dutch / Nederlands
18%
Serbian (Latin) / srpski
18%
Arabic / الْعَرَبيّة
18%
Spanish (CL) / Español (CL)
18%
Finnish / Suomi
18%
Hungarian / Magyar
18%
Croatian / hrvatski jezik
16%
Portuguese / Português
16%
Greek / Ελληνικά
14%
Spanish (PY) / Español (PY)
14%
Spanish / Español
14%
Spanish / Español
14%
Latvian / latviešu valoda
14%
French (CA) / Français (CA)
14%
Russian / русский язык
14%
Norwegian Bokmål / Norsk bokmål
14%
French (CH) / Français (CH)
14%
Spanish (CR) / Español (CR)
14%
Vietnamese / Tiếng Việt
12%
Lithuanian / Lietuvių kalba
10%
Lithuanian / Lietuvių kalba
10%
Galician / Galego
2%
Galician / Galego
2%