Stefan Rijnhart
7 years ago
5 changed files with 91 additions and 70 deletions
-
53web_ir_actions_act_window_page/README.md
-
39web_ir_actions_act_window_page/__manifest__.py
-
45web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js
-
13web_ir_actions_act_window_page/view/qweb.xml
-
11web_ir_actions_act_window_page/views/assets.xml
@ -1,31 +1,20 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# OpenERP, Open Source Management Solution |
|||
# This module copyright (C) 2013-2015 Therp BV (<http://therp.nl>). |
|||
# |
|||
# This program is free software: you can redistribute it and/or modify |
|||
# it under the terms of the GNU Affero General Public License as |
|||
# published by the Free Software Foundation, either version 3 of the |
|||
# License, or (at your option) any later version. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU Affero General Public License for more details. |
|||
# |
|||
# You should have received a copy of the GNU Affero General Public License |
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################## |
|||
# coding: utf-8 |
|||
# © 2013-2015 Therp BV (<http://therp.nl>) |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) |
|||
{ |
|||
"name": "Window actions for client side paging", |
|||
"summary": ("Allows a developer to trigger a pager to show the previous " |
|||
"or next next record in the form view"), |
|||
"version": "8.0.1.0.0", |
|||
"author": "Therp BV,Odoo Community Association (OCA)", |
|||
"category": "Dependency", |
|||
"depends": ['web'], |
|||
'data': ['view/qweb.xml'], |
|||
'installable': False, |
|||
"version": "10.0.1.0.0", |
|||
"category": "Technical", |
|||
"depends": [ |
|||
'web', |
|||
], |
|||
'data': [ |
|||
'views/assets.xml', |
|||
], |
|||
'installable': True, |
|||
'license': 'AGPL-3', |
|||
'url': 'https://github.com/oca/web', |
|||
} |
@ -1,13 +0,0 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<openerp> |
|||
<data> |
|||
<template id="assets_backend" |
|||
name="web_ir_actions_act_window_page assets" |
|||
inherit_id="web.assets_backend"> |
|||
<xpath expr="." position="inside"> |
|||
<script type="text/javascript" |
|||
src="/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js"></script> |
|||
</xpath> |
|||
</template> |
|||
</data> |
|||
</openerp> |
@ -0,0 +1,11 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<odoo> |
|||
<template id="assets_backend" |
|||
name="web_ir_actions_act_window_page assets" |
|||
inherit_id="web.assets_backend"> |
|||
<xpath expr="." position="inside"> |
|||
<script type="text/javascript" |
|||
src="/web_ir_actions_act_window_page/static/src/js/web_ir_actions_act_window_page.js"></script> |
|||
</xpath> |
|||
</template> |
|||
</odoo> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue