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.
|
|
# -*- coding: utf-8 -*- # © 2016 Carlos Dauden <carlos.dauden@tecnativa.com> # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html
from openerp.tests.common import TransactionCase
class TestContractShowInvoice(TransactionCase): def setUp(self): super(TestContractShowInvoice, self).setUp() self.analytic_account = self.env['account.analytic.account'].create({ 'name': 'Test contract show invoice', }) self.invoice = self.env['account.invoice'].create( {'partner_id': self.env.ref('base.res_partner_2').id, 'type': 'out_invoice', }) self.invoice._onchange_partner_id() self.invoice_line = self.env['account.invoice.line'].create( {'product_id': self.env.ref('product.product_product_2').id, 'quantity': 1.0, 'invoice_id': self.invoice.id, 'account_analytic_id': self.analytic_account.id, }) self.invoice_line._onchange_product_id()
def test_contract_show_invoice(self): self.assertEqual(len(self.analytic_account.analytic_account_ids), 1)
|