[FIX] res_partner_view: the previous commit added the context but

forgot to use the default_ prefix.

bzr revid: vmt@openerp.com-20111124152815-coa4u93u9sala0la
This commit is contained in:
Vo Minh Thu 2011-11-24 16:28:15 +01:00
parent cdb5ed56ef
commit c33b3c2194
1 changed files with 2 additions and 2 deletions

View File

@ -281,7 +281,7 @@
<field name="res_model">res.partner.title</field>
<field name="view_type">form</field>
<field name="domain">[('domain','=','partner')]</field>
<field name="context">{'domain': 'partner'}</field>
<field name="context">{'default_domain': 'partner'}</field>
<field name="help">Manage the partner titles you want to have available in your system. The partner titles is the legal status of the company: Private Limited, SA, etc.</field>
</record>
@ -293,7 +293,7 @@
<field name="res_model">res.partner.title</field>
<field name="view_type">form</field>
<field name="domain">[('domain','=','contact')]</field>
<field name="context">{'domain': 'contact'}</field>
<field name="context">{'default_domain': 'contact'}</field>
<field name="help">Manage the contact titles you want to have available in your system and the way you want to print them in letters and other documents. Some example: Mr., Mrs. </field>
</record>