diff --git a/bom_structure_in_excel_odoo/README.rst b/bom_structure_in_excel_odoo/README.rst new file mode 100644 index 000000000..d5998d2b7 --- /dev/null +++ b/bom_structure_in_excel_odoo/README.rst @@ -0,0 +1,48 @@ +.. 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 + +BOM Structure & Cost Report in Excel +==================================== +Effortlessly export BOM Structure & Cost Reports to Excel format. + +Configuration +============= +* No additional configuration is needed. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developers: (V17) Anfas Faisal K, + (V18) Aysha Shalin + 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/bom_structure_in_excel_odoo/__init__.py b/bom_structure_in_excel_odoo/__init__.py new file mode 100644 index 000000000..017d811fb --- /dev/null +++ b/bom_structure_in_excel_odoo/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.info) +# +# 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 controllers +from . import models diff --git a/bom_structure_in_excel_odoo/__manifest__.py b/bom_structure_in_excel_odoo/__manifest__.py new file mode 100644 index 000000000..b940a9961 --- /dev/null +++ b/bom_structure_in_excel_odoo/__manifest__.py @@ -0,0 +1,50 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.info) +# +# 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': "BOM Structure & Cost Report in Excel", + 'version': "18.0.1.0.0", + 'category': 'Manufacturing, Warehouse', + 'summary': """Effortlessly export BOM Structure & Cost Reports to Excel + format""", + 'description': """This app enhances your Odoo experience by enabling the + export of "BOM Structure & Cost Reports" to Excel format. It provides a + seamless transition from the standard Odoo PDF report to an Excel file, + offering flexibility in data analysis and presentation.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['stock', 'mrp'], + 'data': [ + 'data/mrp_bom_data.xml', + ], + 'assets': { + 'web.assets_backend': [ + 'bom_structure_in_excel_odoo/static/src/js/action_manager.js', + ] + }, + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/bom_structure_in_excel_odoo/controllers/__init__.py b/bom_structure_in_excel_odoo/controllers/__init__.py new file mode 100644 index 000000000..55bfb7c47 --- /dev/null +++ b/bom_structure_in_excel_odoo/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.info) +# +# 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 bom_structure_in_excel_odoo diff --git a/bom_structure_in_excel_odoo/controllers/bom_structure_in_excel_odoo.py b/bom_structure_in_excel_odoo/controllers/bom_structure_in_excel_odoo.py new file mode 100644 index 000000000..0c52d7e15 --- /dev/null +++ b/bom_structure_in_excel_odoo/controllers/bom_structure_in_excel_odoo.py @@ -0,0 +1,59 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.info) +# +# 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 . +# +############################################################################### +import json +from odoo import http +from odoo.http import content_disposition, request +from odoo.http import serialize_exception as _serialize_exception +from odoo.tools import html_escape + + +class XLSXReportController(http.Controller): + """ XlsxReport generating controller """ + @http.route('/xlsx_reports', type='http', auth='user', methods=['POST'], csrf=False) + def get_report_xlsx(self, model, options, output_format, **kw): + """ Generate an XLSX report based on the provided data and return it as + a response. """ + uid = request.session.uid + report_obj = request.env[model].with_user(uid) + options = json.loads(options) + token = 'dummy-because-api-expects-one' + try: + if output_format == 'xlsx': + response = request.make_response( + None, + headers=[ + ('Content-Type', 'application/vnd.ms-excel'), + ('Content-Disposition', + content_disposition('Sale Excel Report' + '.xlsx')) + ] + ) + report_obj.get_xlsx_report(options, response) + response.set_cookie('fileToken', token) + return response + except Exception as e: + se = _serialize_exception(e) + error = { + 'code': 200, + 'message': 'Odoo Server Error', + 'data': se + } + return request.make_response(html_escape(json.dumps(error))) diff --git a/bom_structure_in_excel_odoo/data/mrp_bom_data.xml b/bom_structure_in_excel_odoo/data/mrp_bom_data.xml new file mode 100644 index 000000000..a9e5918b6 --- /dev/null +++ b/bom_structure_in_excel_odoo/data/mrp_bom_data.xml @@ -0,0 +1,13 @@ + + + + + BOM Structure EXCEL + + + form + report + code + action = records.action_print_bom_structure() + + diff --git a/bom_structure_in_excel_odoo/doc/RELEASE_NOTES.md b/bom_structure_in_excel_odoo/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..20a875b50 --- /dev/null +++ b/bom_structure_in_excel_odoo/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 12.02.2025 +#### Version 18.0.1.0.0 +##### ADD +- Initial commit for BOM Structure & Cost Report in Excel diff --git a/bom_structure_in_excel_odoo/models/__init__.py b/bom_structure_in_excel_odoo/models/__init__.py new file mode 100644 index 000000000..2671f1f7f --- /dev/null +++ b/bom_structure_in_excel_odoo/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.info) +# +# 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 mrp_bom diff --git a/bom_structure_in_excel_odoo/models/mrp_bom.py b/bom_structure_in_excel_odoo/models/mrp_bom.py new file mode 100644 index 000000000..c0d76b241 --- /dev/null +++ b/bom_structure_in_excel_odoo/models/mrp_bom.py @@ -0,0 +1,185 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-TODAY Cybrosys Technologies() +# Author: Aysha Shalin (odoo@cybrosys.info) +# +# 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 . +# +############################################################################## +import io +import json +import xlsxwriter +from odoo import models +from odoo.tools import date_utils +from odoo.tools import json_default + + +class AccountMove(models.Model): + """ Inherits the mrp.bom model """ + _inherit = 'mrp.bom' + + def action_print_bom_structure(self): + """ Generate and export the BOM Structure Report in Excel format """ + bom = self.env['mrp.bom'].browse(self.id) + candidates = bom.product_id or bom.product_tmpl_id.product_variant_ids + quantity = bom.product_qty + for product_variant_id in candidates.ids: + doc = self.env['report.mrp.report_bom_structure']._get_pdf_line( + bom.id, product_id=product_variant_id, + qty=quantity, unfolded=True) + return { + 'type': 'ir.actions.report', + 'data': {'model': 'mrp.bom', + 'options': json.dumps(doc, + default=json_default), + 'output_format': 'xlsx', + 'report_name': 'BoM Structure', + }, + 'report_type': 'xlsx', + } + + def get_xlsx_report(self, data, response): + """ Generate an Excel report with BOM structure and cost """ + output = io.BytesIO() + workbook = xlsxwriter.Workbook(output, {'in_memory': True}) + sheet = workbook.add_worksheet() + # Define cell formats + head = workbook.add_format( + {'align': 'left', 'bold': True, 'font_size': '20px'}) + format3 = workbook.add_format({'font_size': '15px', 'bold': True}) + format4 = workbook.add_format({'font_size': 10}) + format6 = workbook.add_format({'font_size': 10, 'bold': True}) + format7 = workbook.add_format({'font_size': 10, 'font_color': 'green'}) + format8 = workbook.add_format({'font_size': 10, 'font_color': 'red'}) + format9 = workbook.add_format({'font_size': 10, 'font_color': 'yellow'}) + # Check if there are components or lines in the data + if data and data.get('components') or data.get('lines'): + # Merge and format header cells + sheet.merge_range('A1:F2', 'BoM Structure & Cost', head) + sheet.merge_range('A4:Z5', data['name'], format3) + # Merge and format cells for product information + sheet.merge_range('A7:C7', 'Products', format6) + sheet.merge_range('D7:E7', 'Quantity', format6) + sheet.merge_range('F7:G7', 'Unit of Measure', format6) + sheet.merge_range('H7:I7', 'Ready to Produce', format6) + sheet.merge_range('J7:K7', 'Free to Use / On Hand', format6) + sheet.merge_range('L7:M7', 'Availability', format6) + sheet.merge_range('N7:O7', 'Lead Time', format6) + sheet.merge_range('P7:Q7', 'Route', format6) + sheet.merge_range('R7:S7', 'Product Cost', format6) + sheet.merge_range('T7:U7', 'BOM Cost', format6) + row_start = 9 # Starting row for data + currency_symbol = self.env.user.company_id.currency_id.symbol + # Iterate through lines in the data + for index, value in enumerate(data.get('lines')): + # Calculate leading spaces based on the level + if value['level'] != 0: + space_td = ' ' * value['level'] + else: + space_td = ' ' + # Merge and format cells for product name + sheet.merge_range('A8:C8', data['name'], format6) + sheet.merge_range('D8:E8', data['quantity'], format4) + sheet.merge_range(f'A{index + row_start}:C{index + row_start}', + space_td + value['name'], format4) + # Merge and format cells for quantity + sheet.merge_range(f'D{index + row_start}:E{index + row_start}', + value['quantity'], format4) + # Merge and format cells for unit of measure + if 'uom' in value: + sheet.merge_range( + f'F{index + row_start}:G{index + row_start}', + value['uom'], format4) + # Merge and format cells for 'Ready to Produce' + if 'producible_qty' in value: + sheet.merge_range('H8:I8', data['producible_qty'], format4) + sheet.merge_range( + f'H{index + row_start}:I{index + row_start}', + value['producible_qty'], format4) + # Merge and format cells for 'Quantity Available / On Hand' + if 'quantity_available' in value: + quantity_available_on_hand = \ + f"{value['quantity_available']} / {value['quantity_on_hand']}" + sheet.merge_range( + 'J8:K8', f"{data['quantity_available']} / " + f"{data['quantity_on_hand']}", format4) + sheet.merge_range( + f'J{index + row_start}:K{index + row_start}', + quantity_available_on_hand, format4) + # Merge and format cells for 'Availability' + if 'availability_display' in value: + availability_main_text = data['availability_display'] + availability_text = value['availability_display'] + color_format_main = format7 if ( + availability_main_text == 'Available') \ + else ( + format8 if availability_main_text == 'Not Available' + else format9) + color_format = format7 if availability_text == 'Available' \ + else (format8 if availability_text == 'Not Available' + else format9) + sheet.merge_range( + 'L8:M8', availability_main_text, color_format_main) + sheet.merge_range( + f'L{index + row_start}:M{index + row_start}', + availability_text, color_format) + # Merge and format cells for 'Product Cost' + if 'prod_cost' in value: + prod_cost_with_symbol = f"{currency_symbol} {data['prod_cost']} " + sheet.merge_range( + 'R8:S8', prod_cost_with_symbol, format4) + sheet.merge_range( + f'R{index + row_start}:S{index + row_start}', + f"{currency_symbol} {value['prod_cost']}", format4) + # Merge and format cells for 'BOM Cost' + if 'bom_cost' in value: + bom_cost_with_symbol = f" {currency_symbol} {data['bom_cost']}" + sheet.merge_range( + 'T8:U8', bom_cost_with_symbol, format4) + sheet.merge_range( + f'T{index + row_start}:U{index + row_start}', + f" {currency_symbol} {value['bom_cost']}", format4) + # Merge and format cells for 'Route Info' + if 'route_name' in value: + route_info = f"{value['route_name']} {value['route_detail']}" + sheet.merge_range( + f'P{index + row_start}:Q{index + row_start}', + route_info, format4) + # Merge and format cells for 'Lead Time' + if 'lead_time' in value: + lead_time = value['lead_time'] + lead_time_days = f"{int(lead_time)} days" if lead_time != 0.0 else "0 days" + sheet.merge_range( + f'N{index + row_start}:O{index + row_start}', + lead_time_days, format4) + # Check if 'prod_cost' is present in the data dictionary + if 'prod_cost' in data: + prod_cost_with_symbol = f"{currency_symbol} {data['prod_cost']}" + bom_cost_with_symbol = f" {currency_symbol} {data['bom_cost']}" + sheet.merge_range( + f'D{index + row_start + 1}:E{index + row_start + 1}', + 'UnitCost', format6) + sheet.merge_range( + f'T{index + row_start + 1}:U{index + row_start + 1}', + bom_cost_with_symbol, format4) + sheet.merge_range( + f'R{index + row_start + 1}:S{index + row_start + 1}', + prod_cost_with_symbol, format4) + # Close the workbook, seek to the beginning, and stream the output + workbook.close() + output.seek(0) + response.stream.write(output.read()) + output.close() diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/arrows-repeat.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/banner-1.png b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-1.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/banner-2.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/banner-bg.png b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-bg.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/banner-bg.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/banner-call.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/banner-mail.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/banner-pattern.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/banner-promo.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/brand-pair.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/check.png b/bom_structure_in_excel_odoo/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/check.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/chevron.png b/bom_structure_in_excel_odoo/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/chevron.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/close-icon.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/cogs.png b/bom_structure_in_excel_odoo/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/cogs.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/collabarate-icon.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/consultation.png b/bom_structure_in_excel_odoo/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/consultation.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/cybro-logo.png b/bom_structure_in_excel_odoo/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/cybro-logo.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/down.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/ecom-black.png b/bom_structure_in_excel_odoo/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/ecom-black.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/education-black.png b/bom_structure_in_excel_odoo/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/education-black.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/faq.png b/bom_structure_in_excel_odoo/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/faq.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/feature-icon.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/feature.png b/bom_structure_in_excel_odoo/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/feature.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/gear.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/hero.gif b/bom_structure_in_excel_odoo/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..380654dfe Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/hero.gif differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/hire-odoo.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/hotel-black.png b/bom_structure_in_excel_odoo/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/hotel-black.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/license.png b/bom_structure_in_excel_odoo/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/license.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/life-ring-icon.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/lifebuoy.png b/bom_structure_in_excel_odoo/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/lifebuoy.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/mail.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/manufacturing-black.png b/bom_structure_in_excel_odoo/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/manufacturing-black.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/notes.png b/bom_structure_in_excel_odoo/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/notes.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/notification icon.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/odoo-consultancy.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/odoo-licencing.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/odoo-logo.png b/bom_structure_in_excel_odoo/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/odoo-logo.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/patter.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/pattern1.png b/bom_structure_in_excel_odoo/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/pattern1.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/pos-black.png b/bom_structure_in_excel_odoo/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/pos-black.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/puzzle-piece-icon.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/puzzle.png b/bom_structure_in_excel_odoo/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/puzzle.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/replace-icon.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/restaurant-black.png b/bom_structure_in_excel_odoo/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/restaurant-black.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/screenshot-main.png b/bom_structure_in_excel_odoo/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/screenshot-main.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/screenshot.png b/bom_structure_in_excel_odoo/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/screenshot.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/service-black.png b/bom_structure_in_excel_odoo/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/service-black.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/skype-fill.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/skype.png b/bom_structure_in_excel_odoo/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/skype.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/skype.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/star-1.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/star-2.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/support.png b/bom_structure_in_excel_odoo/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/support.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/test-1 - Copy.png b/bom_structure_in_excel_odoo/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/test-1 - Copy.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/test-1.png b/bom_structure_in_excel_odoo/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/test-1.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/test-2.png b/bom_structure_in_excel_odoo/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/test-2.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/trading-black.png b/bom_structure_in_excel_odoo/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/trading-black.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/training.png b/bom_structure_in_excel_odoo/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/training.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/translate.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/update.png b/bom_structure_in_excel_odoo/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/update.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/user.png b/bom_structure_in_excel_odoo/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/user.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/video.png b/bom_structure_in_excel_odoo/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/video.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/whatsapp.png b/bom_structure_in_excel_odoo/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/whatsapp.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/wrench-icon.svg b/bom_structure_in_excel_odoo/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/bom_structure_in_excel_odoo/static/description/assets/icons/wrench.png b/bom_structure_in_excel_odoo/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/icons/wrench.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/modules/1.png b/bom_structure_in_excel_odoo/static/description/assets/modules/1.png new file mode 100644 index 000000000..24c4e583b Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/modules/1.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/modules/2.jpg b/bom_structure_in_excel_odoo/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..eaa3c4ef8 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/modules/2.jpg differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/modules/3.png b/bom_structure_in_excel_odoo/static/description/assets/modules/3.png new file mode 100644 index 000000000..fd61a071f Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/modules/3.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/modules/4.jpg b/bom_structure_in_excel_odoo/static/description/assets/modules/4.jpg new file mode 100644 index 000000000..d4570cbc9 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/modules/4.jpg differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/modules/5.jpg b/bom_structure_in_excel_odoo/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..6a04719b1 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/modules/5.jpg differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/modules/5.png b/bom_structure_in_excel_odoo/static/description/assets/modules/5.png new file mode 100644 index 000000000..b86b8b342 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/modules/5.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/modules/6.jpg b/bom_structure_in_excel_odoo/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..345828a0c Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/modules/6.jpg differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/screenshots/1.png b/bom_structure_in_excel_odoo/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..72321f401 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/screenshots/1.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/screenshots/3.png b/bom_structure_in_excel_odoo/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..c9e038fb2 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/screenshots/3.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/screenshots/4.png b/bom_structure_in_excel_odoo/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..cac1796ac Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/screenshots/4.png differ diff --git a/bom_structure_in_excel_odoo/static/description/assets/screenshots/hero.gif b/bom_structure_in_excel_odoo/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..1353e085f Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/assets/screenshots/hero.gif differ diff --git a/bom_structure_in_excel_odoo/static/description/banner.png b/bom_structure_in_excel_odoo/static/description/banner.png new file mode 100644 index 000000000..3403ce000 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/banner.png differ diff --git a/bom_structure_in_excel_odoo/static/description/icon.png b/bom_structure_in_excel_odoo/static/description/icon.png new file mode 100644 index 000000000..16fc8c6c4 Binary files /dev/null and b/bom_structure_in_excel_odoo/static/description/icon.png differ diff --git a/bom_structure_in_excel_odoo/static/description/index.html b/bom_structure_in_excel_odoo/static/description/index.html new file mode 100644 index 000000000..48333b2f8 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/description/index.html @@ -0,0 +1,992 @@ + + + + + + BOM Structure & Cost Report in Excel + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ Excel Output for BOM Structure and BOM Cost Report. +

+

BOM Structure & Cost Report in Excel +

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

Key + Heighlights

+
+
+
+
+ +
+
+ Allow you to export BoM Structure & Cost Report in Excel format +
+
+
+
+
+
+ +
+
+ This gives the same output which the PDF report of Odoo standard gives. +
+
+
+
+
+ +
+
+
+ BOM Structure & Cost Report in Excel +

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

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

+ Navigate to + + Bills of Materials +

+
+
+

+ Choose a Bill of Material. +

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

+ Print + + BOM Structure Excel Report +

+
+
+

+ Click on the Print Button and Click BOM + Structure Excel to print the Excel Report. +

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

+ Excel Report + + View +

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

+ Allow you to export BoM Structure & Cost report in Excel format.

+
+
+
+
+
+
+
+ +
+

+ This gives the same output which the PDF Report of Odoo standard gives.

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

+ While configuring a + backup, selecting + the Zip option will + include the + filestore in the + backup, while + choosing the Dump + option will create a + backup without the + filestore. +

+
+
+ +
+ +
+

+ Enable the "Remove + Old Backups" option + in the backup + creation view to + automatically delete + previous backups + based on the number + of days specified. +

+
+
+ +
+ +
+

+ Enable the "Notify + User" option and + specify a contact to + receive an email + containing a + detailed report with + the failure reason + and backup details. + This option will + also send an email + upon successful + backup. +

+
+
+ +
+ +
+

+ Select the backup + destination as local + storage and specify + a backup path to a + location on the + system to create + backups on your own + system. +

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

+ Latest Release 18.0.1.0.0 +

+ + 25th January, 2025 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + diff --git a/bom_structure_in_excel_odoo/static/src/js/action_manager.js b/bom_structure_in_excel_odoo/static/src/js/action_manager.js new file mode 100644 index 000000000..838f843f1 --- /dev/null +++ b/bom_structure_in_excel_odoo/static/src/js/action_manager.js @@ -0,0 +1,18 @@ +/** @odoo-module **/ +import { registry } from "@web/core/registry"; +import { BlockUI } from "@web/core/ui/block_ui"; +import { download } from "@web/core/network/download"; +/** +This handler is responsible for generating XLSX reports. +*/ +registry.category("ir.actions.report handlers").add("qwerty_xlsx", async function (action) { + if (action.report_type === 'xlsx') { + BlockUI; + await download({ + url: '/xlsx_reports', + data: action.data, + complete: () => unblockUI, + error: (error) => self.call('crash_manager', 'rpc_error', error), + }); + } +});