# -*- coding: utf-8 -*- ############################################################################# # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2020-TODAY Cybrosys Technologies() # Author: Midilaj () # # 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 models, fields, api, tools class ProductBrand(models.Model): _inherit = 'product.template' brand_id = fields.Many2one('product.brand', string='Brand') class BrandProduct(models.Model): _name = 'product.brand' name = fields.Char(String="Name") brand_image = fields.Binary() member_ids = fields.One2many('product.template', 'brand_id') product_count = fields.Char(String='Product Count', compute='get_count_products', store=True) @api.depends('member_ids') def get_count_products(self): self.product_count = len(self.member_ids) class BrandPivotInvoicing(models.Model): _inherit = "account.invoice.report" brand_id = fields.Many2one('product.brand', string='Brand') def _select(self): res = super(BrandPivotInvoicing, self)._select() query = res.split('template.categ_id AS product_categ_id,', 1) res = query[0] + 'template.categ_id as product_categ_id,template.brand_id as brand_id,' + query[1] return res def _group_by(self): res = super(BrandPivotInvoicing, self)._group_by() query = res.split('template.categ_id,', 1) res = query[0] + 'template.categ_id,template.brand_id,' + query[1] return res