[MIG] base_view_inheritance_extension: Fix demo view

pull/2494/head
Raf Ven 2022-12-06 23:03:08 +01:00 committed by Enric Tobella
parent 040320c881
commit 152af1a5b5
2 changed files with 5 additions and 4 deletions

View File

@ -10,8 +10,8 @@
<field name="parent_id" position="attributes">
<attribute name="context" operation="update">
{
"default_name": "The company name",
"default_company_id": context.get("company_id", context.get("company"))
"default_email": "info@odoo-community.org",
"default_company_id": allowed_company_ids[0]
}
</attribute>
</field>

View File

@ -21,10 +21,11 @@ class TestBaseViewInheritanceExtension(TransactionCase):
self.assertEqual(arch.xpath("//form")[0].get("string"), "Partner form")
# Verify our extra context key worked
self.assertTrue(
"default_name" in arch.xpath('//field[@name="parent_id"]')[0].get("context")
"'default_email': 'info@odoo-community.org'"
in arch.xpath('//field[@name="parent_id"]')[0].get("context")
)
self.assertTrue(
"context.get('company_id', context.get('company'))"
"'default_company_id': allowed_company_ids[0]"
in arch.xpath('//field[@name="parent_id"]')[0].get("context")
)