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.
214 lines
9.1 KiB
214 lines
9.1 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
import calendar
|
|
from collections import OrderedDict
|
|
from odoo import api, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = 'product.template'
|
|
|
|
@api.model
|
|
def get_data(self):
|
|
"""Returns data to the tiles of dashboard"""
|
|
product_data = {
|
|
'product_templates': self.search_count([]),
|
|
'product_variants': self.product_variant_id.search_count([]),
|
|
'storable': self.search_count([('type', '=', 'product')]),
|
|
'consumable': self.search_count([('type', '=', 'consu')]),
|
|
'service': self.search_count([('type', '=', 'service')]),
|
|
'category': self.categ_id.search_count([]),
|
|
'price_list': self.pricelist_id.search_count([]),
|
|
'product_attribute': self.pricelist_id.search_count([]),
|
|
}
|
|
return product_data
|
|
|
|
@api.model
|
|
def get_top_sale_data(self):
|
|
"""return the top sale"""
|
|
company_id = self.env.company.id
|
|
|
|
query = '''SELECT DISTINCT(product_template.name) 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.state = 'sale' and 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 = [record['total_quantity'] for record in top_product]
|
|
product_name = [record['product_name'] for record in top_product]
|
|
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) 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.state = 'purchase' and 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 = [record['total_quantity'] for record in top_product]
|
|
product_name = [record['product_name'] for record in top_product]
|
|
final = [total_quantity, product_name]
|
|
return final
|
|
|
|
@api.model
|
|
def get_products(self):
|
|
"""Returns the product, product name to the selection"""
|
|
data = self.search([])
|
|
product_id = [record.id for record in data]
|
|
product_name = [record.name for record in data]
|
|
|
|
vals = {'product_id': product_id, 'product_name': product_name}
|
|
return vals
|
|
|
|
@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_ids = [record['id'] for record in location]
|
|
location_names = [record['complete_name'] for record in location]
|
|
|
|
vals = {'location_id': location_ids, 'location_name': location_names}
|
|
return vals
|
|
|
|
@api.model
|
|
def get_prod_details(self, data):
|
|
"""Returns the monthly analysis of product movement"""
|
|
query = """select product_template.name as name,sum(stock_move_line.qty_done), 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_move = self._cr.dictfetchall()
|
|
month = []
|
|
for rec in product_move:
|
|
date_part = rec.get('date_part')
|
|
month.append(int(date_part.month))
|
|
rec.update({
|
|
'count': rec['sum'],
|
|
'dates': calendar.month_name[int(date_part.month)],
|
|
'month': int(date_part.month)
|
|
})
|
|
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'])
|
|
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']
|
|
print("j", cr)
|
|
# OrderedDict to maintain insertion order
|
|
result = OrderedDict()
|
|
for item in cr:
|
|
# Check if month already exists
|
|
if item['month'] not in result:
|
|
result[item['month']] = item
|
|
else:
|
|
# Update if count is higher
|
|
if item['count'] > result[item['month']]['count']:
|
|
result[item['month']] = item
|
|
# Convert back to list
|
|
result = list(result.values())
|
|
for rec in result:
|
|
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()
|
|
name_qty_dict = {record['name']: record['total_qty'] for record in
|
|
product_move}
|
|
|
|
names = list(name_qty_dict.keys())
|
|
quantity_done = list(name_qty_dict.values())
|
|
|
|
value = {
|
|
'name': names,
|
|
'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,
|
|
}
|
|
|