diff --git a/invoice_format_editor/README.rst b/invoice_format_editor/README.rst new file mode 100644 index 000000000..dc8d26ca6 --- /dev/null +++ b/invoice_format_editor/README.rst @@ -0,0 +1,52 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Invoice Format Editor +===================== +* The module assists in customizing invoice layouts in Odoo 16. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License v3.0 (AGPL v3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: + (V14) - Sonu@cybrosys, Dino@cybrosys, Contact: odoo@cybrosys.com + (V15) - Midilaj V K, Contact: odoo@cybrosys.com + (V16) - Jumana Jabin MK, Contact: odoo@cybrosys.com + (V17) - Ajith V, Contact: odoo@cybrosys.com + (v18) - Busthana, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ + diff --git a/invoice_format_editor/__init__.py b/invoice_format_editor/__init__.py new file mode 100644 index 000000000..d96aecdec --- /dev/null +++ b/invoice_format_editor/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/invoice_format_editor/__manifest__.py b/invoice_format_editor/__manifest__.py new file mode 100644 index 000000000..cb0acab59 --- /dev/null +++ b/invoice_format_editor/__manifest__.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Invoice Format Editor', + 'version': '18.0.1.0.0', + 'category': 'Accounting', + 'summary': 'Invoice Report, Report Editor, Customise Invoice Report, ' + 'Invoice Report Templates, Account Reports, Odoo18, ' + 'Odoo Apps, Report Templates, Odoo17, Odoo Apps', + 'description': """Invoice Format Editor For Configuring the Invoice Templates""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['account', 'web', 'sale_management'], + 'data': ['security/ir.model.access.csv', + 'data/design_templates.xml', + 'data/normal_preview_templates.xml', + 'data/modern_preview_templates.xml', + 'data/old_standard_preview_templates.xml', + 'views/doc_layout_views.xml', + 'views/base_document_layout_views.xml', + 'views/custom_external_layout_templates.xml', + 'reports/normal_invoice_templates.xml', + 'reports/modern_invoice_templates.xml', + 'reports/old_standard_invoice_templates.xml', + 'reports/report_invoice_templates.xml', + 'reports/preview_layout_report_templates.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/invoice_format_editor/data/design_templates.xml b/invoice_format_editor/data/design_templates.xml new file mode 100644 index 000000000..dc9f412f7 --- /dev/null +++ b/invoice_format_editor/data/design_templates.xml @@ -0,0 +1,30 @@ + + + + + + Modern + #732673 + #ffffff + #000000 + #d117d1 + right + right + right + left + #2439d6 + + + Standard + #ff7733 + #ffffff + #000000 + #0c1d75 + left + left + left + right + #17822f + + + diff --git a/invoice_format_editor/data/modern_preview_templates.xml b/invoice_format_editor/data/modern_preview_templates.xml new file mode 100644 index 000000000..e878ce843 --- /dev/null +++ b/invoice_format_editor/data/modern_preview_templates.xml @@ -0,0 +1,309 @@ + + + + + diff --git a/invoice_format_editor/data/normal_preview_templates.xml b/invoice_format_editor/data/normal_preview_templates.xml new file mode 100644 index 000000000..b5319af0d --- /dev/null +++ b/invoice_format_editor/data/normal_preview_templates.xml @@ -0,0 +1,311 @@ + + + + + diff --git a/invoice_format_editor/data/old_standard_preview_templates.xml b/invoice_format_editor/data/old_standard_preview_templates.xml new file mode 100644 index 000000000..31b37ac12 --- /dev/null +++ b/invoice_format_editor/data/old_standard_preview_templates.xml @@ -0,0 +1,310 @@ + + + + + diff --git a/invoice_format_editor/doc/RELEASE_NOTES.md b/invoice_format_editor/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..f74c4c09a --- /dev/null +++ b/invoice_format_editor/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 28.10.2024 +#### Version 18.0.1.0.0 +#### ADD +- Initial commit for Invoice Format Editor diff --git a/invoice_format_editor/models/__init__.py b/invoice_format_editor/models/__init__.py new file mode 100644 index 000000000..52f281de4 --- /dev/null +++ b/invoice_format_editor/models/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import res_company +from . import doc_layout +from . import account_move +from . import base_document_layout diff --git a/invoice_format_editor/models/account_move.py b/invoice_format_editor/models/account_move.py new file mode 100644 index 000000000..d2a85609d --- /dev/null +++ b/invoice_format_editor/models/account_move.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import models, fields + + +class AccountMove(models.Model): + """Inheriting the account move model and added the base layout model and + a relational field to doc layout model""" + _inherit = 'account.move' + + base_layout = fields.Selection( + selection=[('default', 'Default'), + ('modern', 'Modern'), + ('normal', 'Normal'), + ('old', 'Old Standard')], + required=True, + string="Invoice Document Layout", + default="default", help="The invoice document layout selection field") + theme_id = fields.Many2one( + 'doc.layout', + related='company_id.document_layout_id', string="Theme", + help="The relational field for document layout") diff --git a/invoice_format_editor/models/base_document_layout.py b/invoice_format_editor/models/base_document_layout.py new file mode 100644 index 000000000..c613cc4a9 --- /dev/null +++ b/invoice_format_editor/models/base_document_layout.py @@ -0,0 +1,78 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, models, fields + + +class BaseDocumentLayout(models.TransientModel): + """Inheriting the base document layout model""" + _inherit = 'base.document.layout' + + base_layout = fields.Selection( + related='company_id.base_layout', + readonly=False, + help="Base layout selection field inside " + "document layout model") + document_layout_id = fields.Many2one( + related='company_id.document_layout_id', readonly=False, + help="custom document layouts") + + @api.depends('report_layout_id', 'logo', 'font', 'primary_color', + 'secondary_color', 'report_header', 'report_footer', + 'base_layout', 'document_layout_id') + def _compute_preview(self): + """ compute a qweb based preview to display on the wizard """ + styles = self._get_asset_style() + for wizard in self: + if wizard.report_layout_id: + if wizard.base_layout == 'default': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'web.report_invoice_wizard_preview', + {'company': wizard, 'preview_css': preview_css}) + elif wizard.base_layout == 'normal': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'invoice_format_editor.report_preview_normal', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.base_layout == 'modern': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'invoice_format_editor.report_preview_modern', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.base_layout == 'old': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'invoice_format_editor.report_preview_old', + {'company': wizard, 'preview_css': preview_css, }) + else: + wizard.preview = False + else: + wizard.preview = False + + @api.onchange('paperformat_id') + def _onchange_paperformat_id(self): + if self.paperformat_id.id == 3: + self.base_layout = 'default' diff --git a/invoice_format_editor/models/doc_layout.py b/invoice_format_editor/models/doc_layout.py new file mode 100644 index 000000000..470672709 --- /dev/null +++ b/invoice_format_editor/models/doc_layout.py @@ -0,0 +1,75 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import models, fields + + +class AddDocumentTemplate(models.Model): + """Doc layout model""" + _name = "doc.layout" + _description = 'Adding the fields for customization' + _rec_name = 'name' + + name = fields.Char(string="Name", help="The name of the document layout") + base_color = fields.Char(string="Base Color", + help="Background color for the invoice") + heading_text_color = fields.Char(string="Heading text Color", + help="Heading Text color") + text_color = fields.Char(string="Text Color", + help="Text color of items") + customer_text_color = fields.Char(string="Customer Text Color", + help="Customer address text color") + company_text_color = fields.Char(string="Company Text Color", + help="Company address Text color") + logo_position = fields.Selection( + selection=[('left', 'Left'), ('right', 'Right')], + string="Logo Position", + help="Company logo position") + tagline_position = fields.Selection( + selection=[('left', 'Left'), ('right', 'Right')], + string="Tagline Position", + help="Company Tagline position") + customer_position = fields.Selection( + selection=[('left', 'Left'), ('right', 'Right')], + string="Customer position", + help="Customer address position") + company_position = fields.Selection( + selection=[('left', 'Left'), ('right', 'Right')], + string="Company Address Position", + help="Company address position") + sales_person = fields.Boolean(string='Sales person', default=True, + help="Sales Person of the layout") + description = fields.Boolean(string='Description', default=True, + help="Description of the layout") + tax_value = fields.Boolean(string='Tax', default=True, + help="Tax of the layout") + reference = fields.Boolean(string='Customer Reference', default=True, + help="Customer Reference") + source = fields.Boolean(string='Source', default=False, + help="Source Document of the layout") + address = fields.Boolean(string='Address', default=True, + help="Address of the document layout") + city = fields.Boolean(string='City', default=True, + help="City of the document layout") + country = fields.Boolean(string='Country', default=True, + help="Country of the document layout") + vat = fields.Boolean(string='VAT', default=True, + help='Customer vat id') diff --git a/invoice_format_editor/models/res_company.py b/invoice_format_editor/models/res_company.py new file mode 100644 index 000000000..fea40fbe1 --- /dev/null +++ b/invoice_format_editor/models/res_company.py @@ -0,0 +1,38 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import models, fields + + +class ResCompany(models.Model): + """Inheriting the res company model""" + _inherit = 'res.company' + + base_layout = fields.Selection( + selection=[('default', 'Default'), + ('modern', 'Modern'), + ('normal', 'Normal'), + ('old', 'Old Standard')], + required=True, string="Invoice Document Layout", default="default", + help="base layout selection") + document_layout_id = fields.Many2one("doc.layout", + string="Invoice Layout Configuration", + help="Invoice layout configuration") diff --git a/invoice_format_editor/reports/modern_invoice_templates.xml b/invoice_format_editor/reports/modern_invoice_templates.xml new file mode 100644 index 000000000..0863da3aa --- /dev/null +++ b/invoice_format_editor/reports/modern_invoice_templates.xml @@ -0,0 +1,471 @@ + + + + + diff --git a/invoice_format_editor/reports/normal_invoice_templates.xml b/invoice_format_editor/reports/normal_invoice_templates.xml new file mode 100644 index 000000000..8b1aa5b20 --- /dev/null +++ b/invoice_format_editor/reports/normal_invoice_templates.xml @@ -0,0 +1,468 @@ + + + + + diff --git a/invoice_format_editor/reports/old_standard_invoice_templates.xml b/invoice_format_editor/reports/old_standard_invoice_templates.xml new file mode 100644 index 000000000..4d0fb2de3 --- /dev/null +++ b/invoice_format_editor/reports/old_standard_invoice_templates.xml @@ -0,0 +1,467 @@ + + + + + diff --git a/invoice_format_editor/reports/preview_layout_report_templates.xml b/invoice_format_editor/reports/preview_layout_report_templates.xml new file mode 100644 index 000000000..1340bfc24 --- /dev/null +++ b/invoice_format_editor/reports/preview_layout_report_templates.xml @@ -0,0 +1,22 @@ + + + + diff --git a/invoice_format_editor/reports/report_invoice_templates.xml b/invoice_format_editor/reports/report_invoice_templates.xml new file mode 100644 index 000000000..cf0bf8cbc --- /dev/null +++ b/invoice_format_editor/reports/report_invoice_templates.xml @@ -0,0 +1,30 @@ + + + + + diff --git a/invoice_format_editor/security/ir.model.access.csv b/invoice_format_editor/security/ir.model.access.csv new file mode 100644 index 000000000..f306374a0 --- /dev/null +++ b/invoice_format_editor/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_doc_layout,access.doc.layout,model_doc_layout,base.group_user,1,1,1,1 diff --git a/invoice_format_editor/static/description/assets/cybro-icon.png b/invoice_format_editor/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/invoice_format_editor/static/description/assets/cybro-icon.png differ diff --git a/invoice_format_editor/static/description/assets/cybro-odoo.png b/invoice_format_editor/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/invoice_format_editor/static/description/assets/cybro-odoo.png differ diff --git a/invoice_format_editor/static/description/assets/h2.png b/invoice_format_editor/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/invoice_format_editor/static/description/assets/h2.png differ diff --git a/invoice_format_editor/static/description/assets/icons/arrows-repeat.svg b/invoice_format_editor/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/banner-1.png b/invoice_format_editor/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/banner-1.png differ diff --git a/invoice_format_editor/static/description/assets/icons/banner-2.svg b/invoice_format_editor/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/banner-bg.png b/invoice_format_editor/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/banner-bg.png differ diff --git a/invoice_format_editor/static/description/assets/icons/banner-bg.svg b/invoice_format_editor/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/banner-call.svg b/invoice_format_editor/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/banner-mail.svg b/invoice_format_editor/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/banner-pattern.svg b/invoice_format_editor/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/banner-promo.svg b/invoice_format_editor/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/brand-pair.svg b/invoice_format_editor/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/capture (1).png b/invoice_format_editor/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/capture (1).png differ diff --git a/invoice_format_editor/static/description/assets/icons/check.png b/invoice_format_editor/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/check.png differ diff --git a/invoice_format_editor/static/description/assets/icons/chevron.png b/invoice_format_editor/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/chevron.png differ diff --git a/invoice_format_editor/static/description/assets/icons/close-icon.svg b/invoice_format_editor/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/cogs.png b/invoice_format_editor/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/cogs.png differ diff --git a/invoice_format_editor/static/description/assets/icons/collabarate-icon.svg b/invoice_format_editor/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/invoice_format_editor/static/description/assets/icons/consultation.png b/invoice_format_editor/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/consultation.png differ diff --git a/invoice_format_editor/static/description/assets/icons/cybro-logo.png b/invoice_format_editor/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/cybro-logo.png differ diff --git a/invoice_format_editor/static/description/assets/icons/down.svg b/invoice_format_editor/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/invoice_format_editor/static/description/assets/icons/ecom-black.png b/invoice_format_editor/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/ecom-black.png differ diff --git a/invoice_format_editor/static/description/assets/icons/education-black.png b/invoice_format_editor/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/education-black.png differ diff --git a/invoice_format_editor/static/description/assets/icons/faq.png b/invoice_format_editor/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/faq.png differ diff --git a/invoice_format_editor/static/description/assets/icons/feature-icon.svg b/invoice_format_editor/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/feature.png b/invoice_format_editor/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/feature.png differ diff --git a/invoice_format_editor/static/description/assets/icons/gear.svg b/invoice_format_editor/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/hero.gif b/invoice_format_editor/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..380654dfe Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/hero.gif differ diff --git a/invoice_format_editor/static/description/assets/icons/hire-odoo.svg b/invoice_format_editor/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/hotel-black.png b/invoice_format_editor/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/hotel-black.png differ diff --git a/invoice_format_editor/static/description/assets/icons/img.png b/invoice_format_editor/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/img.png differ diff --git a/invoice_format_editor/static/description/assets/icons/license.png b/invoice_format_editor/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/license.png differ diff --git a/invoice_format_editor/static/description/assets/icons/life-ring-icon.svg b/invoice_format_editor/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/lifebuoy.png b/invoice_format_editor/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/lifebuoy.png differ diff --git a/invoice_format_editor/static/description/assets/icons/mail.svg b/invoice_format_editor/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/invoice_format_editor/static/description/assets/icons/manufacturing-black.png b/invoice_format_editor/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/manufacturing-black.png differ diff --git a/invoice_format_editor/static/description/assets/icons/notes.png b/invoice_format_editor/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/notes.png differ diff --git a/invoice_format_editor/static/description/assets/icons/notification icon.svg b/invoice_format_editor/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/odoo-consultancy.svg b/invoice_format_editor/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/invoice_format_editor/static/description/assets/icons/odoo-licencing.svg b/invoice_format_editor/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/invoice_format_editor/static/description/assets/icons/odoo-logo.png b/invoice_format_editor/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/odoo-logo.png differ diff --git a/invoice_format_editor/static/description/assets/icons/patter.svg b/invoice_format_editor/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/pattern1.png b/invoice_format_editor/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/pattern1.png differ diff --git a/invoice_format_editor/static/description/assets/icons/photo-capture.png b/invoice_format_editor/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/photo-capture.png differ diff --git a/invoice_format_editor/static/description/assets/icons/pos-black.png b/invoice_format_editor/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/pos-black.png differ diff --git a/invoice_format_editor/static/description/assets/icons/puzzle-piece-icon.svg b/invoice_format_editor/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/puzzle.png b/invoice_format_editor/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/puzzle.png differ diff --git a/invoice_format_editor/static/description/assets/icons/replace-icon.svg b/invoice_format_editor/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/restaurant-black.png b/invoice_format_editor/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/restaurant-black.png differ diff --git a/invoice_format_editor/static/description/assets/icons/screenshot-main.png b/invoice_format_editor/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/screenshot-main.png differ diff --git a/invoice_format_editor/static/description/assets/icons/screenshot.png b/invoice_format_editor/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/screenshot.png differ diff --git a/invoice_format_editor/static/description/assets/icons/service-black.png b/invoice_format_editor/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/service-black.png differ diff --git a/invoice_format_editor/static/description/assets/icons/skype-fill.svg b/invoice_format_editor/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/skype.png b/invoice_format_editor/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/skype.png differ diff --git a/invoice_format_editor/static/description/assets/icons/skype.svg b/invoice_format_editor/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/invoice_format_editor/static/description/assets/icons/star-1.svg b/invoice_format_editor/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/star-2.svg b/invoice_format_editor/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/support.png b/invoice_format_editor/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/support.png differ diff --git a/invoice_format_editor/static/description/assets/icons/test-1 - Copy.png b/invoice_format_editor/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/test-1 - Copy.png differ diff --git a/invoice_format_editor/static/description/assets/icons/test-1.png b/invoice_format_editor/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/test-1.png differ diff --git a/invoice_format_editor/static/description/assets/icons/test-2.png b/invoice_format_editor/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/test-2.png differ diff --git a/invoice_format_editor/static/description/assets/icons/trading-black.png b/invoice_format_editor/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/trading-black.png differ diff --git a/invoice_format_editor/static/description/assets/icons/training.png b/invoice_format_editor/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/training.png differ diff --git a/invoice_format_editor/static/description/assets/icons/translate.svg b/invoice_format_editor/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/update.png b/invoice_format_editor/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/update.png differ diff --git a/invoice_format_editor/static/description/assets/icons/user.png b/invoice_format_editor/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/user.png differ diff --git a/invoice_format_editor/static/description/assets/icons/video.png b/invoice_format_editor/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/video.png differ diff --git a/invoice_format_editor/static/description/assets/icons/whatsapp.png b/invoice_format_editor/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/whatsapp.png differ diff --git a/invoice_format_editor/static/description/assets/icons/wrench-icon.svg b/invoice_format_editor/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/invoice_format_editor/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/icons/wrench.png b/invoice_format_editor/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/invoice_format_editor/static/description/assets/icons/wrench.png differ diff --git a/invoice_format_editor/static/description/assets/misc/Cybrosys R.png b/invoice_format_editor/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/invoice_format_editor/static/description/assets/misc/Cybrosys R.png differ diff --git a/invoice_format_editor/static/description/assets/misc/email.svg b/invoice_format_editor/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/invoice_format_editor/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/misc/phone.svg b/invoice_format_editor/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/invoice_format_editor/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/invoice_format_editor/static/description/assets/misc/star (1) 2.svg b/invoice_format_editor/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/invoice_format_editor/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/misc/support (1) 1.svg b/invoice_format_editor/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/invoice_format_editor/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/misc/support-email.svg b/invoice_format_editor/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/invoice_format_editor/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/invoice_format_editor/static/description/assets/misc/tick-mark.svg b/invoice_format_editor/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/invoice_format_editor/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/misc/whatsapp 1.svg b/invoice_format_editor/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/invoice_format_editor/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/misc/whatsapp.svg b/invoice_format_editor/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/invoice_format_editor/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/invoice_format_editor/static/description/assets/modules/1.gif b/invoice_format_editor/static/description/assets/modules/1.gif new file mode 100644 index 000000000..ae3a880a2 Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/1.gif differ diff --git a/invoice_format_editor/static/description/assets/modules/1.png b/invoice_format_editor/static/description/assets/modules/1.png new file mode 100644 index 000000000..29bcb6544 Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/1.png differ diff --git a/invoice_format_editor/static/description/assets/modules/2.gif b/invoice_format_editor/static/description/assets/modules/2.gif new file mode 100644 index 000000000..d19e2b352 Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/2.gif differ diff --git a/invoice_format_editor/static/description/assets/modules/2.png b/invoice_format_editor/static/description/assets/modules/2.png new file mode 100644 index 000000000..7b0ac4b33 Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/2.png differ diff --git a/invoice_format_editor/static/description/assets/modules/3.png b/invoice_format_editor/static/description/assets/modules/3.png new file mode 100644 index 000000000..8513873ea Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/3.png differ diff --git a/invoice_format_editor/static/description/assets/modules/4.jpg b/invoice_format_editor/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..089a516a6 Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/4.jpg differ diff --git a/invoice_format_editor/static/description/assets/modules/4.png b/invoice_format_editor/static/description/assets/modules/4.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/4.png differ diff --git a/invoice_format_editor/static/description/assets/modules/5.png b/invoice_format_editor/static/description/assets/modules/5.png new file mode 100644 index 000000000..0e311ca87 Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/5.png differ diff --git a/invoice_format_editor/static/description/assets/modules/6.jpg b/invoice_format_editor/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/6.jpg differ diff --git a/invoice_format_editor/static/description/assets/modules/6.png b/invoice_format_editor/static/description/assets/modules/6.png new file mode 100644 index 000000000..cc9d84fac Binary files /dev/null and b/invoice_format_editor/static/description/assets/modules/6.png differ diff --git a/invoice_format_editor/static/description/assets/screenshots/hero.gif b/invoice_format_editor/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..133f6f26c Binary files /dev/null and b/invoice_format_editor/static/description/assets/screenshots/hero.gif differ diff --git a/invoice_format_editor/static/description/assets/screenshots/inv1.png b/invoice_format_editor/static/description/assets/screenshots/inv1.png new file mode 100644 index 000000000..b273cc791 Binary files /dev/null and b/invoice_format_editor/static/description/assets/screenshots/inv1.png differ diff --git a/invoice_format_editor/static/description/assets/screenshots/inv2.png b/invoice_format_editor/static/description/assets/screenshots/inv2.png new file mode 100644 index 000000000..7f5111e5a Binary files /dev/null and b/invoice_format_editor/static/description/assets/screenshots/inv2.png differ diff --git a/invoice_format_editor/static/description/assets/screenshots/inv3.png b/invoice_format_editor/static/description/assets/screenshots/inv3.png new file mode 100644 index 000000000..9da70242f Binary files /dev/null and b/invoice_format_editor/static/description/assets/screenshots/inv3.png differ diff --git a/invoice_format_editor/static/description/assets/screenshots/inv4.png b/invoice_format_editor/static/description/assets/screenshots/inv4.png new file mode 100644 index 000000000..9a37cbf27 Binary files /dev/null and b/invoice_format_editor/static/description/assets/screenshots/inv4.png differ diff --git a/invoice_format_editor/static/description/assets/screenshots/inv5.png b/invoice_format_editor/static/description/assets/screenshots/inv5.png new file mode 100644 index 000000000..d1f56bc52 Binary files /dev/null and b/invoice_format_editor/static/description/assets/screenshots/inv5.png differ diff --git a/invoice_format_editor/static/description/assets/screenshots/inv6.png b/invoice_format_editor/static/description/assets/screenshots/inv6.png new file mode 100644 index 000000000..f2c40ce58 Binary files /dev/null and b/invoice_format_editor/static/description/assets/screenshots/inv6.png differ diff --git a/invoice_format_editor/static/description/assets/y18.jpg b/invoice_format_editor/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/invoice_format_editor/static/description/assets/y18.jpg differ diff --git a/invoice_format_editor/static/description/banner.jpg b/invoice_format_editor/static/description/banner.jpg new file mode 100644 index 000000000..0178d2964 Binary files /dev/null and b/invoice_format_editor/static/description/banner.jpg differ diff --git a/invoice_format_editor/static/description/icon.png b/invoice_format_editor/static/description/icon.png new file mode 100644 index 000000000..7e50ed1b2 Binary files /dev/null and b/invoice_format_editor/static/description/icon.png differ diff --git a/invoice_format_editor/static/description/index.html b/invoice_format_editor/static/description/index.html new file mode 100644 index 000000000..b8c2dfe6f --- /dev/null +++ b/invoice_format_editor/static/description/index.html @@ -0,0 +1,944 @@ + + + + + + Invoice Format Editor + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ A Module For Configuring the Invoice Templates +

+

Invoice Format Editor +

+
+
+ +
+ +
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+

Key + Highlights

+
+
+
+
+ +
+
+ Configure the layout +
+

+ Configure the + layout for the invoice.

+
+
+
+
+
+ +
+
+ Configure the position of fields +
+

+ Configure the + position of fields in the invoice report. +

+
+
+
+
+
+ +
+
+ Hide option for the invoice fields +
+

+ You can hide + the invoice fields from the report. +

+
+
+
+
+
+ +
+
+ Edit the theme +
+

+ You can + customize the theme for the report.

+
+
+
+
+ +
+
+
+ Invoice Format Editor +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ Document layout configuration + +

+
+
+

+ From Document layout configuration in + settings, user can select and configure the + invoice document layout +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Invoice Layout + + Configuration +

+
+
+

+ User can configure the text positions, text + colors and invoice fields. +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Print + + Invoice +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Normal Template + +

+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Modern Template + +

+
+
+
+
+ +
+
+
+
+
+
+
+
+
+

+ Old Standard Template + + +

+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+

+ Configure the layout

+
+ +
+
+
+
+
+
+ +
+

+ Configure the + position of fields

+
+
+
+
+
+
+
+ +
+

+ Hide option for + the invoice fields

+
+ + +
+
+
+
+
+
+ +
+

+ Edit the theme

+
+
+
+
+
+
+ +
+
+

+ Latest Release 18.0.1.0.0 +

+ + 28th October, 2024 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+ + + + + + + diff --git a/invoice_format_editor/views/base_document_layout_views.xml b/invoice_format_editor/views/base_document_layout_views.xml new file mode 100644 index 000000000..2a2f999a1 --- /dev/null +++ b/invoice_format_editor/views/base_document_layout_views.xml @@ -0,0 +1,17 @@ + + + + + base.layout.new + base.document.layout + + + + + + + + + diff --git a/invoice_format_editor/views/custom_external_layout_templates.xml b/invoice_format_editor/views/custom_external_layout_templates.xml new file mode 100644 index 000000000..177e9030f --- /dev/null +++ b/invoice_format_editor/views/custom_external_layout_templates.xml @@ -0,0 +1,356 @@ + + + + + + + + + + + + + + + + + + diff --git a/invoice_format_editor/views/doc_layout_views.xml b/invoice_format_editor/views/doc_layout_views.xml new file mode 100644 index 000000000..d48245edb --- /dev/null +++ b/invoice_format_editor/views/doc_layout_views.xml @@ -0,0 +1,60 @@ + + + + + document.custom.layout + doc.layout + +
+ +
+

+ +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+