mirror of
https://github.com/bringout/oca-mrp.git
synced 2026-04-26 07:32:07 +02:00
Initial commit: OCA Mrp packages (117 packages)
This commit is contained in:
commit
277e84fd7a
4403 changed files with 395154 additions and 0 deletions
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import test_mrp_sale_info
|
||||
|
|
@ -0,0 +1,73 @@
|
|||
# Copyright 2020 Tecnativa - Pedro M. Baeza
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
from odoo.tests import common
|
||||
|
||||
|
||||
class TestMrpSaleInfo(common.TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
route_manufacture_1 = cls.env.ref("mrp.route_warehouse0_manufacture")
|
||||
route_manufacture_2 = cls.env.ref("stock.route_warehouse0_mto")
|
||||
route_manufacture_2.active = True
|
||||
cls.product = cls.env["product.product"].create(
|
||||
{
|
||||
"name": "Test mrp_sale_info product",
|
||||
"type": "product",
|
||||
"route_ids": [
|
||||
(4, route_manufacture_1.id),
|
||||
(4, route_manufacture_2.id),
|
||||
],
|
||||
}
|
||||
)
|
||||
cls.bom = cls.env["mrp.bom"].create(
|
||||
{
|
||||
"product_tmpl_id": cls.product.product_tmpl_id.id,
|
||||
"operation_ids": [
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"name": "Test operation",
|
||||
"workcenter_id": cls.env.ref("mrp.mrp_workcenter_3").id,
|
||||
},
|
||||
)
|
||||
],
|
||||
}
|
||||
)
|
||||
cls.partner = cls.env["res.partner"].create({"name": "Test client"})
|
||||
cls.sale_order = cls.env["sale.order"].create(
|
||||
{
|
||||
"partner_id": cls.partner.id,
|
||||
"client_order_ref": "SO1",
|
||||
"order_line": [
|
||||
(
|
||||
0,
|
||||
0,
|
||||
{
|
||||
"product_id": cls.product.id,
|
||||
"product_uom_qty": 1,
|
||||
"price_unit": 1,
|
||||
},
|
||||
),
|
||||
],
|
||||
}
|
||||
)
|
||||
|
||||
def test_mrp_sale_info(self):
|
||||
prev_productions = self.env["mrp.production"].search([])
|
||||
self.sale_order.action_confirm()
|
||||
production = self.env["mrp.production"].search([]) - prev_productions
|
||||
self.assertEqual(production.sale_id, self.sale_order)
|
||||
self.assertEqual(production.partner_id, self.partner)
|
||||
self.assertEqual(production.client_order_ref, self.sale_order.client_order_ref)
|
||||
|
||||
def test_mrp_workorder(self):
|
||||
prev_workorders = self.env["mrp.workorder"].search([])
|
||||
self.sale_order.action_confirm()
|
||||
workorder = (
|
||||
self.env["mrp.production"].search([]).workorder_ids - prev_workorders
|
||||
)
|
||||
self.assertEqual(workorder.sale_id, self.sale_order)
|
||||
self.assertEqual(workorder.partner_id, self.partner)
|
||||
self.assertEqual(workorder.client_order_ref, self.sale_order.client_order_ref)
|
||||
Loading…
Add table
Add a link
Reference in a new issue