mirror of https://github.com/OCA/web.git
[MIG] web_tree_many2one_clickable: Migrated to 10.0
parent
07906d50c2
commit
bfb03e3fd1
|
@ -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 <pedro.baeza@serviciosbaeza.com>
|
||||
* Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
||||
* Sodexis <dev@sodexis.com>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
|
|
@ -2,12 +2,13 @@
|
|||
# Copyright 2013 Therp BV (<http://therp.nl>).
|
||||
# Copyright 2015 Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
# Copyright 2015 Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
||||
# Copyright 2017 Sodexis <dev@sodexis.com>
|
||||
# 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, "
|
|
@ -1,14 +1,12 @@
|
|||
/* Copyright 2013 Therp BV (<http://therp.nl>).
|
||||
* Copyright 2015 Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
* Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
||||
# Copyright 2017 Sodexis <dev@sodexis.com>
|
||||
* 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');
|
||||
|
|
Loading…
Reference in New Issue