Browse Source

July 11: [ADD] Initial commit 'advanced_excel_reports'

pull/254/merge
RisvanaCybro 10 months ago
parent
commit
f8675b4ace
  1. 47
      advanced_excel_reports/README.rst
  2. 23
      advanced_excel_reports/__init__.py
  3. 49
      advanced_excel_reports/__manifest__.py
  4. 22
      advanced_excel_reports/controllers/__init__.py
  5. 54
      advanced_excel_reports/controllers/advanced_excel_reports.py
  6. 41
      advanced_excel_reports/data/ir_action_data.xml
  7. 6
      advanced_excel_reports/doc/RELEASE_NOTES.md
  8. 24
      advanced_excel_reports/models/__init__.py
  9. 174
      advanced_excel_reports/models/account_move.py
  10. 160
      advanced_excel_reports/models/sale_order.py
  11. 168
      advanced_excel_reports/models/stock_picking.py
  12. BIN
      advanced_excel_reports/static/description/assets/icons/check.png
  13. BIN
      advanced_excel_reports/static/description/assets/icons/chevron.png
  14. BIN
      advanced_excel_reports/static/description/assets/icons/cogs.png
  15. BIN
      advanced_excel_reports/static/description/assets/icons/consultation.png
  16. BIN
      advanced_excel_reports/static/description/assets/icons/ecom-black.png
  17. BIN
      advanced_excel_reports/static/description/assets/icons/education-black.png
  18. BIN
      advanced_excel_reports/static/description/assets/icons/hotel-black.png
  19. BIN
      advanced_excel_reports/static/description/assets/icons/license.png
  20. BIN
      advanced_excel_reports/static/description/assets/icons/lifebuoy.png
  21. BIN
      advanced_excel_reports/static/description/assets/icons/logo.png
  22. BIN
      advanced_excel_reports/static/description/assets/icons/manufacturing-black.png
  23. BIN
      advanced_excel_reports/static/description/assets/icons/pos-black.png
  24. BIN
      advanced_excel_reports/static/description/assets/icons/puzzle.png
  25. BIN
      advanced_excel_reports/static/description/assets/icons/restaurant-black.png
  26. BIN
      advanced_excel_reports/static/description/assets/icons/service-black.png
  27. BIN
      advanced_excel_reports/static/description/assets/icons/trading-black.png
  28. BIN
      advanced_excel_reports/static/description/assets/icons/training.png
  29. BIN
      advanced_excel_reports/static/description/assets/icons/update.png
  30. BIN
      advanced_excel_reports/static/description/assets/icons/user.png
  31. BIN
      advanced_excel_reports/static/description/assets/icons/wrench.png
  32. BIN
      advanced_excel_reports/static/description/assets/misc/Cybrosys R.png
  33. BIN
      advanced_excel_reports/static/description/assets/misc/categories.png
  34. BIN
      advanced_excel_reports/static/description/assets/misc/check-box.png
  35. BIN
      advanced_excel_reports/static/description/assets/misc/compass.png
  36. BIN
      advanced_excel_reports/static/description/assets/misc/corporate.png
  37. BIN
      advanced_excel_reports/static/description/assets/misc/customer-support.png
  38. BIN
      advanced_excel_reports/static/description/assets/misc/cybrosys-logo.png
  39. BIN
      advanced_excel_reports/static/description/assets/misc/features.png
  40. BIN
      advanced_excel_reports/static/description/assets/misc/logo.png
  41. BIN
      advanced_excel_reports/static/description/assets/misc/pictures.png
  42. BIN
      advanced_excel_reports/static/description/assets/misc/pie-chart.png
  43. BIN
      advanced_excel_reports/static/description/assets/misc/right-arrow.png
  44. BIN
      advanced_excel_reports/static/description/assets/misc/star.png
  45. BIN
      advanced_excel_reports/static/description/assets/misc/support.png
  46. BIN
      advanced_excel_reports/static/description/assets/misc/whatsapp.png
  47. BIN
      advanced_excel_reports/static/description/assets/modules/1_sale_discount.png
  48. BIN
      advanced_excel_reports/static/description/assets/modules/2_advance_report.png
  49. BIN
      advanced_excel_reports/static/description/assets/modules/3_product_img.png
  50. BIN
      advanced_excel_reports/static/description/assets/modules/4_subscription.png
  51. BIN
      advanced_excel_reports/static/description/assets/modules/5_sale_orderline_img.png
  52. BIN
      advanced_excel_reports/static/description/assets/modules/6_product_pack.png
  53. BIN
      advanced_excel_reports/static/description/assets/screenshots/1.png
  54. BIN
      advanced_excel_reports/static/description/assets/screenshots/2.png
  55. BIN
      advanced_excel_reports/static/description/assets/screenshots/3.png
  56. BIN
      advanced_excel_reports/static/description/assets/screenshots/4.png
  57. BIN
      advanced_excel_reports/static/description/assets/screenshots/5.png
  58. BIN
      advanced_excel_reports/static/description/assets/screenshots/6.png
  59. BIN
      advanced_excel_reports/static/description/assets/screenshots/hero.gif
  60. BIN
      advanced_excel_reports/static/description/assets/screenshots_advanced_excel_reports.zip
  61. BIN
      advanced_excel_reports/static/description/banner.png
  62. BIN
      advanced_excel_reports/static/description/icon.png
  63. 811
      advanced_excel_reports/static/description/index.html
  64. 17
      advanced_excel_reports/static/src/js/excel_report.js

47
advanced_excel_reports/README.rst

@ -0,0 +1,47 @@
.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg
:target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
Advanced Excel Reports
======================
This module helps to Print the excel report of the sale,invoice,picking of multiple records
Configuration
=============
No additional configuration required
License
-------
General Public License, Version 3 (LGPL v3).
(https://www.gnu.org/licenses/lgpl-3.0-standalone.html)
Company
-------
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__
Credits
-------
Developer: (v15) Nisiya K @cybrosys, 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 <https://cybrosys.com/>`__
Further information
===================
HTML Description: `<static/description/index.html>`__

23
advanced_excel_reports/__init__.py

@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from . import controllers
from . import models

49
advanced_excel_reports/__manifest__.py

@ -0,0 +1,49 @@
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
{
'name': "Advanced Excel Reports",
"version": "15.0.1.0.0",
"category": "Sale,Accounting,Warehouse",
"summary": """For printing excel reports of multiple records""",
"description": "Print the excel report of the sale,invoice,picking"
" of multiple records",
'author': 'Cybrosys Techno Solutions',
'company': 'Cybrosys Techno Solutions',
'maintainer': 'Cybrosys Techno Solutions',
'website': "https://www.cybrosys.com",
'depends': ['sale_management', 'account', 'stock'],
'data': [
'data/ir_action_data.xml'
],
'assets':
{
'web.assets_backend': [
'advanced_excel_reports/static/src/js/excel_report.js'
],
},
'images': [
'static/description/banner.png'],
'license': 'LGPL-3',
'installable': True,
'auto_install': False,
'application': False,
}

22
advanced_excel_reports/controllers/__init__.py

@ -0,0 +1,22 @@
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from . import advanced_excel_reports

54
advanced_excel_reports/controllers/advanced_excel_reports.py

@ -0,0 +1,54 @@
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
import json
from odoo import http
from odoo.http import content_disposition, request
from odoo.tools import html_escape
class XLSXReportController(http.Controller):
@http.route('/xlsx_reports', type='http', auth='user',
csrf=False)
def get_report_xlsx(self, model, options, output_format, report_name,
token='ads'):
""" Return data to python file passed from the javascript"""
session_unique_id = request.session.uid
report_object = request.env[model].with_user(session_unique_id)
options = json.loads(options)
try:
if output_format == 'xlsx':
response = request.make_response(
None,
headers=[('Content-Type', 'application/vnd.ms-excel'), (
'Content-Disposition',
content_disposition(f"{report_name}.xlsx"))
]
)
report_object.get_xlsx_report(options, response)
response.set_cookie('fileToken', token)
return response
except Exception:
error = {
'code': 200,
'message': 'Odoo Server Error',
}
return request.make_response(html_escape(json.dumps(error)))

41
advanced_excel_reports/data/ir_action_data.xml

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">
<!-- Server action to print sale order excel report-->
<record id="action_print_sale_order_excel_report"
model="ir.actions.server">
<field name="name">Sale Order Excel Report</field>
<field name="model_id" ref="model_sale_order"/>
<field name="binding_model_id" ref="model_sale_order"/>
<field name="binding_view_types">list</field>
<field name="state">code</field>
<field name="code">
action = record.print_excel_report()
</field>
</record>
<!-- Server action to print invoice excel report-->
<record id="action_print_invoice_excel_report"
model="ir.actions.server">
<field name="name">Account Invoice Excel Report</field>
<field name="model_id" ref="model_account_move"/>
<field name="binding_model_id" ref="model_account_move"/>
<field name="binding_view_types">list</field>
<field name="state">code</field>
<field name="code">
action = record.print_excel_report()
</field>
</record>
<!-- Server action to print transfer excel report-->
<record id="action_print_picking_excel_report"
model="ir.actions.server">
<field name="name">Picking Excel Report</field>
<field name="model_id" ref="model_stock_picking"/>
<field name="binding_model_id" ref="model_stock_picking"/>
<field name="binding_view_types">list</field>
<field name="state">code</field>
<field name="code">
action = record.print_excel_report()
</field>
</record>
</data>
</odoo>

6
advanced_excel_reports/doc/RELEASE_NOTES.md

@ -0,0 +1,6 @@
## Module <advanced_excel_reports>
#### 11.06.2024
#### Version 15.0.1.0.0
#### ADD
- Initial commit for Advanced Excel Reports

24
advanced_excel_reports/models/__init__.py

@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
from . import account_move
from . import sale_order
from . import stock_picking

174
advanced_excel_reports/models/account_move.py

@ -0,0 +1,174 @@
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
import io
import json
import xlsxwriter
from odoo import models
from odoo.tools import date_utils
class AccountMove(models.Model):
""" Added function for printing excel report
which is coming from a server action """
_inherit = "account.move"
def print_excel_report(self):
""" Function is used to print the Excel report
It will pass the invoice data through js file to
print Excel file"""
# Take the ids of the selected invoices
data = self._context['active_ids']
return {
'type': 'ir.actions.report',
'report_type': 'xlsx',
'data': {'model': 'account.move',
'output_format': 'xlsx',
'options': json.dumps(data,
default=date_utils.json_default),
'report_name': 'Invoice Excel Report', }, }
def get_xlsx_report(self, datas, response):
""" From this function we can create and design the Excel file template
and the map the values in the corresponding cells
:param datas: Selected record ids
:param response: Response after creating excel
"""
output = io.BytesIO()
workbook = xlsxwriter.Workbook(output, {'in_memory': True})
# for printing multiple sheet per file, iterate the invoices
for account_move in self.env['account.move'].browse(datas):
# Set file title as invoice when it is invoice and set bill
# if the move_type is out_invoice
account_name = 'INVOICE - ' + account_move.name if \
account_move.move_type == 'out_invoice' else \
'VENDOR BILL - ' + account_move.name
company_name = 'Company Name : ' + account_move.company_id.name
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
ref = str(
account_move.payment_reference) if \
account_move.payment_reference is not False else ''
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
payment_term = str(
account_move.invoice_payment_term_id.name) if \
account_move.invoice_payment_term_id.name is not False else ''
# Copy the value to a variable set black if it is null instead
# of printing 'FALSE' in the report
fiscal_position = str(
account_move.fiscal_position_id.name) if \
account_move.fiscal_position_id.name is not False else ''
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
sale_person = account_move.user_id.name if \
account_move.user_id.name is not False else ''
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
incoterm = account_move.invoice_incoterm_id.name if \
account_move.invoice_incoterm_id.name is not False else ''
invoice_date = str(account_move.invoice_date)
currency_symbol = account_move.currency_id.symbol
sheet = workbook.add_worksheet(
account_move.name) # Set sheet name as Invoice/Bill name
sheet.set_column(0, 8, 20)
head = workbook.add_format(
{'align': 'center', 'bold': True, 'font_size': '20px'})
txt = workbook.add_format(
{'align': 'center', 'bold': True})
txt_border = workbook.add_format(
{'align': 'center', 'bold': True, 'border': 1})
border = workbook.add_format({'border': 1})
sheet.merge_range('B2:E3', account_name, head)
sheet.merge_range('B4:E4', company_name, txt)
sheet.write('A6', 'Customer/Vendor Name', txt)
sheet.write('B6', account_move.partner_id.name)
sheet.write('B7', account_move.partner_id.street)
sheet.write('B8', account_move.partner_id.state_id.name)
sheet.write('B9', account_move.partner_id.zip)
sheet.write('B10', account_move.partner_id.country_id.name)
sheet.write('B11', account_move.partner_id.phone)
sheet.write('D6', 'Date', txt)
sheet.write('D7', 'Payment Term', txt)
sheet.write('D8', 'Journal', txt)
sheet.write('D9', 'Currency', txt)
sheet.write('D10', 'State', txt)
sheet.write('E6', invoice_date)
sheet.write('E7', payment_term)
sheet.write('E8', account_move.journal_id.name)
sheet.write('E9', account_move.currency_id.name)
sheet.write('E10', account_move.state)
sheet.write('A13', 'Sales Persons', txt)
sheet.write('A14', sale_person)
sheet.write('B13', 'Source Document', txt)
sheet.write('B14', ref)
sheet.write('C13', 'Fiscal Position', txt)
sheet.write('C14', fiscal_position)
sheet.write('D13', 'Incoterm', txt)
sheet.write('D14', incoterm)
sheet.write('A16', 'Product', txt_border)
sheet.write('B16', 'Description', txt_border)
sheet.write('C16', 'Quantity', txt_border)
sheet.write('D16', 'Account', txt_border)
sheet.write('E16', 'Discount %', txt_border)
sheet.write('F16', 'Unit Price', txt_border)
sheet.write('G16', 'Tax', txt_border)
sheet.write('H16', 'Subtotal', txt_border)
row = 17
self._add_invoice_line_to_excel(sheet, account_move, row, border, txt_border,
currency_symbol)
workbook.close()
output.seek(0)
response.stream.write(output.read())
output.close()
def _add_invoice_line_to_excel(self, sheet, account_move, row, border, txt_border,
currency_symbol):
"""
Function to add invoice line values to the Excel file
:param sheet: Current Excel sheet where data to be added
:param account_move : Object of invoice in which data adding
:param row:Excel row value of next data to be added
:param border :Excel styling for adding border for each cell
:param txt_border : Excel styling for adding data in each cell
:param currency_symbol : Currency symbol of current record
"""
for line in account_move.invoice_line_ids:
# For adding value of the invoice lines
tax = str(
line.tax_ids.name) if line.tax_ids.name \
is not False else ''
sheet.write(row, 0, line.product_id.name, border)
sheet.write(row, 1, line.name, border)
sheet.write(row, 2, line.quantity, border)
sheet.write(row, 3, line.account_id.display_name, border)
sheet.write(row, 4, line.discount, border)
sheet.write(row, 5, line.price_unit, border)
sheet.write(row, 6, tax, border)
sheet.write(row, 7,
str(currency_symbol) + str(line.price_subtotal),
border)
row += 1
row += 1
sheet.write(row, 6, 'Total Amount', txt_border)
sheet.write(row, 7,
str(currency_symbol) + str(account_move.amount_total),
border)

160
advanced_excel_reports/models/sale_order.py

@ -0,0 +1,160 @@
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
import io
import json
import xlsxwriter
from odoo import models
from odoo.tools import date_utils
class SaleOrder(models.Model):
""" Added a function that to print sale order excel report
which is added through server action """
_inherit = "sale.order"
def print_excel_report(self):
""" Function is used to print the Excel report
It will pass the sale order data through js file to
print Excel file"""
# Take the ids of the selected sale orders
data = self._context['active_ids']
return {
'type': 'ir.actions.report',
'report_type': 'xlsx',
'data': {'model': 'sale.order',
'output_format': 'xlsx',
'options': json.dumps(data,
default=date_utils.json_default),
'report_name': 'Sale/Quotation Excel Report', }, }
def get_xlsx_report(self, datas, response):
""" From this function we can create and design the Excel file template
and the map the values in the corresponding cells
:param datas:Selected record ids
:param response: Response after creating excel
"""
output = io.BytesIO()
workbook = xlsxwriter.Workbook(output, {'in_memory': True})
# for printing multiple sheet per file, iterate the sale orders
for sale in self.env['sale.order'].browse(datas):
sale_name = 'SALE ORDER - ' + sale.name
company_name = 'Company Name : ' + sale.company_id.name
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
ref = str(
sale.client_order_ref) if \
sale.client_order_ref is not False else ''
# Copy the value to a variable set black if it is null instead
# of printing 'FALSE' in the report
payment_term = str(
sale.payment_term_id.name) if \
sale.payment_term_id.name is not False else ''
# Copy the value to a variable set black if it is null instead
# of printing 'FALSE' in the report
fiscal_position = str(
sale.fiscal_position_id.name) if \
sale.fiscal_position_id.name is not False else ''
sheet = workbook.add_worksheet(
sale.name) # set the sheet name as sale order name
sheet.set_column(0, 8, 20)
sale_date = str(sale.date_order)
currency_symbol = sale.currency_id.symbol
head = workbook.add_format(
{'align': 'center', 'bold': True, 'font_size': '20px'})
txt = workbook.add_format({'align': 'center', 'bold': True})
txt_border = workbook.add_format(
{'align': 'center', 'bold': True, 'border': 1})
border = workbook.add_format({'border': 1})
sheet.merge_range('B2:E3', sale_name, head)
sheet.merge_range('B4:E4', company_name, txt)
sheet.write('A6', 'Customer Name', txt)
sheet.write('B6', sale.partner_id.name)
sheet.write('B7', sale.partner_id.street)
sheet.write('B8', sale.partner_id.state_id.name)
sheet.write('B9', sale.partner_id.zip)
sheet.write('B10', sale.partner_id.country_id.name)
sheet.write('B11', sale.partner_id.phone)
sheet.write('D6', 'Date', txt)
sheet.write('D7', 'Payment Term', txt)
sheet.write('D8', 'Price List', txt)
sheet.write('D9', 'State', txt)
sheet.write('E6', sale_date)
sheet.write('E7', payment_term)
sheet.write('E8', sale.pricelist_id.name)
sheet.write('E9', sale.state)
sheet.write('A13', 'Sales Team', txt)
sheet.write('A14', sale.team_id.name)
sheet.write('B13', 'Sales Persons', txt)
sheet.write('B14', sale.user_id.name)
sheet.write('C13', 'Source Document', txt)
sheet.write('C14', ref)
sheet.write('D13', 'Fiscal Position', txt)
sheet.write('D14', fiscal_position)
sheet.write('A16', 'Product', txt_border)
sheet.write('B16', 'Description', txt_border)
sheet.write('C16', 'Quantity', txt_border)
sheet.write('D16', 'Delivered', txt_border)
sheet.write('E16', 'Invoiced', txt_border)
sheet.write('F16', 'Unit Price', txt_border)
sheet.write('G16', 'Tax', txt_border)
sheet.write('H16', 'Subtotal', txt_border)
row = 17
# calling this function for adding sale order line data to the
# Excel sheet
self._add_order_line_to_excel(sheet, sale, row, border, txt_border,
currency_symbol)
workbook.close()
output.seek(0)
response.stream.write(output.read())
output.close()
def _add_order_line_to_excel(self, sheet, sale, row, border, txt_border,
currency_symbol):
"""
Function to add sale order line values to the Excel file
:param sheet: Current Excel sheet where data to be added
:param sale : Object of sale order in which data adding
:param row:Excel row value of next data to be added
:param border :Excel styling for adding border for each cell
:param txt_border : Excel styling for adding data in each cell
:param currency_symbol : Currency symbol of current record
"""
for line in sale.order_line:
# For adding value of the sale order lines
tax = str(
line.tax_id.name) if line.tax_id.name is not False else ''
sheet.write(row, 0, line.product_id.name, border)
sheet.write(row, 1, line.name, border)
sheet.write(row, 2, line.product_uom_qty, border)
sheet.write(row, 3, line.qty_delivered, border)
sheet.write(row, 4, line.qty_invoiced, border)
sheet.write(row, 5, line.price_unit, border)
sheet.write(row, 6, tax, border)
sheet.write(row, 7,
str(currency_symbol) + str(line.price_subtotal),
border)
row += 1
row += 1
sheet.write(row, 6, 'Total Amount', txt_border)
sheet.write(row, 7, str(currency_symbol) + str(sale.amount_total),
border)

168
advanced_excel_reports/models/stock_picking.py

@ -0,0 +1,168 @@
# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
#
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
#
# You can modify it under the terms of the GNU LESSER
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# (LGPL v3) along with this program.
# If not, see <http://www.gnu.org/licenses/>.
#
#############################################################################
import io
import json
import xlsxwriter
from odoo import models
from odoo.tools import date_utils
class StockPicking(models.Model):
""" Added a function that to print sale order Excel report
which is added using server action """
_inherit = "stock.picking"
def print_excel_report(self):
""" Function is used to print the Excel report
It will pass the picking data through js file to
print Excel file"""
# Take the ids of the selected pickings
data = self._context['active_ids']
return {
'type': 'ir.actions.report',
'report_type': 'xlsx',
'data': {'model': 'stock.picking',
'output_format': 'xlsx',
'options': json.dumps(data,
default=date_utils.json_default),
'report_name': 'Picking Order Excel Report', }, }
def get_xlsx_report(self, datas, response):
""" From this function we can create and design the Excel file template
and the map the values in the corresponding cells
:param datas:Selected record ids
:param response: Response after creating excel
"""
output = io.BytesIO()
workbook = xlsxwriter.Workbook(output, {'in_memory': True})
# for printing multiple sheet per file, iterate the pickings
for picking in self.env['stock.picking'].browse(datas):
picking_name = 'Delivery - ' + picking.name
company_name = 'Company Name : ' + picking.company_id.name
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
ref = picking.origin if picking.origin is not False else ''
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
responsible_person = picking.user_id.name if \
picking.user_id.name is not False else ''
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
partner_name = picking.partner_id.name if \
picking.partner_id.name is not False else ''
# Copy the value to a variable set black if it is null instead
# of printing 'FALSE' in the report
partner_street = picking.partner_id.street if \
picking.partner_id.street is not False else ''
# Copy the value to a variable set black if it is null instead of
# printing 'FALSE' in the report
partner_state = picking.partner_id.state_id.name if \
picking.partner_id.state_id.name is not False else ''
# Copy the value to a variable set black if it is null instead
# of printing 'FALSE' in the report
partner_zip = picking.partner_id.zip if \
picking.partner_id.zip is not False else ''
# Copy the value to a variable set black if it is null instead
# of printing 'FALSE' in the report
partner_county = picking.partner_id.country_id.name if \
picking.partner_id.country_id.name is not False else ''
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
partner_phone = picking.partner_id.phone if \
picking.partner_id.phone is not False else ''
# Copy the value to a variable set black if it is null instead
# of printing 'FALSE' in the report
date_done = str(picking.date_done) if \
picking.date_done is not False else ''
scheduled_date = str(picking.scheduled_date)
sheet = workbook.add_worksheet(
picking.name) # set the sheet name as picking name
sheet.set_column(0, 8, 25)
head = workbook.add_format(
{'align': 'center', 'bold': True, 'font_size': '20px'})
txt = workbook.add_format({'align': 'center', 'bold': True})
txt_border = workbook.add_format(
{'align': 'center', 'bold': True, 'border': 1})
border = workbook.add_format({'border': 1})
sheet.merge_range('B2:E3', picking_name, head)
sheet.merge_range('B4:E4', company_name, txt)
sheet.write('A6', 'Customer/Vendor Name', txt)
sheet.write('B6', partner_name)
sheet.write('B7', partner_street)
sheet.write('B8', partner_state)
sheet.write('B9', partner_zip)
sheet.write('B10', partner_county)
sheet.write('B11', partner_phone)
sheet.write('D6', 'Scheduled Date', txt)
sheet.write('D7', 'Effective Date', txt)
sheet.write('D8', 'Operation Type', txt)
sheet.write('D9', 'Source Location', txt)
sheet.write('D10', 'Destination Location', txt)
sheet.write('D11', 'State', txt)
sheet.write('E6', scheduled_date)
sheet.write('E7', date_done)
sheet.write('E8', picking.picking_type_id.display_name)
sheet.write('E9', picking.location_id.complete_name)
sheet.write('E10', picking.location_dest_id.complete_name)
sheet.write('E11', picking.state)
sheet.write('A13', 'Responsible Person', txt)
sheet.write('A14', responsible_person)
sheet.write('B13', 'Source Document', txt)
sheet.write('B14', ref)
sheet.write('A16', 'Product', txt_border)
sheet.write('B16', 'Description', txt_border)
sheet.write('C16', 'Scheduled Date', txt_border)
sheet.write('D16', 'Deadline', txt_border)
sheet.write('E16', 'Quantity', txt_border)
sheet.write('F16', 'Quantity Done', txt_border)
row = 17
# calling this function for adding picking line data to the
# Excel sheet
self._add_picking_line_to_excel(sheet, picking, row, border)
workbook.close()
output.seek(0)
response.stream.write(output.read())
output.close()
def _add_picking_line_to_excel(self, sheet, picking, row, border):
"""
Function to add stock picking line values to the Excel file
:param sheet: Current Excel sheet where data to be added
:param picking : Object of transfer in which data adding
:param row:Excel row value of next data to be added
:param border :Excel styling for adding border for each cell
"""
# For adding value of the sale order line
for line in picking.move_ids_without_package:
# Copy the value to a variable set black if it is null
# instead of printing 'FALSE' in the report
date_deadline = str(line.date_deadline) if \
line.date_deadline is not False else ''
date = str(line.date)
sheet.write(row, 0, line.product_id.name, border)
sheet.write(row, 1, line.description_picking, border)
sheet.write(row, 2, date, border)
sheet.write(row, 3, date_deadline, border)
sheet.write(row, 4, line.product_uom_qty, border)
sheet.write(row, 5, line.quantity_done, border)
row += 1

BIN
advanced_excel_reports/static/description/assets/icons/check.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

BIN
advanced_excel_reports/static/description/assets/icons/chevron.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 B

BIN
advanced_excel_reports/static/description/assets/icons/cogs.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
advanced_excel_reports/static/description/assets/icons/consultation.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
advanced_excel_reports/static/description/assets/icons/ecom-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 576 B

BIN
advanced_excel_reports/static/description/assets/icons/education-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 733 B

BIN
advanced_excel_reports/static/description/assets/icons/hotel-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 911 B

BIN
advanced_excel_reports/static/description/assets/icons/license.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
advanced_excel_reports/static/description/assets/icons/lifebuoy.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
advanced_excel_reports/static/description/assets/icons/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
advanced_excel_reports/static/description/assets/icons/manufacturing-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 673 B

BIN
advanced_excel_reports/static/description/assets/icons/pos-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 878 B

BIN
advanced_excel_reports/static/description/assets/icons/puzzle.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 653 B

BIN
advanced_excel_reports/static/description/assets/icons/restaurant-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 905 B

BIN
advanced_excel_reports/static/description/assets/icons/service-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 839 B

BIN
advanced_excel_reports/static/description/assets/icons/trading-black.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

BIN
advanced_excel_reports/static/description/assets/icons/training.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 627 B

BIN
advanced_excel_reports/static/description/assets/icons/update.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
advanced_excel_reports/static/description/assets/icons/user.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 988 B

BIN
advanced_excel_reports/static/description/assets/icons/wrench.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
advanced_excel_reports/static/description/assets/misc/Cybrosys R.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

BIN
advanced_excel_reports/static/description/assets/misc/categories.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
advanced_excel_reports/static/description/assets/misc/check-box.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
advanced_excel_reports/static/description/assets/misc/compass.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

BIN
advanced_excel_reports/static/description/assets/misc/corporate.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
advanced_excel_reports/static/description/assets/misc/customer-support.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
advanced_excel_reports/static/description/assets/misc/cybrosys-logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
advanced_excel_reports/static/description/assets/misc/features.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 B

BIN
advanced_excel_reports/static/description/assets/misc/logo.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
advanced_excel_reports/static/description/assets/misc/pictures.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
advanced_excel_reports/static/description/assets/misc/pie-chart.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
advanced_excel_reports/static/description/assets/misc/right-arrow.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 967 B

BIN
advanced_excel_reports/static/description/assets/misc/star.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
advanced_excel_reports/static/description/assets/misc/support.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
advanced_excel_reports/static/description/assets/misc/whatsapp.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

BIN
advanced_excel_reports/static/description/assets/modules/1_sale_discount.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
advanced_excel_reports/static/description/assets/modules/2_advance_report.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
advanced_excel_reports/static/description/assets/modules/3_product_img.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

BIN
advanced_excel_reports/static/description/assets/modules/4_subscription.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

BIN
advanced_excel_reports/static/description/assets/modules/5_sale_orderline_img.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

BIN
advanced_excel_reports/static/description/assets/modules/6_product_pack.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
advanced_excel_reports/static/description/assets/screenshots/1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 KiB

BIN
advanced_excel_reports/static/description/assets/screenshots/2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 KiB

BIN
advanced_excel_reports/static/description/assets/screenshots/3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB

BIN
advanced_excel_reports/static/description/assets/screenshots/4.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

BIN
advanced_excel_reports/static/description/assets/screenshots/5.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 KiB

BIN
advanced_excel_reports/static/description/assets/screenshots/6.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

BIN
advanced_excel_reports/static/description/assets/screenshots/hero.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB

BIN
advanced_excel_reports/static/description/assets/screenshots_advanced_excel_reports.zip

Binary file not shown.

BIN
advanced_excel_reports/static/description/banner.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

BIN
advanced_excel_reports/static/description/icon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

811
advanced_excel_reports/static/description/index.html

@ -0,0 +1,811 @@
<div class="container" style="padding: 1rem !important; margin-bottom: 1rem !important;">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12 d-flex justify-content-between" style="border-bottom: 1px solid #d5d5d5;">
<div class="my-3">
<img src="./assets/icons/logo.png" style="width: auto !important; height: 40px !important;">
</div>
<div class="my-3 d-flex align-items-center">
<div
style="background-color: #7C7BAD !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;">
<i class="fa fa-check mr-1"></i>Community
</div>
<div
style="background-color: #875A7B !important; color: #fff !important; font-weight: 600 !important; padding: 5px 15px 8px !important; margin: 0 5px !important;">
<i class="fa fa-check mr-1"></i>Enterprise
</div>
</div>
</div>
</div>
</div>
<div class="container" style="padding: 0rem 1.5rem 4rem !important">
<div class="row" style="height: 900px !important;">
<div class="col-sm-12 col-md-12 col-lg-12"
style="padding: 4rem 1rem !important; background-color: #714B67 !important; height: 600px !important; border-radius: 20px !important;">
<h1
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #FFFFFF !important; font-size: 3.5rem !important; text-align: center !important;">
Advanced Excel Reports</h1>
<p
style="font-family: 'Montserrat', sans-serif !important; font-weight: 300 !important; color: #FFFFFF !important; font-size: 1.4rem !important; text-align: center !important;">
Print Excel Reports Of Multiple Records From The Sale Account And Inventory Module.</p>
<img src="./assets/screenshots/hero.gif" class="img-responsive" width="100%" height="auto" />
</div>
</div>
<div class="row">
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin-bottom: 2rem !important">
<h2
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;">
<i class="fa fa-compass mr-2"></i>Explore this module
</h2>
<div class="row">
<div class="col-md-6">
<a href="#overview" style="text-decoration: none !important;">
<div class="row"
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;">
<div class="col-8">
<h3
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;">
Overview</h3>
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;">
Learn more about this module</p>
</div>
<div class="col-4 text-right d-flex justify-content-end align-items-center">
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i>
</div>
</div>
</a>
</div>
<div class="col-md-6">
<a href="#features" style="text-decoration: none !important;">
<div class="row"
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;">
<div class="col-8">
<h3
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;">
Features</h3>
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;">
View features of this module</p>
</div>
<div class="col-4 text-right d-flex justify-content-end align-items-center">
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i>
</div>
</div>
</a>
</div>
<div class="col-md-6">
<a href="#screenshots" style="text-decoration: none !important;">
<div class="row"
style="background-color: #f5f2f5 !important; border-radius: 10px !important; margin: 1rem !important; padding: 1.5em !important; height: 100px !important;">
<div class="col-8">
<h3
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.2rem !important;">
Screenshots</h3>
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #714B67 !important; font-size: 0.9rem !important;">
See key screenshots of this module</p>
</div>
<div class="col-4 text-right d-flex justify-content-end align-items-center">
<i class="fa fa-chevron-right" style="color: #714B67 !important;"></i>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="row" id="overview">
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important">
<h2
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;">
<i class="fa fa-pie-chart mr-2"></i>Overview
</h2>
</div>
<div class="col-mg-12 pl-3">
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important; line-height: 30px !important;">
In this module Print Excel Reports Of Multiple Records From The Sale Account And Inventory Module.</p>
</div>
</p>
</div>
<div class="row" id="features">
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important">
<h2
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;">
<i class="fa fa-star mr-2"></i>Features
</h2>
</div>
<div class="col-md-6 pl-3 py-3 d-flex">
<div>
<img src="assets/icons/check.png">
</div>
<div>
<h4
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Available in Odoo 15.0 Community and Enterprise. </h4>
</div>
</div>
<div class="col-md-6 pl-3 py-3 d-flex">
<div>
<img src="assets/icons/check.png">
</div>
<div>
<h4
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Multiple excel reports</h4>
</div>
</div>
<div class="col-md-6 pl-3 py-3 d-flex">
<div>
<img src="assets/icons/check.png">
</div>
<div>
<h4
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Report for the multiple records in a single file</h4>
</div>
</div>
<div class="col-md-6 pl-3 py-3 d-flex">
<div>
<img src="assets/icons/check.png">
</div>
<div>
<h4
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Multiple sheets per excel file</h4>
</div>
</div>
<div class="col-md-6 pl-3 py-3 d-flex">
<div>
<img src="assets/icons/check.png">
</div>
<div>
<h4
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Able to print report for Sales,Invoice,Picking.</h4>
</div>
</div>
</div>
<div class="row" id="screenshots">
<div class="col-md-12" style="border-bottom: 1px solid #d5d5d5 !important; margin: 2rem 0 !important">
<h2
style="font-family: 'Montserrat', sans-serif !important; font-weight: 600 !important; color: #714B67 !important; font-size: 1.5rem !important;">
<i class="fa fa-image mr-2"></i>Screenshots
</h2>
</div>
<div class="col-lg-12 my-2">
<h4 class="mt-2"
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Sale Order Print Menu</h4>
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;">
Go to Sales -> select records from the tree view for the sale order -> From the action menu -> Sale Order Excel Report
</p>
<img src="assets/screenshots/1.png" class="img-responsive img-thumbnail border" width="100%"
height="auto" />
</div>
<div class="col-lg-12 my-2">
<h4 class="mt-2"
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Sale Order Excel Report</h4>
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;">
By clicking Sale Order Excel Report we can print sale order excel report.
</p>
<img src="assets/screenshots/2.png" class="img-responsive img-thumbnail border" width="100%"
height="auto" />
</div>
<div class="col-lg-12 my-3">
<h4 class="mt-3"
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Invoice Print Menu</h4>
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;">
Go to Invoicing -> select records from the tree view for the invoice -> From the action menu -> Account Invoice Excel Report
</p>
<img src="assets/screenshots/3.png" class="img-responsive img-thumbnail border" width="100%"
height="auto" />
</div>
<div class="col-lg-12 my-3">
<h4 class="mt-3"
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Invoice Excel Report.</h4>
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;">
By clicking the Account Invoice Excel Report button we can print the Excel report
</p>
<img src="assets/screenshots/4.png" class="img-responsive img-thumbnail border" width="100%"
height="auto" />
</div>
<div class="col-lg-12 my-3">
<h4 class="mt-3"
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Picking Excel Report Menu</h4>
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;">
Go to inventory -> select records from the tree view for the transfer -> From the
action menu -> Picking Excel Report
</p>
<img src="assets/screenshots/5.png" class="img-responsive img-thumbnail border" width="100%"
height="auto" />
</div>
<div class="col-lg-12 my-3">
<h4 class="mt-3"
style="font-family: 'Roboto', sans-serif !important; font-weight: 600 !important; color: #282F33 !important; font-size: 1.3rem !important;">
Picking Excel Reports</h4>
<p
style="font-family: 'Roboto', sans-serif !important; font-weight: 400 !important; color: #282F33 !important; font-size: 1rem !important;">
By clicking the Picking Excel Report button we can print the Excel report
</p>
<img src="assets/screenshots/5.png" class="img-responsive img-thumbnail border" width="100%"
height="auto" />
</div>
</div>
<!-- SUGGESTED PRODUCTS -->
<div class="row">
<div class="col-lg-12 d-flex flex-column justify-content-center"
style="text-align: center; padding: 2.5rem 1rem !important;">
<h2 style="color: #212529 !important;">Suggested Products</h2>
<hr
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" />
<div id="demo1" class="row carousel slide" data-ride="carousel">
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active" style="min-height:0px">
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/sale_discount_total/" target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-top-left-radius:10px; border-top-right-radius:10px"
src="assets/modules/1_sale_discount.png">
</div>
</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/sale_report_advanced/" target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-top-left-radius:10px; border-top-right-radius:10px"
src="assets/modules/2_advance_report.png">
</div>
</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/product_import/" target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-top-left-radius:10px; border-top-right-radius:10px"
src="assets/modules/3_product_img.png">
</div>
</a>
</div>
</div>
<div class="carousel-item" style="min-height:0px">
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/subscription_package/" target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-top-left-radius:10px; border-top-right-radius:10px"
src="assets/modules/4_subscription.png">
</div>
</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/sale_product_image/" target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-top-left-radius:10px; border-top-right-radius:10px"
src="assets/modules/5_sale_orderline_img.png">
</div>
</a>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 mb16 mt16" style="float:left">
<a href="https://apps.odoo.com/apps/modules/15.0/product_combo_pack/" target="_blank">
<div style="border-radius:10px">
<img class="img img-responsive center-block"
style="border-top-left-radius:10px; border-top-right-radius:10px"
src="assets/modules/6_product_pack.png">
</div>
</a>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo1" data-slide="prev" style="left:-25px;width: 35px;color: #000;">
<span class="carousel-control-prev-icon"><i class="fa fa-chevron-left" style="font-size:24px"></i></span> </a>
<a class="carousel-control-next" href="#demo1" data-slide="next" style="right:-25px;width: 35px;color: #000;">
<span class="carousel-control-next-icon"><i class="fa fa-chevron-right" style="font-size:24px"></i></span>
</a>
</div>
</div>
</div>
<!-- END OF SUGGESTED PRODUCTS -->
<!-- OUR SERVICES -->
<section class="container" style="margin-top: 6rem !important;">
<div class="row">
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center">
<h2 style="color: #212529 !important;">Our Services</h2>
<hr
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" />
</div>
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #1dd1a1 !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/cogs.png" class="img-responsive" height="48px" width="48px">
</div>
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Odoo
Customization</h6>
</div>
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #ff6b6b !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/wrench.png" class="img-responsive" height="48px" width="48px">
</div>
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Odoo
Implementation</h6>
</div>
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #6462CD !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/lifebuoy.png" class="img-responsive" height="48px" width="48px">
</div>
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Odoo
Support</h6>
</div>
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #ffa801 !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/user.png" class="img-responsive" height="48px" width="48px">
</div>
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Hire
Odoo
Developer</h6>
</div>
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #54a0ff !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/puzzle.png" class="img-responsive" height="48px" width="48px">
</div>
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Odoo
Integration</h6>
</div>
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #6d7680 !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/update.png" class="img-responsive" height="48px" width="48px">
</div>
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Odoo
Migration</h6>
</div>
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #786fa6 !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/consultation.png" class="img-responsive" height="48px" width="48px">
</div>
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Odoo
Consultancy</h6>
</div>
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #f8a5c2 !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/training.png" class="img-responsive" height="48px" width="48px">
</div>
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Odoo
Implementation</h6>
</div>
<div class="col-lg-4 d-flex flex-column justify-content-center align-items-center my-4">
<div class="d-flex justify-content-center align-items-center mx-3 my-3"
style="background-color: #e6be26 !important; border-radius: 15px !important; height: 80px; width: 80px;">
<img src="assets/icons/license.png" class="img-responsive" height="48px" width="48px">
</div>
<h6 class="text-center" style="font-family: Montserrat, 'sans-serif' !important; font-weight: bold;">
Odoo
Licensing Consultancy</h6>
</div>
</div>
</section>
<!-- END OF END OF OUR SERVICES -->
<!-- OUR INDUSTRIES -->
<section class="container" style="margin-top: 6rem !important;">
<div class="row">
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center">
<h2 style="color: #212529 !important;">Our Industries</h2>
<hr
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" />
</div>
<div class="col-lg-3">
<div class="my-4 d-flex flex-column justify-content-center"
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;">
<img src="./assets/icons/trading-black.png" class="img-responsive mb-3" height="48px" width="48px">
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;">
Trading
</h5>
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;">
Easily procure
and
sell your products</p>
</div>
</div>
<div class="col-lg-3">
<div class="my-4 d-flex flex-column justify-content-center"
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;">
<img src="./assets/icons/pos-black.png" class="img-responsive mb-3" height="48px" width="48px">
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;">
POS
</h5>
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;">
Easy
configuration
and convivial experience</p>
</div>
</div>
<div class="col-lg-3">
<div class="my-4 d-flex flex-column justify-content-center"
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;">
<img src="./assets/icons/education-black.png" class="img-responsive mb-3" height="48px" width="48px">
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;">
Education
</h5>
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;">
A platform for
educational management</p>
</div>
</div>
<div class="col-lg-3">
<div class="my-4 d-flex flex-column justify-content-center"
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;">
<img src="./assets/icons/manufacturing-black.png" class="img-responsive mb-3" height="48px" width="48px">
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;">
Manufacturing
</h5>
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;">
Plan, track and
schedule your operations</p>
</div>
</div>
<div class="col-lg-3">
<div class="my-4 d-flex flex-column justify-content-center"
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;">
<img src="./assets/icons/ecom-black.png" class="img-responsive mb-3" height="48px" width="48px">
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;">
E-commerce &amp; Website
</h5>
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;">
Mobile
friendly,
awe-inspiring product pages</p>
</div>
</div>
<div class="col-lg-3">
<div class="my-4 d-flex flex-column justify-content-center"
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;">
<img src="./assets/icons/service-black.png" class="img-responsive mb-3" height="48px" width="48px">
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;">
Service Management
</h5>
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;">
Keep track of
services and invoice</p>
</div>
</div>
<div class="col-lg-3">
<div class="my-4 d-flex flex-column justify-content-center"
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;">
<img src="./assets/icons/restaurant-black.png" class="img-responsive mb-3" height="48px" width="48px">
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;">
Restaurant
</h5>
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;">
Run your bar or
restaurant methodically</p>
</div>
</div>
<div class="col-lg-3">
<div class="my-4 d-flex flex-column justify-content-center"
style="background-color: #f6f8f9 !important; border-radius: 10px; padding: 2rem !important; height: 250px !important;">
<img src="./assets/icons/hotel-black.png" class="img-responsive mb-3" height="48px" width="48px">
<h5 style="font-family: Montserrat, sans-serif !important; color: #000 !important; font-weight: bold;">
Hotel Management
</h5>
<p style="font-family: Montserrat, sans-serif !important; font-size: 0.9rem !important;">
An
all-inclusive
hotel management application</p>
</div>
</div>
</div>
</section>
<!-- END OF END OF OUR INDUSTRIES -->
<!-- FOOTER -->
<!-- Footer Section -->
<section class="container" style="margin: 5rem auto 2rem;">
<div class="row" style="max-width:1540px;">
<div class="col-lg-12 d-flex flex-column justify-content-center align-items-center">
<h2 style="color: #212529 !important;">Need Help?</h2>
<hr
style="border: 3px solid #714B67 !important; background-color: #714B67 !important; width: 80px !important; margin-bottom: 2rem !important;" />
</div>
</div>
<!-- Contact Cards -->
<div class="row d-flex justify-content-center align-items-center"
style="max-width:1540px; margin: 0 auto 2rem auto;">
<div class="col-lg-12" style="padding: 0rem 3rem 2rem; border-radius: 10px; margin-right: 3rem; ">
<div class="row mt-4">
<div class="col-lg-6">
<a href="mailto:odoo@cybrosys.com" target="_blank" class="btn btn-block mb-2 deep_hover"
style="text-decoration: none; background-color: #4d4d4d; color: #FFF; border-radius: 4px;"><i
class="fa fa-envelope mr-2"></i>odoo@cybrosys.com</a>
</div>
<div class="col-lg-6">
<a href="https://api.whatsapp.com/send?phone=918606827707" target="_blank"
class="btn btn-block mb-2 deep_hover"
style="text-decoration: none; background-color: #25D366; color: #FFF; border-radius: 4px;"><i
class="fa fa-whatsapp mr-2"></i>+91 86068 27707</a>
</div>
</div>
</div>
</div>
<!-- End of Contact Cards -->
</section>
<!-- Footer -->
<section class="oe_container" style="padding: 2rem 3rem 1rem;">
<div class="row" style="max-width:1540px; margin: 0 auto; margin-right: 3rem; ">
<!-- Logo -->
<div class="col-lg-12 d-flex justify-content-center align-items-center" style="margin-top: 3rem;">
<img src="https://www.cybrosys.com/images/logo.png" width="200px" height="auto" />
</div>
<!-- End of Logo -->
<div class="col-lg-12">
<hr
style="margin-top: 3rem;background: linear-gradient(90deg, rgba(2,0,36,0) 0%, rgba(229,229,229,1) 33%, rgba(229,229,229,1) 58%, rgba(0,212,255,0) 100%); height: 2px; border-style: none;">
<!-- End of Footer Section -->
</div>
</div>
</section>
<!-- END OF FOOTER -->
</div>

17
advanced_excel_reports/static/src/js/excel_report.js

@ -0,0 +1,17 @@
/** @odoo-module **/
import { registry } from "@web/core/registry";
import { BlockUI } from "@web/core/ui/block_ui";
import { download } from "@web/core/network/download";
registry.category("ir.actions.report handlers").add("xlsx", async(action)=> {
//Passing data to the controller to print the excel file
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),
});
return true
}
});
Loading…
Cancel
Save