mirror of https://github.com/OCA/web.git
[MIG] web_sheet_full_width: migration to 11.0.
parent
07d6107906
commit
f3acb6dc25
|
@ -2,14 +2,12 @@
|
||||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||||
:alt: License: AGPL-3
|
:alt: License: AGPL-3
|
||||||
|
|
||||||
====================
|
=============================
|
||||||
web_sheet_full_width
|
Form view sheet at full width
|
||||||
====================
|
=============================
|
||||||
|
|
||||||
This module was written to extend the functionality of web to support full width
|
This module was written to extend the functionality of the web client
|
||||||
for form view
|
to get full width in the form view sheet.
|
||||||
|
|
||||||
Note: Due to licence incompatibility you have not legal right to install this module on enterprise version.
|
|
||||||
|
|
||||||
This module works in community edition and in enterprise edition.
|
This module works in community edition and in enterprise edition.
|
||||||
|
|
||||||
|
@ -18,12 +16,7 @@ Usage
|
||||||
|
|
||||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||||
:alt: Try me on Runbot
|
:alt: Try me on Runbot
|
||||||
:target: https://runbot.odoo-community.org/runbot/162/10.0
|
:target: https://runbot.odoo-community.org/runbot/162/11.0
|
||||||
|
|
||||||
Known issues / Roadmap
|
|
||||||
======================
|
|
||||||
|
|
||||||
* N/A
|
|
||||||
|
|
||||||
Bug Tracker
|
Bug Tracker
|
||||||
===========
|
===========
|
||||||
|
@ -49,7 +42,8 @@ Contributors
|
||||||
* Holger Brunn <hbrunn@therp.nl>
|
* Holger Brunn <hbrunn@therp.nl>
|
||||||
* Nicolas JEUDY - Sudokeys (https://github.com/njeudy)
|
* Nicolas JEUDY - Sudokeys (https://github.com/njeudy)
|
||||||
* Stephane (SOLIBRE) <stephane@omerp.net>
|
* Stephane (SOLIBRE) <stephane@omerp.net>
|
||||||
* Sylvain LE GAL (https://twitter.com/legalsylvain)
|
* Sylvain LE GAL (https://twitter.com/legalsylvain
|
||||||
|
* Jérôme Thériault <jtheriault@metalsartigan.com>
|
||||||
|
|
||||||
Maintainer
|
Maintainer
|
||||||
----------
|
----------
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Copyright (C) 2014 Therp BV (<http://therp.nl>)
|
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||||
{
|
{
|
||||||
"name": "Show sheets with full width",
|
"name": "Show sheets with full width",
|
||||||
"version": "10.0.1.0.1",
|
"version": "11.0.1.0.1",
|
||||||
"author": "Therp BV,Sudokeys,GRAP,Odoo Community Association (OCA)",
|
"author": "Therp BV, Sudokeys, GRAP, Métal Sartigan, Odoo Community Association (OCA)",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"summary": "Use the whole available screen width when displaying sheets",
|
"summary": "Use the whole available screen width when displaying sheets",
|
||||||
"category": "Tools",
|
"category": "Tools",
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<odoo>
|
||||||
|
<template id="assets_backend" name="web_sheet_full_width" inherit_id="web.assets_backend">
|
||||||
|
<xpath expr="." position="inside">
|
||||||
|
<link rel="stylesheet" href="/web_sheet_full_width/static/src/css/web_sheet_full_width.less" />
|
||||||
|
</xpath>
|
||||||
|
</template>
|
||||||
|
</odoo>
|
|
@ -1,10 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<openerp>
|
|
||||||
<data>
|
|
||||||
<template id="assets_backend" name="web_sheet_full_width" inherit_id="web.assets_backend">
|
|
||||||
<xpath expr="." position="inside">
|
|
||||||
<link rel="stylesheet" href="/web_sheet_full_width/static/src/css/web_sheet_full_width.less"/>
|
|
||||||
</xpath>
|
|
||||||
</template>
|
|
||||||
</data>
|
|
||||||
</openerp>
|
|
Loading…
Reference in New Issue