An open API service indexing awesome lists of open source software.

https://github.com/cgsmith/odoo_many2one_link

Allows for a widget in Odoo to create an external link
https://github.com/cgsmith/odoo_many2one_link

Last synced: over 1 year ago
JSON representation

Allows for a widget in Odoo to create an external link

Awesome Lists containing this project

README

          

# Many2One External Link

Odoo renders everything inside of
the [WebClient](https://www.odoo.com/documentation/16.0/developer/reference/frontend/framework_overview.html#webclient-architecture).
This can sometimes become less desirable for the related models. `Many2OneExternalLink` widget replaces the `button`
with an `a` tag with the target set for `_blank`.

### Usage

In your view file simply add `widget="many2one_external_link.Many2OneExternalLink` as an attribute. As an example:

**Before**
```xml

```

**After**
```xml

```