v 13.0 Third Party 41
Download for v 13.0 Deploy on Odoo.sh
Availability
Odoo Online
Odoo.sh
On Premise
Lines of code 432
Technical Name chained_swapper
LicenseAGPL-3
Websitehttps://github.com/OCA/server-ux
Versions 12.0 15.0 13.0 14.0
You bought this module and need support? Click here!

Chained Swapper

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

This module allows to swap the value of a field and propagate it in a chained way to linked records. Example: changing the delivery address in a confirmed sales order, it should be changed in its delivery orders as well.

It also allows to apply constraints for not allowing to do that change according rules, so the business logic is not broken. Example: Don’t allow to change the delivery address if the delivery order is validated.

This module requires some technical knowledge for setting the chained swap and the constraint, as it’s defined through technical names and Python code.

WARNING: Use this module with care, as it can screw up database consistency if swaps are not properly designed .

Table of contents

Configuration

To configure this module, you need to:

  1. Go to Setting > Field Swaps > Field Swaps.

  2. Create a new object and set the following data as an example:

    • Name for identifying it and use it for the action name.

    • Select the source model where the swap will be started.

    • Select the starting field for which the swap will be done.

    • Add several chained fields. They are expressed as a string using dot notation, taking the source model as beginning for looking there the first field, and continuing from there drilling through. Example: picking_ids.partner_id for sale.order model will go to the linked deliveries orders, and change the customer there.

    • Add possible constraints for restricting the chained swap. They are Python expressions that must be one line that is evaluated as boolean. If the evaluation is true, then a message will be thrown and no swap will be allowed. You can use the variable records in your code, that will be referring the selected records for doing the swap. Example: for restricting sales orders that have a delivery order validated:

      any(p.state == ‘done’ for p in records.mapped(‘picking_ids.state’))

      Other variables you can use are env, date and datetime. Each constraint has a name for identifying it, but also for showing that name when displaying the error trying to do the swap.

  3. Click on ‘Add action’ smart button to add a new action in the source model.

On demo databases, you can check the example “Language”, that changes the language of a contact, and propagate it to children contacts.

Usage

To use this module, you need to:

  1. Go to the source document in list mode.
  2. Select one or several records.
  3. Click on Action and locate the option “Chained swap: <name of the swap>”.
  4. If one of the selected records doesn’t comply with one of the constraints, a message will be shown, and the swap won’t continue.
  5. If everything is OK, a popup will arise, and you will see a field for filling the new value.
  6. Click on “Change”, and the swap will be done.
  7. On the chatter of the source document, an entry will be logged for reflecting the done swap.

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

Contributors

  • Tecnativa:
    • Ernesto Tejeda
    • Pedro M. Baeza

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-ux project on GitHub.

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

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Please choose a rating from 1 to 5 for this module.