Odoo18-Base/addons/hr_expense/models/product_product.py
2025-03-10 11:12:23 +07:00

29 lines
1.6 KiB
Python

from odoo import api, fields, models, _
class ProductProduct(models.Model):
_inherit = "product.product"
standard_price_update_warning = fields.Char(compute="_compute_standard_price_update_warning")
@api.onchange('standard_price')
def _compute_standard_price_update_warning(self):
undone_expenses = self.env['hr.expense']._read_group(
domain=[('state', '=', 'draft'), ('product_id', 'in', self.ids)],
fields=['unit_amount:array_agg'],
groupby=['product_id'],
)
mapp = {row['product_id'][0]: row['unit_amount'] for row in undone_expenses}
for product in self:
product.standard_price_update_warning = False
if product._origin.id in mapp:
# The following list is composed of all the unit_amounts of expenses that use this product and should NOT trigger a warning.
# Those are the amounts of any undone expense using this product and 0.0 which is the default unit_amount.
unit_amounts_no_warning = {float(unit_amount) for unit_amount in mapp[product._origin.id]}
rounded_price = self.env.company.currency_id.round(product.standard_price)
if rounded_price and (len(unit_amounts_no_warning) > 1 or (len(unit_amounts_no_warning) == 1 and rounded_price not in unit_amounts_no_warning)):
product.standard_price_update_warning = _(
"There are unsubmitted expenses linked to this category. Updating the category cost will change expense amounts. "
"Make sure it is what you want to do."
)