-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] web_tree_many2one_clickable: Migrated to 10.0
- Loading branch information
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ need to disable one field, then use `widget="many2one_unclickable"` | |
|
||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||
:alt: Try me on Runbot | ||
:target: https://runbot.odoo-community.org/runbot/162/9.0 | ||
:target: https://runbot.odoo-community.org/runbot/162/10.0 | ||
|
||
|
||
Bug Tracker | ||
|
@@ -62,6 +62,7 @@ Contributors | |
* Therp BV | ||
* Pedro M. Baeza <[email protected]> | ||
* Antonio Espinosa <[email protected]> | ||
* Sodexis <[email protected]> | ||
|
||
Maintainer | ||
---------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,13 @@ | |
# Copyright 2013 Therp BV (<http://therp.nl>). | ||
# Copyright 2015 Pedro M. Baeza <[email protected]> | ||
# Copyright 2015 Antonio Espinosa <[email protected]> | ||
# Copyright 2017 Sodexis <[email protected]> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "Clickable many2one fields for tree views", | ||
"summary": "Open the linked resource when clicking on their name", | ||
"version": "9.0.1.0.0", | ||
"version": "10.0.1.0.0", | ||
"category": "Hidden", | ||
"website": "https://odoo-community.org/", | ||
"author": "Therp BV, " | ||
|
4 changes: 1 addition & 3 deletions
4
web_tree_many2one_clickable/static/src/js/web_tree_many2one_clickable.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
/* Copyright 2013 Therp BV (<http://therp.nl>). | ||
* Copyright 2015 Pedro M. Baeza <[email protected]> | ||
* Copyright 2016 Antonio Espinosa <[email protected]> | ||
# Copyright 2017 Sodexis <[email protected]> | ||
* License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */ | ||
|
||
odoo.define('web_tree_many2one_clickable.many2one_clickable', function(require) { | ||
"use strict"; | ||
|
||
var _ = require('_'); | ||
var $ = require('$'); | ||
|
||
var core = require('web.core'); | ||
var ListView = require('web.ListView'); | ||
var Model = require('web.DataModel'); | ||
|