# -*- coding: utf-8 -*- ############################################################################# # # Cybrosys Technologies Pvt. Ltd. # # Copyright (C) 2025-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 class StockMove(models.Model): """This class inherits the model stock.move and add the field analytic to it, which shows the selected analytic distribution in sale.order.line""" _inherit = 'stock.move' analytic = fields.Json('Analytic', compute='_compute_analytic', help='Analytic Distribution') analytic_precision = fields.Integer(store=False, help='Define the precision of ' 'percentage decimal value', default=lambda self: self.env[ 'decimal.precision'].precision_get( "Percentage Analytic")) def _compute_analytic(self): """This function is used to show the selected analytic distribution in stock.move """ for rec in self: if rec.sale_line_id: rec.analytic = False if rec.purchase_line_id: rec.analytic = rec.purchase_line_id.analytic_distribution else: rec.analytic = False