Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[16.0] [MIG] cmis_web_report_write - Migration to 16.0 #180

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,
)
Loading