odoo-addon-html-fields-document-layout-configuration 16.0.1.0.0.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,68 @@
1
+ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
2
+ :target: http://www.gnu.org/licenses/agpl
3
+ :alt: License: AGPL-3
4
+
5
+ ============================================
6
+ Html fields in document layout configuration
7
+ ============================================
8
+
9
+ This module allows you to edit the HTML fields of the base document configuration using the HTML widget.
10
+
11
+ Installation
12
+ ============
13
+
14
+ To install this module, you need to:
15
+
16
+ 1. Install the module via Odoo's app interface or by placing it in your addons directory.
17
+
18
+ Configuration
19
+ =============
20
+
21
+ To configure this module, you need to:
22
+
23
+ 1. Follow the instructions in the module documentation.
24
+
25
+ Usage
26
+ =====
27
+
28
+ In the form view of "Configure Document Layout," click on the `</>` button to enable or disable the HTML widget in the HTML fields.
29
+
30
+ ROADMAP
31
+ =======
32
+
33
+ There is a bug that prevents refreshing the view automatically from the HTML widget.
34
+ To fix it:
35
+
36
+ 1. Edit the field using the HTML widget.
37
+ 2. Switch back to the plain text view (without the HTML widget).
38
+ 3. Insert any character into the field.
39
+ 4. Exit the field.
40
+
41
+ Bug Tracker
42
+ ===========
43
+
44
+ Bugs and errors are managed in the `GitHub issues tracker <https://github.com/sygel/sy-server-backend/issues>`_.
45
+ In case of problems, please check if your problem has already been reported. If you are the first to discover it, help us solve it by providing a detailed description `here <https://github.com/sygel/sy-server-backend/issues/new>`_.
46
+
47
+ Do not contact contributors directly about support or technical issues.
48
+
49
+ Credits
50
+ =======
51
+
52
+ Authors
53
+ -------
54
+
55
+ * Sygel, Odoo Community Association (OCA)
56
+
57
+ Contributors
58
+ ------------
59
+
60
+ * Angel Garcia de la Chica Herrera <angel.garcia@sygel.es>
61
+
62
+ Maintainer
63
+ ----------
64
+
65
+ This module is maintained by Sygel.
66
+
67
+ This module is part of the `Sygel/sy-server-backend <https://github.com/sygel-technology/sy-server-backend>`_.
68
+ To contribute to this module, please visit https://github.com/sygel-technology.
@@ -0,0 +1 @@
1
+ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
@@ -0,0 +1,21 @@
1
+ # Copyright 2022 Angel Garcia de la Chica Herrera <angel.garcia@sygel.es>
2
+ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3
+
4
+ {
5
+ "name": "Html fields in document layout configuration",
6
+ "summary": "Html fields in document layout configuration",
7
+ "version": "16.0.1.0.0",
8
+ "category": "Custom",
9
+ "website": "https://github.com/sygel-technology/sy-server-tools",
10
+ "author": "Sygel, Odoo Community Association (OCA)",
11
+ "license": "AGPL-3",
12
+ "application": False,
13
+ "installable": True,
14
+ "depends": [
15
+ "base",
16
+ "web",
17
+ ],
18
+ "data": [
19
+ "views/view_base_document_layout.xml",
20
+ ],
21
+ }
@@ -0,0 +1,27 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <!-- Copyright 2022 Angel Garcia de la Chica Herrera <angel.garcia@sygel.es>
3
+ License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
4
+ <odoo>
5
+ <record id="html_fields_view_base_document_layout" model="ir.ui.view">
6
+ <field name="name">html.fields.view.base.document.layout</field>
7
+ <field name="model">base.document.layout</field>
8
+ <field name="inherit_id" ref="web.view_base_document_layout" />
9
+ <field name="arch" type="xml">
10
+ <xpath expr="//field[@name='report_header']" position="attributes">
11
+ <attribute name="widget">html</attribute>
12
+ <attribute name="class">oe-bordered-editor</attribute>
13
+ <attribute name="options">{'codeview': true }</attribute>
14
+ </xpath>
15
+ <xpath expr="//field[@name='company_details']" position="attributes">
16
+ <attribute name="widget">html</attribute>
17
+ <attribute name="class">oe-bordered-editor</attribute>
18
+ <attribute name="options">{'codeview': true }</attribute>
19
+ </xpath>
20
+ <xpath expr="//field[@name='report_footer']" position="attributes">
21
+ <attribute name="widget">html</attribute>
22
+ <attribute name="class">oe-bordered-editor</attribute>
23
+ <attribute name="options">{'codeview': true }</attribute>
24
+ </xpath>
25
+ </field>
26
+ </record>
27
+ </odoo>
@@ -0,0 +1,83 @@
1
+ Metadata-Version: 2.1
2
+ Name: odoo-addon-html_fields_document_layout_configuration
3
+ Version: 16.0.1.0.0.1
4
+ Requires-Python: >=3.10
5
+ Requires-Dist: odoo>=16.0a,<16.1dev
6
+ Summary: Html fields in document layout configuration
7
+ Home-page: https://github.com/sygel-technology/sy-server-tools
8
+ License: AGPL-3
9
+ Author: Sygel, Odoo Community Association (OCA)
10
+ Author-email: support@odoo-community.org
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Framework :: Odoo
13
+ Classifier: Framework :: Odoo :: 16.0
14
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
15
+
16
+ .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
17
+ :target: http://www.gnu.org/licenses/agpl
18
+ :alt: License: AGPL-3
19
+
20
+ ============================================
21
+ Html fields in document layout configuration
22
+ ============================================
23
+
24
+ This module allows you to edit the HTML fields of the base document configuration using the HTML widget.
25
+
26
+ Installation
27
+ ============
28
+
29
+ To install this module, you need to:
30
+
31
+ 1. Install the module via Odoo's app interface or by placing it in your addons directory.
32
+
33
+ Configuration
34
+ =============
35
+
36
+ To configure this module, you need to:
37
+
38
+ 1. Follow the instructions in the module documentation.
39
+
40
+ Usage
41
+ =====
42
+
43
+ In the form view of "Configure Document Layout," click on the `</>` button to enable or disable the HTML widget in the HTML fields.
44
+
45
+ ROADMAP
46
+ =======
47
+
48
+ There is a bug that prevents refreshing the view automatically from the HTML widget.
49
+ To fix it:
50
+
51
+ 1. Edit the field using the HTML widget.
52
+ 2. Switch back to the plain text view (without the HTML widget).
53
+ 3. Insert any character into the field.
54
+ 4. Exit the field.
55
+
56
+ Bug Tracker
57
+ ===========
58
+
59
+ Bugs and errors are managed in the `GitHub issues tracker <https://github.com/sygel/sy-server-backend/issues>`_.
60
+ In case of problems, please check if your problem has already been reported. If you are the first to discover it, help us solve it by providing a detailed description `here <https://github.com/sygel/sy-server-backend/issues/new>`_.
61
+
62
+ Do not contact contributors directly about support or technical issues.
63
+
64
+ Credits
65
+ =======
66
+
67
+ Authors
68
+ -------
69
+
70
+ * Sygel, Odoo Community Association (OCA)
71
+
72
+ Contributors
73
+ ------------
74
+
75
+ * Angel Garcia de la Chica Herrera <angel.garcia@sygel.es>
76
+
77
+ Maintainer
78
+ ----------
79
+
80
+ This module is maintained by Sygel.
81
+
82
+ This module is part of the `Sygel/sy-server-backend <https://github.com/sygel-technology/sy-server-backend>`_.
83
+ To contribute to this module, please visit https://github.com/sygel-technology.
@@ -0,0 +1,9 @@
1
+ odoo/addons/html_fields_document_layout_configuration/README.rst,sha256=zPugA70QvrxVnQo4LsR9-N8w4y0PN-NtNJh9X7PWPOM,1950
2
+ odoo/addons/html_fields_document_layout_configuration/__init__.py,sha256=FNlMPDojEQpwvHZlf1L1FiQCxOYOu7R3lMKD6aozhvU,65
3
+ odoo/addons/html_fields_document_layout_configuration/__manifest__.py,sha256=DWH98DhZObxwtN-oO0nVmBMdWkCVJr6xAzHgbOe0w00,648
4
+ odoo/addons/html_fields_document_layout_configuration/static/description/icon.png,sha256=bVbNdnyk7PXHuZ3ye_Aqh1M9tbfPJ5zU5W1VnoO8mBQ,35820
5
+ odoo/addons/html_fields_document_layout_configuration/views/view_base_document_layout.xml,sha256=yOdLqWVbf8s6UF7rudYgZmYOeRVXJio7vHEOYUQ0LBU,1466
6
+ odoo_addon_html_fields_document_layout_configuration-16.0.1.0.0.1.dist-info/METADATA,sha256=32sfa4vqjXCt7O5ghw6d5-oCwjuaNmUw3MwJzAK586c,2523
7
+ odoo_addon_html_fields_document_layout_configuration-16.0.1.0.0.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
8
+ odoo_addon_html_fields_document_layout_configuration-16.0.1.0.0.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
9
+ odoo_addon_html_fields_document_layout_configuration-16.0.1.0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: Whool 1.2
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+