# -*- coding: utf-8 -*- ############################################################################# # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2023-TODAY Cybrosys Technologies() # Author: Cybrosys Techno Solutions() # # You can modify it under the terms of the GNU 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 . # ############################################################################# from odoo import fields, models, api import calendar class ProductTemplate(models.Model): _inherit = 'product.template' @api.model def get_data(self): """Returns data to the tiles of dashboard""" product_templates = self.env['product.template'].search([]) product_variants = self.env['product.product'].search([]) storable = self.env['product.template'].search([('detailed_type', '=', 'product')]) consumable = self.env['product.template'].search([('detailed_type', '=', 'consu')]) service = self.env['product.template'].search([('detailed_type', '=', 'service')]) category = self.env['product.category'].search([]) price_list = self.env['product.pricelist'].search([]) attribute = self.env['product.attribute'].search([]) return { 'product_templates': len(product_templates), 'product_variants': len(product_variants), 'storable': len(storable), 'consumable': len(consumable), 'service': len(service), 'category': len(category), 'price_list': len(price_list), 'product_attribute': len(attribute), } @api.model def get_top_sale_data(self): """return the top sale""" company_id = self.env.company.id query = '''select DISTINCT(product_template.name ->> 'en_US') as product_name,sum(product_uom_qty) as total_quantity from sale_order_line inner join product_product on product_product.id=sale_order_line.product_id inner join product_template on product_product.product_tmpl_id = product_template.id where sale_order_line.company_id = ''' + str( company_id) + ''' group by product_template.id ORDER BY total_quantity DESC Limit 10 ''' self._cr.execute(query) top_product = self._cr.dictfetchall() total_quantity = [] for record in top_product: total_quantity.append(record.get('total_quantity')) product_name = [] for record in top_product: product_name.append(record.get('product_name')) final = [total_quantity, product_name] return final @api.model def get_top_purchase_data(self): """Returns top purchase data""" company_id = self.env.company.id query = '''select DISTINCT(product_template.name ->> 'en_US') as product_name,sum(product_qty) as total_quantity from purchase_order_line inner join product_product on product_product.id=purchase_order_line.product_id inner join product_template on product_product.product_tmpl_id = product_template.id where purchase_order_line.company_id = ''' + str( company_id) + ''' group by product_template.id ORDER BY total_quantity DESC Limit 10 ''' self._cr.execute(query) top_product = self._cr.dictfetchall() total_quantity = [] for record in top_product: total_quantity.append(record.get('total_quantity')) product_name = [] for record in top_product: product_name.append(record.get('product_name')) final = [total_quantity, product_name] return final @api.model def get_product_location_analysis(self): """Returns the location, location id to the selection""" company = self.env.user.company_id.id categ_qry = """select id, complete_name from stock_location""" self._cr.execute(categ_qry) location = self._cr.dictfetchall() location_id = [] location_name = [] for record in location: location_id.append(record.get('id')) location_name.append(record.get('complete_name')) value1 = {'location_id': location_id, 'location_name': location_name} return value1 @api.model def get_products(self): """Returns the product, product name to the selection""" data = self.env['product.template'].search([]) product_id = [] product_name = [] for record in data: product_id.append(record.id) product_name.append(self.env['product.template'].search([('id', '=', record.id)]).name) value1 = {'product_id': product_id, 'product_name': product_name} return value1 @api.model def get_prod_details(self, data): """Returns the monthly analysis of product movement""" query = """select product_template.name ->> 'en_US' as name,sum(stock_move_line.qty_done),EXTRACT(month from stock_move_line.date) from stock_move_line inner join product_product on stock_move_line.product_id = product_product.id inner join product_template on product_product.product_tmpl_id = product_template.id where stock_move_line.company_id = %s and stock_move_line.product_id = %s group by product_template.name, stock_move_line.date""" % (self.env.company.id, data) self._cr.execute(query) product_move = self._cr.dictfetchall() month = [] for rec in product_move: month.append(int(rec['date_part'])) rec.update({ 'count': rec['sum'], 'dates': calendar.month_name[int(rec['date_part'])], 'month': int(rec['date_part']) }) for rec in range(1, 13): if rec not in month: product_move.append({ 'count': 0, 'dates': calendar.month_name[rec], 'month': rec }) count = [] months = [] cr = sorted(product_move, key=lambda i: i['month']) for rec in cr: count.append(rec['count']) months.append(rec['dates']) return { 'count': count, 'dates': months } @api.model def product_move_by_category(self, args): """rpc method of product moves by category Returns category name and quantity_done""" category_id = int(args) company_id = self.env.company.id query = ('''select product_template.name,sum(stock_move_line.qty_done) from stock_move_line inner join product_product on stock_move_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_template.categ_id = product_category.id where stock_move_line.company_id = %s and product_category.id = %s group by product_template.name''' % (company_id, category_id)) self._cr.execute(query) product_move = self._cr.dictfetchall() quantity_done = [] name = [] for record in product_move: quantity_done.append(record.get('sum')) name.append(record.get('name')) value = { 'name': name, 'count': quantity_done, } return value @api.model def get_product_qty_by_loc(self, args): """Returns product qty based on the location selected""" query = (''' select sl.complete_name, pt.name ->> 'en_US' as name, sq.quantity from stock_quant sq inner join stock_location sl on sq.location_id = sl.id inner join product_product pp on sq.product_id = pp.id inner join product_template pt on pp.product_tmpl_id = pt.id where sq.company_id = '%s' and sl.id = '%s' group by sl.complete_name,pt.name, sq.quantity ''' % (self.env.company.id, int(args))) result = self._cr.execute(query) product_qty = self._cr.dictfetchall() product = [] quantity = [] for rec in product_qty: product.append(rec['name']) quantity.append(rec['quantity']) return { 'products': product, 'quantity': quantity, }