Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged

The goal is to hide the states_id field in the res.partner form expect for countries which do have states.

So the idea is to make the field invisible when the country is not in the list of countries with states. I don't know if there are such a country apart from USA.

Also I don't know if I should compare country_id with "United States" or 235. Anyway here is the codeI unsuccessfully tried:

    <record model="ir.ui.view" id="view_partner_form">
        <field name="name">partner.axima</field>
        <field name="model">res.partner</field>
        <field name="inherit_id" ref="base.view_partner_form" />
        <field name="arch" type="xml">
        <xpath expr="//field[@name='state_id']" position="attributes">
                    <attribute name="invisible">country_id not in [235, "United States"]</attribute>
        </xpath>
        </field>
        </record>

But it fails with the following message :

openerp.tools.safe_eval: Cannot eval 'country_id not in [235, "United States"]'
Traceback (most recent call last):
 File "/home/mathieu/src/OpenERP/server/openerp/tools/safe_eval.py", line 284, in safe_eval
 return eval(test_expr(expr, _SAFE_OPCODES, mode=mode), globals_dict, locals_dict)
 File "", line 1, in <module>
 NameError: name 'country_id' is not defined

Is it possible to achieve what I'm trying to do?

Avatar
Zrušit

@Mathieu Stumpf same question posted twice already answered in the previous post http://help.openerp.com/question/50576/how-do-you-hide-state_id-for-countries-without-states/

Related Posts Odpovědi Zobrazení Aktivita
4
bře 24
11183
2
led 25
922
5
kvě 21
28558
2
bře 15
3872
2
kvě 19
5029