@ -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 |
|||
|
|||
Sales All In One Report Generator |
|||
================================= |
|||
This module Helps to Generate All in One Dynamic Sale Report |
|||
|
|||
Configuration |
|||
============= |
|||
* No additional configurations needed |
|||
|
|||
License |
|||
------- |
|||
General Public License, Version 3 (AGPL v3). |
|||
(https://www.gnu.org/licenses/agpl-3.0-standalone.html) |
|||
|
|||
Company |
|||
------- |
|||
* `Cybrosys Techno Solutions <https://cybrosys.com/>`__ |
|||
|
|||
Credits |
|||
------- |
|||
Developer: (V17) Ayana KP, |
|||
(V18) Farook Al Ameen |
|||
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>`__ |
@ -0,0 +1,24 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Farook Al Ameen (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
from . import controllers |
|||
from . import models |
|||
from . import report |
@ -0,0 +1,55 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Farook Al Ameen (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
{ |
|||
'name': 'Sales All In One Report Generator', |
|||
'version': '18.0.1.0.0', |
|||
'category': 'Sales', |
|||
'summary': """This module Helps to Generate All in One Dynamic |
|||
Sale Report""", |
|||
'description': """This module facilitates comprehensive Sale Reports, |
|||
offering insights into a company's procurement analysis from various |
|||
angles, including orders, order details, sales representatives, and the |
|||
ability to filter data by different date ranges.""", |
|||
'author': 'Cybrosys Techno Solutions', |
|||
'company': 'Cybrosys Techno Solutions', |
|||
'maintainer': 'Cybrosys Techno Solutions', |
|||
'website': 'https://www.cybrosys.com', |
|||
'depends': ['sale_management'], |
|||
'data': [ |
|||
'security/ir.model.access.csv', |
|||
'report/sale_order_reports.xml', |
|||
'report/sale_order_templates.xml', |
|||
'views/sale_report_views.xml', |
|||
], |
|||
'assets': { |
|||
'web.assets_backend': [ |
|||
'sale_report_generator/static/src/js/sale_report.js', |
|||
'sale_report_generator/static/src/css/sale_report.css', |
|||
'sale_report_generator/static/src/xml/sale_report_templates.xml', |
|||
], |
|||
}, |
|||
'images': ['static/description/banner.gif'], |
|||
'license': 'AGPL-3', |
|||
'installable': True, |
|||
'auto_install': False, |
|||
'application': False, |
|||
} |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Farook Al Ameen (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
from . import sale_report_generator |
@ -0,0 +1,64 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Farook Al Ameen (odoo@cybrosys.com) |
|||
# |
|||
# 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 <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 TBXLSXReport(http.Controller): |
|||
"""Controller class to generate dynamic sale reports in Excel format. |
|||
Methods: |
|||
get_report_xlsx: Generate a dynamic sale report in Excel format and |
|||
send it as a response to a HTTP POST request. """ |
|||
@http.route('/sale_dynamic_xlsx_reports', type='http', auth='user', |
|||
methods=['POST'], csrf=False) |
|||
def get_report_xlsx(self, model, options, output_format, report_data, |
|||
report_name, dfr_data): |
|||
"""Generate a dynamic sale report in Excel format and send it as a |
|||
response to a HTTP POST request.""" |
|||
report_obj = request.env[model].with_user(request.session.uid) |
|||
dfr_data = dfr_data |
|||
options = 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(report_name + '.xlsx')) |
|||
] |
|||
) |
|||
report_obj.get_sale_xlsx_report(options, response, report_data, |
|||
dfr_data) |
|||
response.set_cookie('fileToken', token) |
|||
return response |
|||
except Exception as e: |
|||
se = http.serialize_exception(e) |
|||
error = { |
|||
'code': 200, |
|||
'message': 'Odoo Server Error', |
|||
'data': se |
|||
} |
|||
return request.make_response(html_escape(json.dumps(error))) |
@ -0,0 +1,6 @@ |
|||
## Module <sale_report_generator> |
|||
|
|||
#### 17.10.2024 |
|||
#### Version 18.0.1.0.0 |
|||
#### ADD |
|||
- Initial Commit for Sales All In One Report Generator |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Farook Al Ameen (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
from . import sales_report |
@ -0,0 +1,578 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Farook Al Ameen (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
import io |
|||
import json |
|||
from odoo import api, fields, models |
|||
try: |
|||
from odoo.tools.misc import xlsxwriter |
|||
except ImportError: |
|||
import xlsxwriter |
|||
|
|||
|
|||
class SalesReport(models.Model): |
|||
"""Model for generating sales reports. |
|||
Methods: |
|||
sale_report : Generate a sales report based on the provided option. |
|||
get_filter :This method relies on the 'get_filter_data' method to |
|||
retrieve filter data based on the provided option. It then formats the |
|||
filter data and returns a dictionary of filters to apply to the sales |
|||
report. |
|||
get_filter_data:This method relies on the 'get_filter_data' method to |
|||
retrieve filter data based on the provided option. It then formats the |
|||
filter data and returns a dictionary of filters to apply to the sales |
|||
report. |
|||
create : Create a new record for the current model. |
|||
write : Override the write method to perform additional actions when |
|||
updating a record. |
|||
_get_report_sub_lines: Generates sub-lines for a sales report based |
|||
on the given report type and date rangeand append to report_sub_lines. |
|||
_get_report_total_value : Retrieves the main lines of a report based on |
|||
the report type in data. |
|||
get_sale_xlsx_report:Generate a sales report in XLSX format based on |
|||
the specified filters. """ |
|||
_name = "sales.report" |
|||
_description = "Generate Sales Report" |
|||
|
|||
sale_report = fields.Char(string="Sale Report", |
|||
help="The generated sales report") |
|||
date_from = fields.Datetime(string="Start Date", |
|||
help="The starting date for the report") |
|||
date_to = fields.Datetime(string="End Date", |
|||
help="The ending date for the report") |
|||
report_type = fields.Selection([ |
|||
('report_by_order', 'Report By Order'), |
|||
('report_by_order_detail', 'Report By Order Detail'), |
|||
('report_by_product', 'Report By Product'), |
|||
('report_by_categories', 'Report By Categories'), |
|||
('report_by_salesperson', 'Report By Sales Person'), |
|||
('report_by_state', 'Report By State')], string='Report Type', |
|||
default='report_by_order', help="Select the type of report to generate") |
|||
|
|||
@api.model |
|||
def sale_report(self, option): |
|||
"""Generate a sales report based on the provided option.""" |
|||
report_values = self.env['sales.report'].browse(option[0]) |
|||
data = { |
|||
'report_type': report_values.report_type, |
|||
'model': self, |
|||
} |
|||
if report_values.date_from: |
|||
data.update({ |
|||
'date_from': report_values.date_from, |
|||
}) |
|||
if report_values.date_to: |
|||
data.update({ |
|||
'date_to': report_values.date_to, |
|||
}) |
|||
return { |
|||
'name': "Sale Orders", |
|||
'type': 'ir.actions.client', |
|||
'tag': 'sales_report', |
|||
'orders': data, |
|||
'filters': self.get_filter(option,report_values.date_from,report_values.date_to), |
|||
'report_lines': self._get_report_values(data).get('SALE'), |
|||
'report_main_line': self._get_report_values(data).get('sale_main'), |
|||
} |
|||
|
|||
def get_filter(self, option,date_from,date_to): |
|||
""" This method relies on the 'get_filter_data' method to retrieve |
|||
filter data based on the provided option. It then formats the filter |
|||
data and returns a dictionary of filters to apply to the sales |
|||
report.""" |
|||
data = self.get_filter_data(option) |
|||
filters = {} |
|||
if data.get('report_type') == 'report_by_order': |
|||
filters['report_type'] = 'Report By Order' |
|||
elif data.get('report_type') == 'report_by_order_detail': |
|||
filters['report_type'] = 'Report By Order Detail' |
|||
elif data.get('report_type') == 'report_by_product': |
|||
filters['report_type'] = 'Report By Product' |
|||
elif data.get('report_type') == 'report_by_categories': |
|||
filters['report_type'] = 'Report By Categories' |
|||
elif data.get('report_type') == 'report_by_salesperson': |
|||
filters['report_type'] = 'Report By Sales Person' |
|||
elif data.get('report_type') == 'report_by_state': |
|||
filters['report_type'] = 'Report By State' |
|||
else: |
|||
filters['report_type'] = 'report_by_order' |
|||
if date_from: |
|||
filters['date_from'] = date_from.strftime('%Y-%m-%d') |
|||
if date_to: |
|||
filters['date_to'] = date_to.strftime('%Y-%m-%d') |
|||
return filters |
|||
|
|||
def get_filter_data(self, option): |
|||
""" This method relies on the 'sales.report' model to retrieve the |
|||
sales report values.""" |
|||
default_filters = {} |
|||
report = self.env['sales.report'].browse(option[0]) |
|||
filter_dict = { |
|||
'report_type': report.report_type, |
|||
} |
|||
filter_dict.update(default_filters) |
|||
return filter_dict |
|||
|
|||
def _get_report_sub_lines(self, data, report, date_from, date_to): |
|||
""" Generates sublines for a sales report based on the given report |
|||
type and date range and append to report_sub_lines""" |
|||
report_sub_lines = [] |
|||
if data.get('report_type') == 'report_by_order': |
|||
query = '''select so.id,so.name as number,so.date_order, |
|||
so.partner_id,so.amount_total,so.user_id, |
|||
res_partner.name as customer,res_users.partner_id as |
|||
user_partner,so.id as id,sum(sale_order_line.product_uom_qty), |
|||
(SELECT res_partner.name as sales_man FROM res_partner |
|||
WHERE res_partner.id = res_users.partner_id) |
|||
from sale_order as so |
|||
inner join res_partner on so.partner_id = res_partner.id |
|||
inner join res_users on so.user_id = res_users.id |
|||
inner join sale_order_line on so.id = sale_order_line.order_id |
|||
''' |
|||
term = 'Where ' |
|||
if data.get('date_from'): |
|||
query += "Where so.date_order >= '%s' " % data.get('date_from') |
|||
term = 'AND ' |
|||
if data.get('date_to'): |
|||
query += term + "so.date_order <= '%s' " % data.get('date_to') |
|||
query += "AND so.company_id = '%s' " % self.env.company.id |
|||
query += "group by so.user_id,res_users.partner_id," \ |
|||
"res_partner.name,so.partner_id,so.date_order," \ |
|||
"so.name,so.amount_total,so.id" |
|||
self._cr.execute(query) |
|||
report_by_order = self._cr.dictfetchall() |
|||
report_sub_lines.append(report_by_order) |
|||
elif data.get('report_type') == 'report_by_order_detail': |
|||
query = '''SELECT |
|||
so.id, |
|||
so.name AS number, |
|||
so.date_order, |
|||
res_partner.name AS customer, |
|||
rc.name AS company, |
|||
product_template.name AS product, |
|||
product_product.default_code, |
|||
so_line.product_uom_qty, |
|||
so_line.price_subtotal, |
|||
so.amount_total, |
|||
so.partner_id, |
|||
so.user_id, |
|||
ru.id AS salesman_id, |
|||
res_partner_salesman.name AS salesman |
|||
FROM |
|||
sale_order AS so |
|||
JOIN |
|||
sale_order_line AS so_line ON so.id = so_line.order_id |
|||
JOIN |
|||
product_product ON so_line.product_id = product_product.id |
|||
JOIN |
|||
product_template ON product_product.product_tmpl_id = product_template.id |
|||
JOIN |
|||
res_partner ON so.partner_id = res_partner.id |
|||
JOIN |
|||
res_users ON so.user_id = res_users.id |
|||
JOIN |
|||
res_company AS rc ON so.company_id = rc.id |
|||
JOIN |
|||
res_users AS ru ON so.user_id = ru.id |
|||
JOIN |
|||
res_partner AS res_partner_salesman ON res_users.partner_id = res_partner_salesman.id |
|||
WHERE |
|||
1=1''' |
|||
if data.get('date_from'): |
|||
query += "AND so.date_order >= '%s' " % data.get('date_from') |
|||
if data.get('date_to'): |
|||
query += """ AND so.date_order <= '%s' """ % data.get('date_to') |
|||
query += "AND so.company_id = '%s' " % self.env.company.id |
|||
query += ''' GROUP BY |
|||
so.id, so.name, so.user_id, so.date_order, |
|||
res_partner.name, rc.name, product_template.name, |
|||
product_product.default_code, so_line.product_uom_qty, |
|||
so_line.price_subtotal, so.amount_total, so.partner_id, |
|||
so.user_id, ru.id, res_users.partner_id, res_partner_salesman.name |
|||
ORDER BY so.id asc; |
|||
''' |
|||
self._cr.execute(query) |
|||
report_by_order_details = self._cr.dictfetchall() |
|||
report_sub_lines.append(report_by_order_details) |
|||
elif data.get('report_type') == 'report_by_product': |
|||
query = '''SELECT so.id,so.date_order, |
|||
product_template.name as product, |
|||
product_category.name as category, |
|||
product_product.default_code,so_line.product_uom_qty, |
|||
so.amount_total,so.name as number |
|||
From sale_order as so |
|||
inner join sale_order_line as so_line on |
|||
so.id = so_line.order_id inner join product_product ON |
|||
so_line.product_id=product_product.id inner join |
|||
product_template ON product_product.product_tmpl_id = |
|||
product_template.id inner join product_category on |
|||
product_category.id = product_template.categ_id Where 1=1 ''' |
|||
|
|||
if data.get('date_from'): |
|||
query += "AND so.date_order >= '%s' " % data.get('date_from') |
|||
if data.get('date_to'): |
|||
query += " AND so.date_order <= '%s' " % data.get('date_to') |
|||
query += "AND so.company_id = '%s' " % self.env.company.id |
|||
query += ("group by so.id,so.date_order,product_template.name," |
|||
"product_category.name,product_product.default_code," |
|||
"so_line.product_uom_qty") |
|||
self._cr.execute(query) |
|||
report_by_product = self._cr.dictfetchall() |
|||
report_sub_lines.append(report_by_product) |
|||
elif data.get('report_type') == 'report_by_categories': |
|||
query = '''select product_category.name, |
|||
sum(so_line.product_uom_qty) as qty,sum(so_line.price_subtotal) as |
|||
amount_total from sale_order_line as so_line inner join |
|||
product_template on so_line.product_id = product_template.id |
|||
inner join product_category on product_category.id = |
|||
product_template.categ_id inner join sale_order on so_line.order_id |
|||
= sale_order.id ''' |
|||
term = 'Where ' |
|||
if data.get('date_from'): |
|||
query += "Where sale_order.date_order >= '%s' " % data.get( |
|||
'date_from') |
|||
term = 'AND ' |
|||
if data.get('date_to'): |
|||
query += term + "sale_order.date_order <= '%s' " % data.get( |
|||
'date_to') |
|||
query += "AND sale_order.company_id = '%s' " % self.env.company.id |
|||
query += "group by product_category.name" |
|||
self._cr.execute(query) |
|||
report_by_categories = self._cr.dictfetchall() |
|||
report_sub_lines.append(report_by_categories) |
|||
elif data.get('report_type') == 'report_by_salesperson': |
|||
query = ''' |
|||
select res_partner.name,sum(sale_order_line.product_uom_qty) as qty, |
|||
sum(sale_order_line.price_subtotal) as amount,count(so.id) as order |
|||
from sale_order as so |
|||
inner join res_users on so.user_id = res_users.id |
|||
inner join res_partner on res_users.partner_id = res_partner.id |
|||
inner join sale_order_line on so.id = sale_order_line.order_id ''' |
|||
term = 'Where ' |
|||
if data.get('date_from'): |
|||
query += "Where so.date_order >= '%s' " % data.get('date_from') |
|||
term = 'AND ' |
|||
if data.get('date_to'): |
|||
query += term + "so.date_order <= '%s' " % data.get('date_to') |
|||
query += "AND so.company_id = '%s' " % self.env.company.id |
|||
query += "group by res_partner.name" |
|||
self._cr.execute(query) |
|||
report_by_salesperson = self._cr.dictfetchall() |
|||
report_sub_lines.append(report_by_salesperson) |
|||
elif data.get('report_type') == 'report_by_state': |
|||
query = ''' |
|||
select so.state,count(so.id),sum(sale_order_line.product_uom_qty) as qty, |
|||
sum(sale_order_line.price_subtotal) as amount from sale_order as so |
|||
inner join sale_order_line on so.id = sale_order_line.order_id ''' |
|||
term = 'Where ' |
|||
if data.get('date_from'): |
|||
query += "Where so.date_order >= '%s' " % data.get('date_from') |
|||
term = 'AND ' |
|||
if data.get('date_to'): |
|||
query += term + "so.date_order <= '%s' " % data.get('date_to') |
|||
query += "AND so.company_id = '%s' " % self.env.company.id |
|||
query += "group by so.state" |
|||
self._cr.execute(query) |
|||
report_by_state = self._cr.dictfetchall() |
|||
report_sub_lines.append(report_by_state) |
|||
return report_sub_lines |
|||
|
|||
def _get_report_total_value(self, data, report): |
|||
"""Retrieves the main lines of a report based on the report type in |
|||
data.""" |
|||
report_main_lines = [] |
|||
if data.get('report_type') == 'report_by_order': |
|||
self._cr.execute(''' |
|||
select count(so.id) as order,sum(so.amount_total) as amount |
|||
from sale_order as so |
|||
''') |
|||
report_by_order = self._cr.dictfetchall() |
|||
report_main_lines.append(report_by_order) |
|||
elif data.get('report_type') == 'report_by_order_detail': |
|||
self._cr.execute(''' |
|||
select count(so_line.id) as order,sum(so_line.price_subtotal) as total |
|||
from sale_order_line as so_line ''') |
|||
report_by_order_detail = self._cr.dictfetchall() |
|||
report_main_lines.append(report_by_order_detail) |
|||
elif data.get('report_type') == 'report_by_product': |
|||
self._cr.execute(''' |
|||
select count(so_line.product_id) as order,sum(so_line.price_subtotal) |
|||
as amount from sale_order_line as so_line ''') |
|||
report_by_product = self._cr.dictfetchall() |
|||
report_main_lines.append(report_by_product) |
|||
else: |
|||
report_main_lines = False |
|||
return report_main_lines |
|||
|
|||
def _get_report_values(self, data): |
|||
""" Generate a dictionary of report values based on the input |
|||
data dictionary.""" |
|||
docs = data['model'] |
|||
date_from = data.get('date_from') |
|||
date_to = data.get('date_to') |
|||
if data['report_type'] == 'report_by_order_detail': |
|||
report = ['Report By Order Detail'] |
|||
elif data['report_type'] == 'report_by_product': |
|||
report = ['Report By Product'] |
|||
elif data['report_type'] == 'report_by_categories': |
|||
report = ['Report By Categories'] |
|||
elif data['report_type'] == 'report_by_salesperson': |
|||
report = ['Report By Sales Person'] |
|||
elif data['report_type'] == 'report_by_state': |
|||
report = ['Report By State'] |
|||
else: |
|||
report = ['Report By Order'] |
|||
report_res_total = self._get_report_total_value(data, report) |
|||
if data.get('report_type'): |
|||
report_res = \ |
|||
self._get_report_sub_lines(data, report, date_from, date_to)[0] |
|||
else: |
|||
report_res = self._get_report_sub_lines(data, report, date_from, |
|||
date_to) |
|||
if data.get('report_type') == 'report_by_order': |
|||
report_res_total = self._get_report_total_value(data, report)[0] |
|||
return { |
|||
'doc_ids': self.ids, |
|||
'docs': docs, |
|||
'SALE': report_res, |
|||
'sale_main': report_res_total, |
|||
} |
|||
|
|||
def get_sale_xlsx_report(self, data, response, report_data, dfrm_data): |
|||
"""Generate a sales report in XLSX format based on the specified |
|||
filters.""" |
|||
report_data_main = json.loads(report_data) |
|||
output = io.BytesIO() |
|||
filters = json.loads(data) |
|||
dfr_data = json.loads(dfrm_data) |
|||
f_date = dfr_data.get('filters') |
|||
date_from = f_date.get('date_from') |
|||
t_date = dfr_data.get('filters') |
|||
date_to = t_date.get('date_to') |
|||
workbook = xlsxwriter.Workbook(output, {'in_memory': True}) |
|||
sheet = workbook.add_worksheet() |
|||
head = workbook.add_format({'align': 'center', 'bold': True, |
|||
'font_size': '20px'}) |
|||
heading = workbook.add_format( |
|||
{'align': 'center', 'bold': True, 'font_size': '10px', |
|||
'border': 2, |
|||
'border_color': 'black'}) |
|||
txt_l = workbook.add_format( |
|||
{'align': 'center', 'font_size': '10px', 'border': 1, 'bold': True}) |
|||
sheet.merge_range('A2:H3', |
|||
'Sales Report', |
|||
head) |
|||
if report_data_main: |
|||
if filters.get('report_type') == 'report_by_order': |
|||
sheet.merge_range('B5:D5', 'Report By Order', txt_l) |
|||
if filters.get('date_from'): |
|||
sheet.write('A6', 'FROM DATE :', txt_l) |
|||
sheet.write('B6', date_from, txt_l) |
|||
if filters.get('date_to'): |
|||
sheet.write('C6', 'TO DATE :', txt_l) |
|||
sheet.write('D6', date_to, txt_l) |
|||
sheet.write('A7', 'Sale', heading) |
|||
sheet.write('B7', 'Date Order', heading) |
|||
sheet.write('C7', 'Customer', heading) |
|||
sheet.write('D7', 'Sales Person', heading) |
|||
sheet.write('E7', 'Total Qty', heading) |
|||
sheet.write('F7', 'Amount Total', heading) |
|||
lst = [] |
|||
for rec in report_data_main[0]: |
|||
lst.append(rec) |
|||
row = 6 |
|||
col = 0 |
|||
sheet.set_column(3, 0, 15) |
|||
sheet.set_column(4, 1, 15) |
|||
sheet.set_column(5, 2, 15) |
|||
sheet.set_column(6, 3, 15) |
|||
sheet.set_column(7, 4, 15) |
|||
sheet.set_column(8, 5, 15) |
|||
for rec_data in report_data_main: |
|||
row += 1 |
|||
sheet.write(row, col, rec_data['number'], txt_l) |
|||
sheet.write(row, col + 1, rec_data['date_order'], txt_l) |
|||
sheet.write(row, col + 2, rec_data['customer'], txt_l) |
|||
sheet.write(row, col + 3, rec_data['sales_man'], txt_l) |
|||
sheet.write(row, col + 4, rec_data['sum'], txt_l) |
|||
sheet.write(row, col + 5, rec_data['amount_total'], txt_l) |
|||
if filters.get('report_type') == 'report_by_order_detail': |
|||
sheet.merge_range('B5:D5', 'Report By Order Details ', txt_l) |
|||
if filters.get('date_from'): |
|||
sheet.write('A6', 'FROM DATE :', txt_l) |
|||
sheet.write('B6', date_from, txt_l) |
|||
if filters.get('date_to'): |
|||
sheet.write('C6', 'TO DATE :', txt_l) |
|||
sheet.write('D6', date_to, txt_l) |
|||
sheet.write('A7', 'Sale', heading) |
|||
sheet.write('B7', 'Date Order', heading) |
|||
sheet.write('C7', 'Customer', heading) |
|||
sheet.write('D7', 'Company', heading) |
|||
sheet.write('E7', 'Sales Person', heading) |
|||
sheet.write('F7', 'Product Name', heading) |
|||
sheet.write('G7', 'Product Code', heading) |
|||
sheet.write('H7', 'Quantity', heading) |
|||
sheet.write('I7', 'Price Subtotal', heading) |
|||
sheet.write('J7', 'Amount Total', heading) |
|||
lst = [] |
|||
for rec in report_data_main[0]: |
|||
lst.append(rec) |
|||
row = 6 |
|||
col = 0 |
|||
sheet.set_column(3, 0, 15) |
|||
sheet.set_column(4, 1, 15) |
|||
sheet.set_column(5, 2, 15) |
|||
sheet.set_column(6, 3, 15) |
|||
sheet.set_column(7, 4, 15) |
|||
sheet.set_column(8, 5, 15) |
|||
sheet.set_column(9, 6, 15) |
|||
sheet.set_column(10, 7, 15) |
|||
sheet.set_column(11, 8, 15) |
|||
sheet.set_column(12, 9, 15) |
|||
for rec_data in report_data_main: |
|||
row += 1 |
|||
sheet.write(row, col, rec_data['number'], txt_l) |
|||
sheet.write(row, col + 1, rec_data['date_order'], txt_l) |
|||
sheet.write(row, col + 2, rec_data['customer'], txt_l) |
|||
sheet.write(row, col + 3, rec_data['company'], txt_l) |
|||
sheet.write(row, col + 4, rec_data['salesman'], txt_l) |
|||
sheet.write(row, col + 5, rec_data['product']['en_US'], txt_l) |
|||
sheet.write(row, col + 6, rec_data['default_code'], txt_l) |
|||
sheet.write(row, col + 7, rec_data['product_uom_qty'], txt_l) |
|||
sheet.write(row, col + 8, rec_data['price_subtotal'], txt_l) |
|||
sheet.write(row, col + 9, rec_data['amount_total'], txt_l) |
|||
if filters.get('report_type') == 'report_by_product': |
|||
sheet.merge_range('B5:D5', 'Report By Products', txt_l) |
|||
if filters.get('date_from'): |
|||
sheet.write('A6', 'FROM DATE :', txt_l) |
|||
sheet.write('B6', date_from, txt_l) |
|||
if filters.get('date_to'): |
|||
sheet.write('C6', 'TO DATE :', txt_l) |
|||
sheet.write('D6', date_to, txt_l) |
|||
sheet.write('A7', 'Product', heading) |
|||
sheet.write('B7', 'Category', heading) |
|||
sheet.write('C7', 'Product Code', heading) |
|||
sheet.write('D7', 'Quantity', heading) |
|||
sheet.write('E7', 'Amount Total', heading) |
|||
lst = [] |
|||
for rec in report_data_main[0]: |
|||
lst.append(rec) |
|||
row = 6 |
|||
col = 0 |
|||
sheet.set_column(3, 0, 15) |
|||
sheet.set_column(4, 1, 15) |
|||
sheet.set_column(5, 2, 15) |
|||
sheet.set_column(6, 3, 15) |
|||
sheet.set_column(7, 4, 15) |
|||
for rec_data in report_data_main: |
|||
row += 1 |
|||
sheet.write(row, col, rec_data['product']['en_US'], txt_l) |
|||
sheet.write(row, col + 1, rec_data['category'], txt_l) |
|||
sheet.write(row, col + 2, rec_data['default_code'], txt_l) |
|||
sheet.write(row, col + 3, rec_data['product_uom_qty'], txt_l) |
|||
sheet.write(row, col + 4, rec_data['amount_total'], txt_l) |
|||
if filters.get('report_type') == 'report_by_categories': |
|||
sheet.merge_range('B5:D5', 'Report By Categories', txt_l) |
|||
if filters.get('date_from'): |
|||
sheet.write('A6', 'FROM DATE :', txt_l) |
|||
sheet.write('B6', date_from, txt_l) |
|||
if filters.get('date_to'): |
|||
sheet.write('C6', 'TO DATE :', txt_l) |
|||
sheet.write('D6', date_to, txt_l) |
|||
sheet.write('B7', 'Category', heading) |
|||
sheet.write('C7', 'Qty', heading) |
|||
sheet.write('D7', 'Amount Total', heading) |
|||
lst = [] |
|||
for rec in report_data_main[0]: |
|||
lst.append(rec) |
|||
row = 6 |
|||
col = 1 |
|||
sheet.set_column(3, 1, 15) |
|||
sheet.set_column(4, 2, 15) |
|||
sheet.set_column(5, 3, 15) |
|||
for rec_data in report_data_main: |
|||
row += 1 |
|||
sheet.write(row, col, rec_data['name'], txt_l) |
|||
sheet.write(row, col + 1, rec_data['qty'], txt_l) |
|||
sheet.write(row, col + 2, rec_data['amount_total'], txt_l) |
|||
if filters.get('report_type') == 'report_by_salesperson': |
|||
sheet.merge_range('B5:D5', 'Report By Salesperson', txt_l) |
|||
if filters.get('date_from'): |
|||
sheet.write('A6', 'FROM DATE :', txt_l) |
|||
sheet.write('B6', date_from, txt_l) |
|||
if filters.get('date_to'): |
|||
sheet.write('C6', 'TO DATE :', txt_l) |
|||
sheet.write('D6', date_to, txt_l) |
|||
sheet.write('A7', 'Sales Person', heading) |
|||
sheet.write('B7', 'Total Order', heading) |
|||
sheet.write('C7', 'Total Qty', heading) |
|||
sheet.write('D7', 'Total Amount', heading) |
|||
lst = [] |
|||
for rec in report_data_main[0]: |
|||
lst.append(rec) |
|||
row = 6 |
|||
col = 0 |
|||
sheet.set_column(3, 0, 15) |
|||
sheet.set_column(4, 1, 15) |
|||
sheet.set_column(5, 2, 15) |
|||
sheet.set_column(6, 3, 15) |
|||
for rec_data in report_data_main: |
|||
row += 1 |
|||
sheet.write(row, col, rec_data['name'], txt_l) |
|||
sheet.write(row, col + 1, rec_data['order'], txt_l) |
|||
sheet.write(row, col + 2, rec_data['qty'], txt_l) |
|||
sheet.write(row, col + 3, rec_data['amount'], txt_l) |
|||
if filters.get('report_type') == 'report_by_state': |
|||
sheet.merge_range('B5:D5', 'Report By State ', txt_l) |
|||
if filters.get('date_from'): |
|||
sheet.write('A6', 'FROM DATE :', txt_l) |
|||
sheet.write('B6', date_from, txt_l) |
|||
if filters.get('date_to'): |
|||
sheet.write('C6', 'TO DATE :', txt_l) |
|||
sheet.write('D6', date_to, txt_l) |
|||
sheet.write('A7', 'State', heading) |
|||
sheet.write('B7', 'Total Count', heading) |
|||
sheet.write('C7', 'Quantity', heading) |
|||
sheet.write('D7', 'Amount', heading) |
|||
lst = [] |
|||
for rec in report_data_main[0]: |
|||
lst.append(rec) |
|||
row = 6 |
|||
col = 0 |
|||
sheet.set_column(3, 0, 15) |
|||
sheet.set_column(4, 1, 15) |
|||
sheet.set_column(5, 2, 15) |
|||
sheet.set_column(6, 3, 15) |
|||
for rec_data in report_data_main: |
|||
row += 1 |
|||
if rec_data['state'] == 'draft': |
|||
sheet.write(row, col, 'Quotation', txt_l) |
|||
elif rec_data['state'] == 'sent': |
|||
sheet.write(row, col, 'Quotation Sent', txt_l) |
|||
elif rec_data['state'] == 'sale': |
|||
sheet.write(row, col, 'Sale Order', txt_l) |
|||
sheet.write(row, col + 1, rec_data['count'], txt_l) |
|||
sheet.write(row, col + 2, rec_data['qty'], txt_l) |
|||
sheet.write(row, col + 3, rec_data['amount'], txt_l) |
|||
workbook.close() |
|||
output.seek(0) |
|||
response.stream.write(output.read()) |
|||
output.close() |
@ -0,0 +1,22 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Farook Al Ameen (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
from . import sale_order_report |
@ -0,0 +1,43 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################### |
|||
# |
|||
# Cybrosys Technologies Pvt. Ltd. |
|||
# |
|||
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>) |
|||
# Author: Farook Al Ameen (odoo@cybrosys.com) |
|||
# |
|||
# 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 <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################### |
|||
from odoo import api, models |
|||
|
|||
|
|||
class SaleOrderReport(models.AbstractModel): |
|||
"""Model for generating sale order reports. |
|||
Methods: |
|||
_get_report_values: Returns the report data for a sale order report.""" |
|||
|
|||
_name = 'report.sale_report_generator.sale_order_report' |
|||
_description = 'Sale Report Generator' |
|||
|
|||
@api.model |
|||
def _get_report_values(self, docids, data=None): |
|||
"""Returns the report data for a sale order report.""" |
|||
if self.env.context.get('sale_order_report'): |
|||
if data.get('report_data'): |
|||
data.update({'report_main_line_data': data.get( |
|||
'report_data')['report_lines'], |
|||
'Filters': data.get('report_data')['filters'], |
|||
'company': self.env.company, |
|||
}) |
|||
return data |
@ -0,0 +1,11 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<!-- Report Function--> |
|||
<record id="action_report_sale_all_in_one" model="ir.actions.report"> |
|||
<field name="name">Sales All In One Report</field> |
|||
<field name="model">sales.report</field> |
|||
<field name="report_type">qweb-pdf</field> |
|||
<field name="report_name">sale_report_generator.sale_order_report</field> |
|||
<field name="report_file">sale_report_generator.sale_order_report</field> |
|||
</record> |
|||
</odoo> |
@ -0,0 +1,400 @@ |
|||
<?xml version="1.0" encoding="UTF-8" ?> |
|||
<odoo> |
|||
<!-- It calls different reports depending on the selected filter in the application's user interface --> |
|||
<template id="sale_order_report"> |
|||
<t t-call="web.html_container"> |
|||
<t t-call="web.internal_layout"> |
|||
<t t-if="Filters.get('report_type')=='Report By Order'"> |
|||
<t t-call="sale_report_generator.report_order"/> |
|||
</t> |
|||
<t t-if="Filters.get('report_type')=='Report By Order Detail'"> |
|||
<t t-call="sale_report_generator.report_order_detail"/> |
|||
</t> |
|||
<t t-if="Filters.get('report_type')=='Report By Product'"> |
|||
<t t-call="sale_report_generator.report_product"/> |
|||
</t> |
|||
<t t-if="Filters.get('report_type')=='Report By Categories'"> |
|||
<t t-call="sale_report_generator.report_category"/> |
|||
</t> |
|||
<t t-if="Filters.get('report_type')=='Report By Sales Person'"> |
|||
<t t-call="sale_report_generator.report_salesman"/> |
|||
</t> |
|||
<t t-if="Filters.get('report_type')=='Report By State'"> |
|||
<t t-call="sale_report_generator.report_state"/> |
|||
</t> |
|||
</t> |
|||
</t> |
|||
</template> |
|||
<!-- Pdf Order --> |
|||
<template id="report_order"> |
|||
<div class="page"> |
|||
<div class="oe_structure"/> |
|||
<span t-if="Filters.get('date_from')"> |
|||
<strong>From:</strong> |
|||
<t t-esc="Filters['date_from']"/> |
|||
</span> |
|||
<br/> |
|||
<span t-if="Filters.get('date_to')"> |
|||
<strong>To:</strong> |
|||
<t t-esc="Filters['date_to']"/> |
|||
</span> |
|||
<div> |
|||
<div style="width:100%;"> |
|||
<div style="text-align:centre;" class="row"> |
|||
<div class="col-4"> |
|||
<strong>Report Type:</strong> |
|||
<t t-esc="Filters.get('report_type')"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<br/> |
|||
<table class="table table-sm table-reports"> |
|||
<thead> |
|||
<tr> |
|||
<th colspan="6" class="text-left">Sale</th> |
|||
<th colspan="6" class="text-center">Date Order</th> |
|||
<th colspan="6" class="text-right">Customer</th> |
|||
<th colspan="6" class="text-right">Sales Person</th> |
|||
<th colspan="6" class="text-center">Total Qty</th> |
|||
<th colspan="6" class="text-left">Amount Total</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody class="text-left"> |
|||
<t t-foreach="report_main_line_data" t-as="main"> |
|||
<tr style="font-weight: bold;"> |
|||
<td colspan="6"> |
|||
<span t-esc="main['number']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['date_order']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['customer']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['sales_man']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['sum']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['amount_total']"/> |
|||
</td> |
|||
</tr> |
|||
</t> |
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
<br/> |
|||
</div> |
|||
</template> |
|||
<!-- Pdf Order By Detail --> |
|||
<template id="report_order_detail"> |
|||
<div class="page"> |
|||
<div class="oe_structure"/> |
|||
<span t-if="Filters.get('date_from')"> |
|||
<strong>From:</strong> |
|||
<t t-esc="Filters['date_from']"/> |
|||
</span> |
|||
<br/> |
|||
<span t-if="Filters.get('date_to')"> |
|||
<strong>To:</strong> |
|||
<t t-esc="Filters['date_to']"/> |
|||
</span> |
|||
<div> |
|||
<div style="width:100%;"> |
|||
<div style="text-align:centre;" class="row"> |
|||
<div class="col-4"> |
|||
<strong>Report Type:</strong> |
|||
<t t-esc="Filters.get('report_type')"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<br/> |
|||
<table class="table table-sm table-reports"> |
|||
<thead> |
|||
<tr class="text-right"> |
|||
<th colspan="6">Sale</th> |
|||
<th colspan="6">Date Order</th> |
|||
<th colspan="6">Customer</th> |
|||
<th colspan="6">Company</th> |
|||
<th colspan="6">Sales Person</th> |
|||
<th colspan="6">Product Name</th> |
|||
<th colspan="6">Product Code</th> |
|||
<th colspan="6">Quantity</th> |
|||
<th colspan="6">Price Subtotal</th> |
|||
<th colspan="6">Amount Total</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
<t t-foreach="report_main_line_data" t-as="main"> |
|||
<tr style="font-weight: bold;"> |
|||
<td colspan="6"> |
|||
<span t-esc="main['number']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['date_order']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['customer']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['company']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['salesman']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['product']['en_US']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['default_code']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['product_uom_qty']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['price_subtotal']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['amount_total']"/> |
|||
</td> |
|||
</tr> |
|||
</t> |
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
<br/> |
|||
</div> |
|||
</template> |
|||
<!-- Pdf Product --> |
|||
<template id="report_product"> |
|||
<div class="page"> |
|||
<div class="oe_structure"/> |
|||
<span t-if="Filters.get('date_from')"> |
|||
<strong>From:</strong> |
|||
<t t-esc="Filters['date_from']"/> |
|||
</span> |
|||
<br/> |
|||
<span t-if="Filters.get('date_to')"> |
|||
<strong>To:</strong> |
|||
<t t-esc="Filters['date_to']"/> |
|||
</span> |
|||
<div> |
|||
<div style="width:100%;"> |
|||
<div style="text-align:centre;" class="row"> |
|||
<div class="col-4"> |
|||
<strong>Report Type:</strong> |
|||
<t t-esc="Filters.get('report_type')"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<br/> |
|||
<table class="table table-sm table-reports"> |
|||
<thead> |
|||
<tr> |
|||
<th colspan="6" class="text-left">Product</th> |
|||
<th colspan="6" class="text-center">Category</th> |
|||
<th colspan="6" class="text-center">Product Code |
|||
</th> |
|||
<th colspan="6" class="text-center">Quantity</th> |
|||
<th colspan="6">Amount Total</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
<t t-foreach="report_main_line_data" t-as="main"> |
|||
<tr style="font-weight: bold;"> |
|||
<td colspan="6"> |
|||
<span t-esc="main['product']['en_US']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['category']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['default_code']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['product_uom_qty']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['amount_total']"/> |
|||
</td> |
|||
</tr> |
|||
</t> |
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
<br/> |
|||
</div> |
|||
</template> |
|||
<!-- Pdf Category --> |
|||
<template id="report_category"> |
|||
<div class="page"> |
|||
<div class="oe_structure"/> |
|||
<span t-if="Filters.get('date_from')"> |
|||
<strong>From:</strong> |
|||
<t t-esc="Filters['date_from']"/> |
|||
</span> |
|||
<br/> |
|||
<span t-if="Filters.get('date_to')"> |
|||
<strong>To:</strong> |
|||
<t t-esc="Filters['date_to']"/> |
|||
</span> |
|||
<div> |
|||
<div style="width:100%;"> |
|||
<div style="text-align:centre;" class="row"> |
|||
<div class="col-4"> |
|||
<strong>Report Type:</strong> |
|||
<t t-esc="Filters.get('report_type')"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<br/> |
|||
<table class="table table-sm table-reports"> |
|||
<thead> |
|||
<tr> |
|||
<th colspan="6">Category</th> |
|||
<th colspan="6">Qty</th> |
|||
<th colspan="6">Amount Total</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
<t t-foreach="report_main_line_data" |
|||
t-as="sale_category"> |
|||
<tr style="font-weight: bold;"> |
|||
<td colspan="6"> |
|||
<span t-esc="sale_category['name']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="sale_category['qty']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="sale_category['amount_total']"/> |
|||
</td> |
|||
</tr> |
|||
</t> |
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
<br/> |
|||
</div> |
|||
</template> |
|||
<!-- PDF Salesman --> |
|||
<template id="report_salesman"> |
|||
<div class="page"> |
|||
<div class="oe_structure"/> |
|||
<span t-if="Filters.get('date_from')"> |
|||
<strong>From:</strong> |
|||
<t t-esc="Filters['date_from']"/> |
|||
</span> |
|||
<br/> |
|||
<span t-if="Filters.get('date_to')"> |
|||
<strong>To:</strong> |
|||
<t t-esc="Filters['date_to']"/> |
|||
</span> |
|||
<div> |
|||
<div style="width:100%;"> |
|||
<div style="text-align:centre;" class="row"> |
|||
<div class="col-4"> |
|||
<strong>Report Type:</strong> |
|||
<t t-esc="Filters.get('report_type')"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<br/> |
|||
<table class="table table-sm table-reports"> |
|||
<thead> |
|||
<tr> |
|||
<th colspan="6">Sales Person</th> |
|||
<th colspan="6">Total Order</th> |
|||
<th colspan="6">Total Qty</th> |
|||
<th colspan="6">Total Amount</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
<t t-foreach="report_main_line_data" t-as="main"> |
|||
<tr style="font-weight: bold;"> |
|||
<td colspan="6"> |
|||
<span t-esc="main['name']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['order']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['qty']"/> |
|||
</td> |
|||
<td colspan="6"> |
|||
<span t-esc="main['amount']"/> |
|||
</td> |
|||
</tr> |
|||
</t> |
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
<br/> |
|||
</div> |
|||
</template> |
|||
<!-- PDF By State --> |
|||
<template id="report_state"> |
|||
<div class="page"> |
|||
<div class="oe_structure"/> |
|||
<span t-if="Filters.get('date_from')"> |
|||
<strong>From:</strong> |
|||
<t t-esc="Filters['date_from']"/> |
|||
</span> |
|||
<br/> |
|||
<span t-if="Filters.get('date_to')"> |
|||
<strong>To:</strong> |
|||
<t t-esc="Filters['date_to']"/> |
|||
</span> |
|||
<div> |
|||
<div style="width:100%;"> |
|||
<div style="text-align:centre;" class="row"> |
|||
<div class="col-4"> |
|||
<strong>Report Type:</strong> |
|||
<t t-esc="Filters.get('report_type')"/> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
<br/> |
|||
<table class="table table-sm table-reports"> |
|||
<thead> |
|||
<tr class="text-left"> |
|||
<th colspan="6">State</th> |
|||
<th colspan="6">Total Count</th> |
|||
<th colspan="6">Quantity</th> |
|||
<th colspan="6">Amount</th> |
|||
</tr> |
|||
</thead> |
|||
<tbody> |
|||
<t t-foreach="report_main_line_data" t-as="main"> |
|||
<tr style="font-weight: bold;"> |
|||
<td colspan="6"> |
|||
<t t-if="main['state'] == 'draft'"> |
|||
<span>Quotation</span> |
|||
</t> |
|||
<t t-if="main['state'] == 'sent'"> |
|||
<span>Quotation Sent</span> |
|||
</t> |
|||
<t t-if="main['state'] == 'sale'"> |
|||
<span>Sale Order</span> |
|||
</t> |
|||
</td> |
|||
<td colspan="6" class="text-left"> |
|||
<span t-esc="main['count']"/> |
|||
</td> |
|||
<td colspan="6" class="text-left"> |
|||
<span t-esc="main['qty']"/> |
|||
</td> |
|||
<td colspan="6" class="text-left"> |
|||
<span t-esc="main['amount']"/> |
|||
</td> |
|||
</tr> |
|||
</t> |
|||
</tbody> |
|||
</table> |
|||
</div> |
|||
<br/> |
|||
</div> |
|||
</template> |
|||
</odoo> |
|
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 628 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 210 KiB |
After Width: | Height: | Size: 209 KiB |
After Width: | Height: | Size: 109 KiB |
After Width: | Height: | Size: 495 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 624 B |
After Width: | Height: | Size: 136 KiB |
After Width: | Height: | Size: 214 KiB |
After Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 310 B |
After Width: | Height: | Size: 929 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 542 B |
After Width: | Height: | Size: 576 B |
After Width: | Height: | Size: 733 B |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 4.0 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 313 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 600 B |
After Width: | Height: | Size: 673 B |
After Width: | Height: | Size: 2.0 KiB |
After Width: | Height: | Size: 462 B |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 926 B |
After Width: | Height: | Size: 9.0 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 7.0 KiB |
After Width: | Height: | Size: 878 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 800 B |
After Width: | Height: | Size: 905 B |
After Width: | Height: | Size: 189 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 839 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 26 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 427 B |
After Width: | Height: | Size: 627 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 988 B |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 5.0 KiB |
After Width: | Height: | Size: 875 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 912 KiB |
After Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 44 KiB |
After Width: | Height: | Size: 46 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 229 KiB |
After Width: | Height: | Size: 208 KiB |
After Width: | Height: | Size: 219 KiB |
After Width: | Height: | Size: 325 KiB |
After Width: | Height: | Size: 195 KiB |
After Width: | Height: | Size: 67 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 198 KiB |
After Width: | Height: | Size: 880 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 9.5 KiB |