You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							578 lines
						
					
					
						
							28 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							578 lines
						
					
					
						
							28 KiB
						
					
					
				| # -*- 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()
 | |
| 
 |