Initial commit: OCA Mrp packages (117 packages)

This commit is contained in:
Ernad Husremovic 2025-08-29 15:43:05 +02:00
commit 277e84fd7a
4403 changed files with 395154 additions and 0 deletions

View file

@ -0,0 +1 @@
from . import test_mrp_mto_owner

View file

@ -0,0 +1,69 @@
# Copyright 2024 Quartile
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo.tests.common import TransactionCase
class TestMrpMtoOwner(TransactionCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
mto_route = cls.env.ref("stock.route_warehouse0_mto")
manufacture_route = cls.env.ref("mrp.route_warehouse0_manufacture")
if not mto_route.active:
mto_route.write({"active": True})
cls.product1 = cls.env["product.product"].create(
{
"name": "Product 1",
"type": "product",
"route_ids": [(6, 0, [mto_route.id, manufacture_route.id])],
}
)
cls.product2 = cls.env["product.product"].create(
{
"name": "Product 2",
"type": "product",
"route_ids": [(6, 0, [mto_route.id, manufacture_route.id])],
}
)
cls.product3 = cls.env["product.product"].create(
{"name": "Product 3", "type": "product"}
)
# Create BOMs for each product
cls.bom1 = cls.env["mrp.bom"].create(
{
"product_id": cls.product1.id,
"product_tmpl_id": cls.product1.product_tmpl_id.id,
"bom_line_ids": [
(0, 0, {"product_id": cls.product2.id, "product_qty": 1})
],
}
)
cls.bom2 = cls.env["mrp.bom"].create(
{
"product_id": cls.product2.id,
"product_tmpl_id": cls.product2.product_tmpl_id.id,
"bom_line_ids": [
(0, 0, {"product_id": cls.product3.id, "product_qty": 1})
],
}
)
def test_mo_owner_id(self):
owner = self.env["res.partner"].search([], limit=1)
mo = self.env["mrp.production"].create(
{
"product_id": self.product1.id,
"product_qty": 1,
"bom_id": self.bom1.id,
"product_uom_id": self.product1.uom_id.id,
"owner_id": owner.id,
}
)
# Confirm MO to trigger child MO creation
mo.action_confirm()
# Find the child MO for the second product
child_mo = mo._get_children()
# Test if the owner_id of MO and child MO are the same
self.assertEqual(mo.owner_id, owner)
self.assertEqual(mo.owner_id, child_mo.owner_id, "Owner IDs do not match")