[IMP] account_invoice_comment_template: Move comment_template_id field to the Invoicing tab
[IMP] account_invoice_comment_template: rename partner field name from comment_template_id to invoice_comment_template_id [IMP] account_invoice_comment_template: Make partner field company_dependant and move domain definition of invoice fields from the view to the model [MOV] account_invoice_comment_template: comment_template_id to base_comment_template [IMP] account_invoice_comment_template: Translate templates when partner changespull/646/head
parent
1f665aa7ce
commit
d703ca7d53
|
@ -5,6 +5,7 @@ from odoo.tests.common import TransactionCase
|
||||||
class TestResPartner(TransactionCase):
|
class TestResPartner(TransactionCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
super(TestResPartner, self).setUp()
|
||||||
self.template_id = self.env['base.comment.template'].create({
|
self.template_id = self.env['base.comment.template'].create({
|
||||||
'name': 'Comment before lines',
|
'name': 'Comment before lines',
|
||||||
'position': 'before_lines',
|
'position': 'before_lines',
|
||||||
|
@ -18,4 +19,4 @@ class TestResPartner(TransactionCase):
|
||||||
# Test childs propagation of commercial partner field
|
# Test childs propagation of commercial partner field
|
||||||
for child_id in partner_id.child_ids:
|
for child_id in partner_id.child_ids:
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
child_id.property_comment_template_id == self.template_id)
|
child_id.property_comment_template_id, self.template_id)
|
||||||
|
|
Loading…
Reference in New Issue