diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/mrp_subcontracting/tests/common.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/mrp_subcontracting/tests/common.py')
| -rw-r--r-- | addons/mrp_subcontracting/tests/common.py | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/addons/mrp_subcontracting/tests/common.py b/addons/mrp_subcontracting/tests/common.py new file mode 100644 index 00000000..224dfa08 --- /dev/null +++ b/addons/mrp_subcontracting/tests/common.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.tests.common import Form, SavepointCase + +class TestMrpSubcontractingCommon(SavepointCase): + + @classmethod + def setUpClass(cls): + super(TestMrpSubcontractingCommon, cls).setUpClass() + # 1: Create a subcontracting partner + main_partner = cls.env['res.partner'].create({'name': 'main_partner'}) + cls.subcontractor_partner1 = cls.env['res.partner'].create({ + 'name': 'subcontractor_partner', + 'parent_id': main_partner.id, + 'company_id': cls.env.ref('base.main_company').id, + }) + + # 2. Create a BOM of subcontracting type + cls.comp1 = cls.env['product.product'].create({ + 'name': 'Component1', + 'type': 'product', + 'categ_id': cls.env.ref('product.product_category_all').id, + }) + cls.comp2 = cls.env['product.product'].create({ + 'name': 'Component2', + 'type': 'product', + 'categ_id': cls.env.ref('product.product_category_all').id, + }) + cls.finished = cls.env['product.product'].create({ + 'name': 'finished', + 'type': 'product', + 'categ_id': cls.env.ref('product.product_category_all').id, + }) + bom_form = Form(cls.env['mrp.bom']) + bom_form.type = 'subcontract' + bom_form.product_tmpl_id = cls.finished.product_tmpl_id + bom_form.subcontractor_ids.add(cls.subcontractor_partner1) + with bom_form.bom_line_ids.new() as bom_line: + bom_line.product_id = cls.comp1 + bom_line.product_qty = 1 + with bom_form.bom_line_ids.new() as bom_line: + bom_line.product_id = cls.comp2 + bom_line.product_qty = 1 + cls.bom = bom_form.save() + + # Create a BoM for cls.comp2 + cls.comp2comp = cls.env['product.product'].create({ + 'name': 'component for Component2', + 'type': 'product', + 'categ_id': cls.env.ref('product.product_category_all').id, + }) + bom_form = Form(cls.env['mrp.bom']) + bom_form.product_tmpl_id = cls.comp2.product_tmpl_id + with bom_form.bom_line_ids.new() as bom_line: + bom_line.product_id = cls.comp2comp + bom_line.product_qty = 1 + cls.comp2_bom = bom_form.save() + + cls.warehouse = cls.env['stock.warehouse'].search([], limit=1) |
