mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
30 lines
997 B
Python
30 lines
997 B
Python
# Copyright 2016-19 ForgeFlow S.L. (https://www.forgeflow.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import _, api, fields, models
|
|
from odoo.exceptions import ValidationError
|
|
|
|
|
|
class Orderpoint(models.Model):
|
|
_inherit = "stock.warehouse.orderpoint"
|
|
|
|
procure_uom_id = fields.Many2one(comodel_name="uom.uom", string="Procurement UoM")
|
|
|
|
@api.constrains("product_id", "procure_uom_id")
|
|
def _check_procure_uom(self):
|
|
if any(
|
|
orderpoint.product_uom
|
|
and orderpoint.procure_uom_id
|
|
and orderpoint.product_uom.category_id
|
|
!= orderpoint.procure_uom_id.category_id
|
|
for orderpoint in self
|
|
):
|
|
raise ValidationError(
|
|
_(
|
|
"Error: The product default Unit of Measure and "
|
|
"the procurement Unit of Measure must be in the "
|
|
"same category."
|
|
)
|
|
)
|
|
return True
|