Conditional Images
(0)
245

Conditional Images

FREE

Available versions
Technical name
base_conditional_image
License
AGPL-3
Secure dependencies
N/A
Conditional Images

Conditional Images

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 conditional images (based on the record attributes) and to manage them either globally or by company.

The main goal behind this module is to avoid storing the same image multiple times. For example, for every partner, there is a related image (most of the time, it’s the default one). With this module properly set up, it will be stored only one time and you can change it whenever you want for all partners.

WARNING: this module cannot be used on the same objects using the module base_multi_image.

Table of contents

Installation

The sole purpose of this module is to add an abstract model to be inherited. So, you will not notice any changes on install.

To develop using this module, you have to inherit the abstract model abstract.conditional.image to the model that needs the conditional images:

class ResPartner(models.Model):
    _inherit = ['res.partner', 'abstract.conditional.image']
    _name = 'res.partner'

Then, configure how the images will be selected for each record.

Usage

Go to Technical Settings > Settings > Images to configure all the images. You can define images for specific objects, depending on the attributes and the company of the object.

The selector should return a boolean expression. All fields of the object are available to compute the result.

The system will first try to match an image with a company set up, then with the ones without a company. If your object does not have a company_id field, this check will be ignored and only images without a company will be used.

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

  • Camptocamp

Contributors

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 app does not use any external Python dependencies.
This app is not translated in any languages, it is only available in English.