odoo-addon-html-fields-document-layout-configuration 15.0.1.0.0.3__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,71 @@
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 it as usual via Odoo Apps or your preferred method.
17
+
18
+ Configuration
19
+ =============
20
+
21
+ No additional configuration is required for this module.
22
+
23
+ Usage
24
+ =====
25
+
26
+ To use this module:
27
+
28
+ 1. 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 known bug that prevents the view from refreshing automatically when using the HTML widget.
34
+ To work around this issue:
35
+
36
+ 1. Edit the content using the HTML widget.
37
+ 2. Switch back to the text view (without the HTML widget).
38
+ 3. Insert any character.
39
+ 4. Exit the field.
40
+
41
+ Bug Tracker
42
+ ===========
43
+
44
+ Bugs and errors are managed in the `issues of GitHub <https://github.com/sygel-technology/sy-server-backend/issues>`_.
45
+ If you encounter any problems, please check if your issue has already been reported.
46
+ If you are the first to discover the issue, help us resolve it by providing a detailed description
47
+ `here <https://github.com/sygel-technology/sy-server-backend/issues/new>`_.
48
+
49
+ Please do not contact contributors directly about support or help with technical issues.
50
+
51
+ Credits
52
+ =======
53
+
54
+ Authors
55
+ -------
56
+
57
+ * Sygel, Odoo Community Association (OCA)
58
+
59
+ Contributors
60
+ ------------
61
+
62
+ * Ángel García de la Chica Herrera <angel.garcia@sygel.es>
63
+
64
+ Maintainer
65
+ ----------
66
+
67
+ This module is maintained by Sygel.
68
+
69
+ This module is part of the `Sygel/sy-server-backend <https://github.com/sygel-technology/sy-server-backend>`_.
70
+
71
+ To contribute to this module, please visit https://github.com/sygel-technology.
@@ -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": "15.0.1.0.0",
8
+ "category": "Custom",
9
+ "website": "https://github.com/sygel-technology/sy-server-backend",
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,86 @@
1
+ Metadata-Version: 2.1
2
+ Name: odoo-addon-html_fields_document_layout_configuration
3
+ Version: 15.0.1.0.0.3
4
+ Summary: Html fields in document layout configuration
5
+ Home-page: https://github.com/sygel-technology/sy-server-backend
6
+ Author: Sygel, Odoo Community Association (OCA)
7
+ Author-email: support@odoo-community.org
8
+ License: AGPL-3
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Framework :: Odoo
11
+ Classifier: Framework :: Odoo :: 15.0
12
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
13
+ Requires-Python: >=3.8
14
+ Requires-Dist: odoo<15.1dev,>=15.0a
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 it as usual via Odoo Apps or your preferred method.
32
+
33
+ Configuration
34
+ =============
35
+
36
+ No additional configuration is required for this module.
37
+
38
+ Usage
39
+ =====
40
+
41
+ To use this module:
42
+
43
+ 1. 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 known bug that prevents the view from refreshing automatically when using the HTML widget.
49
+ To work around this issue:
50
+
51
+ 1. Edit the content using the HTML widget.
52
+ 2. Switch back to the text view (without the HTML widget).
53
+ 3. Insert any character.
54
+ 4. Exit the field.
55
+
56
+ Bug Tracker
57
+ ===========
58
+
59
+ Bugs and errors are managed in the `issues of GitHub <https://github.com/sygel-technology/sy-server-backend/issues>`_.
60
+ If you encounter any problems, please check if your issue has already been reported.
61
+ If you are the first to discover the issue, help us resolve it by providing a detailed description
62
+ `here <https://github.com/sygel-technology/sy-server-backend/issues/new>`_.
63
+
64
+ Please do not contact contributors directly about support or help with technical issues.
65
+
66
+ Credits
67
+ =======
68
+
69
+ Authors
70
+ -------
71
+
72
+ * Sygel, Odoo Community Association (OCA)
73
+
74
+ Contributors
75
+ ------------
76
+
77
+ * Ángel García de la Chica Herrera <angel.garcia@sygel.es>
78
+
79
+ Maintainer
80
+ ----------
81
+
82
+ This module is maintained by Sygel.
83
+
84
+ This module is part of the `Sygel/sy-server-backend <https://github.com/sygel-technology/sy-server-backend>`_.
85
+
86
+ To contribute to this module, please visit https://github.com/sygel-technology.
@@ -0,0 +1,8 @@
1
+ odoo/addons/html_fields_document_layout_configuration/README.rst,sha256=jp96hw-NehkZ9WcQ4uuLPWL6gZd3oOS3nLuJWx9fjDE,1987
2
+ odoo/addons/html_fields_document_layout_configuration/__manifest__.py,sha256=4YFvDrT9t7DDICtAF5NZ5VJiE9swzw8ik1XQ3PLH3kE,650
3
+ odoo/addons/html_fields_document_layout_configuration/static/description/icon.png,sha256=bVbNdnyk7PXHuZ3ye_Aqh1M9tbfPJ5zU5W1VnoO8mBQ,35820
4
+ odoo/addons/html_fields_document_layout_configuration/views/view_base_document_layout.xml,sha256=yOdLqWVbf8s6UF7rudYgZmYOeRVXJio7vHEOYUQ0LBU,1466
5
+ odoo_addon_html_fields_document_layout_configuration-15.0.1.0.0.3.dist-info/METADATA,sha256=TOrKd0_gaGYqB3g6TCu4FDaWgNxfndiBiwyZhJngURg,2561
6
+ odoo_addon_html_fields_document_layout_configuration-15.0.1.0.0.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
7
+ odoo_addon_html_fields_document_layout_configuration-15.0.1.0.0.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
8
+ odoo_addon_html_fields_document_layout_configuration-15.0.1.0.0.3.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.45.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+