3
0
Fork 0

[MIG] web_widget_many2one_simple: Migration to 15.0

15.0-ocabot-merge-pr-2789-by-pedrobaeza-bump-patch
Thanakrit Pintana 2021-12-01 11:40:32 +07:00 committed by OCA-git-bot
parent 64997e5bda
commit f450546822
4 changed files with 14 additions and 24 deletions

View File

@ -23,7 +23,7 @@ Simple many2one widget
:target: https://runbot.odoo-community.org/runbot/162/14.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
|badge1| |badge2| |badge3| |badge4| |badge5|
This module adds a new widget to many2one fields that allows to link records
without any extra features (no autocomplete and no partial search).
@ -99,6 +99,7 @@ Contributors
* Alexandre D. Díaz
* Foram Shah <foram.shah@initos.com>
* Thanakrit Pintana <thanakrit.p39@gmail.com>
Maintainers
~~~~~~~~~~~
@ -119,7 +120,7 @@ promote its widespread use.
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|maintainer-Tardo|
|maintainer-Tardo|
This module is part of the `OCA/web <https://github.com/OCA/web/tree/14.0/web_widget_many2one_simple>`_ project on GitHub.

View File

@ -3,13 +3,20 @@
{
"name": "Simple many2one widget",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"license": "AGPL-3",
"author": "Tecnativa, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/web",
"depends": ["web"],
"data": ["views/assets.xml"],
"qweb": ["static/src/xml/many2one_simple.xml"],
"installable": True,
"maintainers": ["Tardo"],
"assets": {
"web.assets_backend": [
"web_widget_many2one_simple/static/src/css/many2one_simple.scss",
"web_widget_many2one_simple/static/src/js/many2one_simple_field.js",
],
"web.assets_qweb": [
"web_widget_many2one_simple/static/src/xml/many2one_simple.xml",
],
},
}

View File

@ -3,3 +3,4 @@
* Alexandre D. Díaz
* Foram Shah <foram.shah@initos.com>
* Thanakrit Pintana <thanakrit.p39@gmail.com>

View File

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template
id="assets_backend"
name="Web Widget Many2One Simple Assets"
inherit_id="web.assets_backend"
>
<xpath expr=".">
<link
rel="stylesheet"
href="/web_widget_many2one_simple/static/src/css/many2one_simple.scss"
/>
<script
type="application/javascript"
src="/web_widget_many2one_simple/static/src/js/many2one_simple_field.js"
/>
</xpath>
</template>
</odoo>