Commit Graph

17 Commits (f22f00a2e37ade32b51f112a23e5d1d2edca14ed)

Author SHA1 Message Date
Eduardo De Miguel a140646181 [14.0] [FIX] Clicking on a field with context
Clicking on a field with context like this `{'default_product_id': product_id}` doesn't throws an error.
2022-02-21 17:56:33 +01:00
Raf Ven 83bb604537 [MOD] Pass context defined on tree view field
When for instance a form_view_ref context is defined on a field in a specific tree view, the context should also be passed when opening the form.
2021-06-23 10:30:54 +02:00
OCA-git-bot e5ccad0373 [UPD] README.rst 2021-04-07 14:38:59 +00:00
Kévin Roche 6fddeaa274 [MIG] web_tree_many2one_clickable: Migration to 14.0 2021-02-22 17:20:37 +01:00
Jairo Llopis 5c5eaf2c80 [IMP] pre-commit run after update
Includes some manual fixes to silent ESLint warnings.
2021-01-13 15:04:40 +01:00
Simone 83ee72c393 [MIG] web_tree_many2one_clickable: Migration to 13.0 2021-01-13 15:04:40 +01:00
OCA-git-bot a9b0cb42d8 [UPD] README.rst 2021-01-13 15:04:40 +01:00
Alexandre Díaz 1930322ff0 [IMP] web_tree_many2one_clickable: Readme - USAGE 2021-01-13 15:04:40 +01:00
Alexandre Díaz c7d5d26570 [MIG] web_tree_many2one_clickable: Migration to 12.0 2021-01-13 15:04:40 +01:00
Anand Kansagra c1868953c4 [MIG] web_tree_many2one_clickable: Migration to 12.0. 2021-01-13 15:04:40 +01:00
Guewen Baconnier 5df78e7d1f web_tree_many2one_clickable: Check if the node is a field
If a list contains a node which is not a field (e.g. a button), it will
not be found in the fields so we'll have an error trying to get 'type'
from undefined.
2021-01-13 15:04:40 +01:00
Artem Kostyuk b5ba15dabd [MIG] web_tree_many2one_clickable: Migration to 11.0 2021-01-13 15:04:40 +01:00
Atchuthan, Sodexis c502ea513f [MIG] web_tree_many2one_clickable: Migrated to 10.0 2021-01-13 15:04:40 +01:00
Antonio Espinosa 5045847cc1 [MIG] web_tree_many2one_clickable: Migration to 9.0 2021-01-13 15:04:40 +01:00
Holger Brunn 7d83caabd6 support reference fields in many2one_clickable widget 2021-01-13 15:04:40 +01:00
Antonio Espinosa daaae71936 [FIX] Allow set web_tree_many2one_clickable.default as True 2021-01-13 15:04:40 +01:00
Pedro M. Baeza 00b0d7b208 [ADD] web_tree_many2one_clickable
Clickable many2one fields for tree views
========================================

This addon provides a separate widget to allow many2one fields in a tree view
open the linked resource when clicking on their name.

You can also define a system parameter to have this behaviour for all the
existing many2one fields in tree views.

Installation
============

Install it the regular way.

Configuration
=============

If you want to have all many2one fields clickable by default, you have to
define in *Configuration > Technical > Parameters > System parameters*, a new
parameter with name `web_tree_many2one_clickable.default` and with value
`true`.

Usage
=====

For the widget option, you need to add `widget="many2one_clickable"` attribute
in the XML field definition in the tree view.

For example:

`<field name="partner_id" widget="many2one_clickable" />`

will open the linked partner in a form view.

Known issues / Roadmap
======================

* You cannot deactivate clickable behaviour for an specific many2one field if
  you configure the system parameter.
* The value of the system parameter is retrieved for each many2one field
  present in the view instead of only once.
2021-01-13 15:04:40 +01:00