Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • e-learning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Conocimientos
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

How do you hide state_id for countries without states?

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
countrycountriesstateinvisiblestate_id
4 Respuestas
11745 Vistas
Avatar
Mathieu Stumpf

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?

0
Avatar
Descartar
Avatar
Prakash
Mejor respuesta

The below code to hide state_id base on condition if country_id is null.

<xpath expr="//[@string="state_id"]" position="replace">
<field name='state_id' attrs="{'invisible':[('country_id','=',False)}]"/>  
</xpath>
1
Avatar
Descartar
Mathieu Stumpf
Autor

Thank you, it gave me all needed hints to find the solution with which I'm fine.

Avatar
Mathieu Stumpf
Autor Mejor respuesta

Here is the solution I retained :

    <xpath expr="//field[@name='city']" position="attributes">
         <!-- avoid country_id and zip_code overlap -->
         <attribute name="style">width:49%%</attribute>
    </xpath>

    <xpath expr="//field[@name='state_id']" position="replace">
    <field name='state_id' 
        class="oe_no_button" 
        placeholder="State"
        style="width: 49%%"
        options='{"no_open": True}' 
        on_change="onchange_state(state_id)" 
        attrs="{'readonly': [('use_parent_address','=',True)]  , 'invisible':['|', ('country_id', '!=', 235), ('country_id','=',False )]}"
        />  
    </xpath>

I took care to keep others attributes defined in server/openerp/addons/base/res/res_partner_view.xml. I also tried to achieve the same result using position="attributes", as follow, but it didn't produce the expected result.

    <xpath expr="//field[@name='state_id']" position="attributes">
         <attribute name="invisible">['|', ('country_id', '!=', 235), ('country_id','=',False )]</attribute>
    </xpath>
1
Avatar
Descartar
Avatar
Nicolas QUIQUE
Mejor respuesta

for rewrite city, state_id or zip, you must delete the div with the class "address_format", and replace it with a group.

I do not know why, but it's the div that prevents rewrite these fields. 

That's the code : 

<xpath expr="//div[@class='address_format']" position="replace">
  <group col="1">
  <field name="city" placeholder="City" style="width: 40%%" attrs="{'readonly': [('use_parent_address','=',True)]}" nolabel="1"/>
  <field name="state_id" class="oe_no_button" nolabel="1" placeholder="State" style="width: 37%%" options='{"no_open": True}' on_change="onchange_state(state_id)" attrs="{'readonly': [('use_parent_address','=',True)]}"/>
  <field name="zip" placeholder="ZIP" nolabel="1" style="width: 20%%" attrs="{'readonly': [('use_parent_address','=',True)]}"/>
  </group>
</xpath>



0
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
How do you hide state_id for countries without states?
country countries state invisible state_id
Avatar
0
mar 15
6159
Country AN - Netherlands Antilles doesnt exist.
country countries
Avatar
Avatar
2
ene 25
1381
Managing countries states and ZIP codes Resuelto
country state
Avatar
Avatar
Avatar
Avatar
Avatar
5
may 21
29263
All Countries and their sates
crm countries state
Avatar
Avatar
2
mar 15
4337
Disable states for certain countries v12 Resuelto
country countries ecommerce states
Avatar
Avatar
2
may 19
5628
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now