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.
225 lines
9.3 KiB
225 lines
9.3 KiB
# -*- coding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2025-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Aysha Shalin (odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC
|
|
# LICENSE (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
import calendar
|
|
from datetime import datetime
|
|
from collections import OrderedDict
|
|
from odoo import api, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
""" The ProductTemplate model inherited to function for creating the
|
|
Template Dashboard values. """
|
|
_inherit = 'product.template'
|
|
|
|
@api.model
|
|
def get_data(self):
|
|
""" Return data to the tiles of dashboard """
|
|
return {
|
|
'product_templates': self.search_count([]),
|
|
'product_variants': self.env['product.product'].search_count([]),
|
|
'combo': self.search_count([('type', '=', 'combo')]),
|
|
'goods': self.search_count([('type', '=', 'consu')]),
|
|
'service': self.search_count([('type', '=', 'service')]),
|
|
'category': self.env['product.category'].search_count([]),
|
|
'price_list': self.env['product.pricelist'].search_count([]),
|
|
'product_attribute': self.env['product.attribute'].search_count([]),
|
|
}
|
|
|
|
@api.model
|
|
def get_top_sale_data(self):
|
|
""" Return the top sold products """
|
|
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(
|
|
self.env.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 = [record.get('total_quantity') for record in top_product]
|
|
product_name = [record.get('product_name') for record in top_product]
|
|
final = [total_quantity, product_name]
|
|
return final
|
|
|
|
@api.model
|
|
def get_top_purchase_data(self):
|
|
""" Returns top purchased products """
|
|
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(
|
|
self.env.company.id) + '''
|
|
group by product_template.id
|
|
ORDER BY total_quantity DESC Limit 10 ''')
|
|
self._cr.execute(query)
|
|
top_product = self._cr.dictfetchall()
|
|
final = [
|
|
[record.get('total_quantity') for record in top_product],
|
|
[record.get('product_name') for record in top_product]
|
|
]
|
|
return final
|
|
|
|
@api.model
|
|
def get_product_location_analysis(self):
|
|
""" Returns the location and location id to the selection """
|
|
categ_qry = """select id, complete_name from stock_location"""
|
|
self._cr.execute(categ_qry)
|
|
location = self._cr.dictfetchall()
|
|
location_id = [rec['id'] for rec in location]
|
|
location_name = [rec['complete_name'] for rec in location]
|
|
value1 = {'location_id': location_id, 'location_name': location_name}
|
|
return value1
|
|
|
|
@api.model
|
|
def get_products(self):
|
|
""" Returns the product and product name to the selection """
|
|
data = self.env['product.template'].search([])
|
|
product_id = [record['id'] for record in data]
|
|
product_name = [self.env['product.template'].search(
|
|
[('id', '=', record['id'])]).name for record in data]
|
|
value1 = {'product_id': product_id, 'product_name': product_name}
|
|
return value1
|
|
|
|
@api.model
|
|
def get_years(self):
|
|
""" To get the last 5 years """
|
|
current_year = datetime.now().year
|
|
last_five_years = [current_year - year for year in range(5)]
|
|
return last_five_years
|
|
|
|
@api.model
|
|
def get_prod_details(self, data, year):
|
|
""" Returns the monthly analysis of product movement """
|
|
query = """
|
|
select product_template.name as name,sum(stock_move_line.quantity),
|
|
stock_move_line.date as date_part
|
|
from stock_move_line
|
|
inner join product_product
|
|
on product_product.id = stock_move_line.product_id
|
|
inner join product_template
|
|
on product_product.product_tmpl_id = product_template.id
|
|
where stock_move_line.company_id = %s and product_template.id = %s
|
|
group by product_template.name, stock_move_line.date
|
|
""" % (self.env.company.id, data)
|
|
self._cr.execute(query)
|
|
product_moves = self._cr.dictfetchall()
|
|
product_move = [move for move in product_moves if
|
|
str(move['date_part'].year) == year]
|
|
month = [int(rec['date_part'].month) for rec in product_move]
|
|
for rec in product_move:
|
|
date_part = rec.get('date_part')
|
|
rec.update({
|
|
'count': rec['sum'],
|
|
'dates': calendar.month_name[int(date_part.month)],
|
|
'month': int(date_part.month)
|
|
})
|
|
[product_move.append({
|
|
'count': 0,
|
|
'dates': calendar.month_name[rec],
|
|
'month': rec
|
|
}) for rec in range(1, 13) if rec not in month]
|
|
cr = sorted(product_move, key=lambda i: i['month'])
|
|
month_of_num = 0
|
|
total_count = 0
|
|
for rec in cr:
|
|
if month_of_num == rec['month']:
|
|
total_count += rec['count']
|
|
if rec['count'] > 0:
|
|
rec.update({'count': total_count})
|
|
else:
|
|
month_of_num = rec['month']
|
|
total_count = rec['count']
|
|
# OrderedDict to maintain insertion order
|
|
result = OrderedDict()
|
|
for item in cr:
|
|
# Check if month already exists
|
|
month = item['month']
|
|
if month not in result or item['count'] > result[month]['count']:
|
|
result[month] = item
|
|
# Convert back to list
|
|
result = list(result.values())
|
|
count = [rec['count'] for rec in result]
|
|
months = [rec['dates'] for rec in result]
|
|
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 = [record['sum'] for record in product_move]
|
|
name = [record['name'] for record in product_move]
|
|
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 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)))
|
|
self._cr.execute(query)
|
|
product_qty = self._cr.dictfetchall()
|
|
product = [rec['name'] for rec in product_qty]
|
|
quantity = [rec['quantity'] for rec in product_qty]
|
|
return {
|
|
'products': product,
|
|
'quantity': quantity,
|
|
}
|
|
|