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
    • eLearning
    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
    • Información
    • 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 can i assgin two different filters two same model but with different menu ?

Suscribirse

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

Se marcó esta pregunta
filterproductopenerp7domain_filter
1 Responder
5784 Vistas
Avatar
Ahmed elbarbary

how to assign two different filters to same model ? such as products model in sales module (sales--->products) there is defined filter (can be sold ) and in purchase-->products there is defined filter can be purchase , now in warehouse --> products i need to define default filter but the problem is when i assign it it apply to all product views in sales and in purchase but i need it in warehouse only , how can i do that ? and how is it applied different filter to purchase and sales products ?

Thanks in advance

1
Avatar
Descartar
Avatar
Emipro Technologies Pvt. Ltd.
Mejor respuesta

This can be done using the "window action". You can set the value of "context" under the action and achieve this.

Try to find the "action" for that menu and try to define your filter under the "context" attribute.

See the example

Product under Sales menu,

context = {"search_default_filter_to_sell":1} ---> this leads to default selection of "sellable" product filter.

context={"search_default_filter_to_purchase":1} ---> this leads to default selection of "purchase" product filter.

So here in the search view there is a filter already defined as "filter_to_sell" and "filter_to_purchase" and using this in the context value for different actions, appropriate filters are set as default selection during load of the list view.

For your reference in the product module search for "product_normal_action_sell" this action, you will get the idea.

So same way you need to define your filter and use the context attribute of the action.

Hope this helps !!.

2
Avatar
Descartar
Ahmed elbarbary
Autor

thank you very much it is working, can i ask you another question ? is there away to assign defaults to fields when create product from warehouse menu which is different from defaults when create from sales menu ?

Ankit H Gandhi(AHG)

thanks @ emipro technologies pvt ltd. this code fully work

Emipro Technologies Pvt. Ltd.

Yes @elbarbary... it is possible to set default values for different action. You can do this by using {"default_field_name":>} in the context attribute. Try to look different actions, which are already there in the system, that will help you more.

Ahmed elbarbary
Autor

@ Emipro Technologies Pvt. Ltd. it is working fine thanks again for your help , i appreciate that

Emipro Technologies Pvt. Ltd.

@elbarbary ... You'r welcome...

David Hovsepian

I'm trying to figure out how to do this too. Where do you enter that? Or do you build a completely new module just for this one function? Can I do it in the frontend somehow?

¿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
Default Domain Filter
filter domain_filter
Avatar
Avatar
Avatar
2
jun 22
8120
Filter Domain Field on Field Resuelto
openerp7 domain_filter
Avatar
Avatar
Avatar
2
sept 19
11480
Filtration in xml view
filter domain_filter
Avatar
Avatar
2
feb 16
4742
Create fixed filter for user group
filter customization domain_filter
Avatar
1
nov 22
102
Search for warehouse inside products tree view
filter product search
Avatar
Avatar
1
nov 22
2551
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