Skip to content

Commit

Permalink
Merge pull request #180 from acsone/16.0-mig_cmis_web_report_write_mfr
Browse files Browse the repository at this point in the history
[16.0] [MIG] cmis_web_report_write - Migration to 16.0
  • Loading branch information
FrancoMaxime authored Jun 12, 2024
2 parents da98172 + f7ad972 commit 2f0cdc8
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 5 deletions.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ exclude: |
(?x)
# NOT INSTALLABLE ADDONS
^cmis_web_proxy_alf/|
^cmis_web_report_write/|
^cmis_web_report_write_alf/|
# END NOT INSTALLABLE ADDONS
# Files and folders generated by bots, to avoid loops
Expand Down
7 changes: 5 additions & 2 deletions cmis_web_proxy/views/cmis_backend.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@
<field name="arch" type="xml">
<group name="cmis_right" position="after">
<group name="cmis_proxy_left">
<field name="is_cmis_proxy"/>
<field name="is_cmis_proxy" />
</group>
<group name="cmis_proxy_right">
<field name="apply_odoo_security" attrs="{'invisible': [('is_cmis_proxy', '=', False)]}"/>
<field
name="apply_odoo_security"
attrs="{'invisible': [('is_cmis_proxy', '=', False)]}"
/>
</group>
</group>
</field>
Expand Down
34 changes: 34 additions & 0 deletions cmis_web_report_write/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

=====================
Cmis Web Report Write
=====================

This module notify via the bus when a report is created

Documentation: `alfodoo.org <http://alfodoo.org>`_

Credits
=======

Contributors
------------

* Laurent Mignon <[email protected]>
* Maxime Franco <[email protected]>

Most of the code of the DocumentViewer widget is copied from `Odoo
<https://github.com/odoo/odoo/blob/c1fa3b8ab3dfa1306dbdd3b6dc910405a3357d16
/addons/mail/static/src/js/document_viewer.js>`_


Maintainer
----------

.. image:: https://www.acsone.eu/logo.png
:alt: ACSONE SA/NV
:target: http://www.acsone.eu

This module is maintained by ACSONE SA/NV.
4 changes: 2 additions & 2 deletions cmis_web_report_write/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

{
"name": "Cmis Web Report Write",
"description": """
"summary": """
Notify CMIS web component on report saved into CMIS""",
"version": "16.0.1.0.0",
"license": "AGPL-3",
Expand All @@ -15,5 +15,5 @@
],
"data": [],
"demo": [],
"installable": False,
"installable": True,
}
6 changes: 6 additions & 0 deletions setup/cmis_web_report_write/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

0 comments on commit 2f0cdc8

Please sign in to comment.