[MIG] base_view_inheritance_extension: Fix demo view
parent
040320c881
commit
152af1a5b5
|
@ -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>
|
||||
|
|
|
@ -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")
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue