Browse Source

[MIG] web_tree_many2one_clickable: Migrated to 10.0

pull/1162/head
Atchuthan, Sodexis 7 years ago
committed by Anand Kansagra
parent
commit
1df6647fa3
  1. 3
      web_tree_many2one_clickable/README.rst
  2. 3
      web_tree_many2one_clickable/__manifest__.py
  3. 4
      web_tree_many2one_clickable/static/src/js/web_tree_many2one_clickable.js

3
web_tree_many2one_clickable/README.rst

@ -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
----------

3
web_tree_many2one_clickable/__openerp__.py → web_tree_many2one_clickable/__manifest__.py

@ -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, "

4
web_tree_many2one_clickable/static/src/js/web_tree_many2one_clickable.js

@ -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…
Cancel
Save