You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1023 B
31 lines
1023 B
# -*- coding: utf-8 -*-
|
|
# Copyright 2017 LasLabs Inc.
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo.tests.common import TransactionCase
|
|
|
|
|
|
class TestProductTemplate(TransactionCase):
|
|
|
|
def setUp(self):
|
|
super(TestProductTemplate, self).setUp()
|
|
self.product = self.env.ref(
|
|
'product.product_product_4_product_template'
|
|
)
|
|
self.contract = self.env['account.analytic.contract'].create({
|
|
'name': 'Test',
|
|
'recurring_rule_type': 'yearly',
|
|
'recurring_interval': 12345,
|
|
})
|
|
|
|
def test_change_is_contract(self):
|
|
""" It should verify that the contract_template_id is removed
|
|
when is_contract is False """
|
|
self.product.is_contract = True
|
|
self.product.contract_template_id = self.contract.id
|
|
self.product.is_contract = False
|
|
self.product._change_is_contract()
|
|
self.assertEquals(
|
|
len(self.product.contract_template_id),
|
|
0
|
|
)
|