mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-25 17:11:58 +02:00
Initial commit: OCA Technical packages (595 packages)
This commit is contained in:
commit
2cc02aac6e
24950 changed files with 2318079 additions and 0 deletions
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from . import test_product_warranty
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
# Copyright 2016 Cyril Gaudin (Camptocamp)
|
||||
# Copyright 2015 Vauxoo, Yanina Aular
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
class TestProductWarranty(TransactionCase):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
cls.instruction_model = cls.env["return.instruction"]
|
||||
cls.supplierinfo = cls.env["product.supplierinfo"]
|
||||
cls.create_product_supplierinfo(cls)
|
||||
|
||||
def create_product_supplierinfo(self):
|
||||
"""
|
||||
Create a record of product.supplier for next tests
|
||||
"""
|
||||
|
||||
product_tmpl_id = self.env.ref("product.product_product_3")
|
||||
|
||||
partner_id = self.env.ref("base.res_partner_4")
|
||||
other_partner = self.env.ref("base.res_partner_12")
|
||||
|
||||
supplierinfo_data = dict(
|
||||
partner_id=partner_id.id,
|
||||
product_name="Test SupplierInfo for display Default Instruction",
|
||||
min_qty=4,
|
||||
delay=5,
|
||||
warranty_return_partner="supplier",
|
||||
product_tmpl_id=product_tmpl_id.id,
|
||||
warranty_return_other_address=other_partner.id,
|
||||
)
|
||||
|
||||
self.supplierinfo_brw = self.supplierinfo.create(supplierinfo_data)
|
||||
|
||||
def test_default_instruction(self):
|
||||
"""
|
||||
Test for return.instruction record with
|
||||
default field in True. If is assigned
|
||||
correctly when one record of
|
||||
product.supplierinfo is created
|
||||
"""
|
||||
|
||||
return_instructions_id = self.env.ref(
|
||||
"product_warranty." "return_instruction_1"
|
||||
)
|
||||
|
||||
self.assertEqual(
|
||||
self.supplierinfo_brw.return_instructions.id, return_instructions_id.id
|
||||
)
|
||||
|
||||
def test_warranty_return_address(self):
|
||||
"""
|
||||
Test warranty_return_address field is calculate correctly depends of
|
||||
warranty_return_partner
|
||||
"""
|
||||
self.create_product_supplierinfo()
|
||||
|
||||
self.assertEqual(
|
||||
self.supplierinfo_brw.warranty_return_address.id,
|
||||
self.supplierinfo_brw.partner_id.id,
|
||||
)
|
||||
|
||||
self.supplierinfo_brw.write({"warranty_return_partner": "company"})
|
||||
|
||||
self.assertEqual(
|
||||
self.supplierinfo_brw.warranty_return_address.id,
|
||||
self.supplierinfo_brw.company_id.crm_return_address_id.id,
|
||||
)
|
||||
|
||||
self.supplierinfo_brw.write({"warranty_return_partner": "other"})
|
||||
|
||||
self.assertEqual(
|
||||
self.supplierinfo_brw.warranty_return_address.id,
|
||||
self.supplierinfo_brw.warranty_return_other_address.id,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue