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

Planning - how can I see *all* employees that are available for Tasks?

Suscribirse

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

Se marcó esta pregunta
4 Respuestas
5579 Vistas
Avatar
Homer Favenir

Hi,

In the Planning module, there is a gantt view of resource id.

However, these list only displays the employees that has shift on that date (day, week, month, year).


Solution 1: 

Looking for a solution to display all employees with or without shift on that particular date.  

Solution 2: I need to view all employees that has no shift on that particular date.


Please help.


Thank you in advance

0
Avatar
Descartar
Homer Favenir
Autor

@chantrie,

Hi,

Any idea how to accomplish this?


Thanks

Avatar
Barbara Arias (bai)
Mejor respuesta

Hi Homer,

Odoo will display an empty line in the Gantt view if:

  1. You create a single Task "Team" and add each Employee on the team as an assignee
  2. The employee has something assgined on that period
  3. The employee has something assigned on the previous period
  4. You search on a skill of that employee

I recommend you to download the Skills module and assign one skill to each employee so that you can filter by skill in the planning app :) Here is a video to see how to do it: https://drive.google.com/file/d/1ZGYxjhmTQKSMcp_sYS9JOncNOjd2yUVs/view?usp=sharing

Good luck!

1
Avatar
Descartar
Avatar
shubham shiroya
Mejor respuesta

Solution 1: Display All Employees

To display all employees regardless of whether they have shifts on a particular date, you'll likely need to customize the gantt view. This may require extending the existing views or creating a new view to override the default behavior. This approach might involve some technical development work.

Solution 2: Display Employees Without Shifts

To display only employees who don't have shifts on a particular date, you can follow these steps:

  1. Create a Custom View:

    You can create a custom view for the gantt chart that filters employees based on their shifts. This will require creating a new view definition in XML.

  2. Add Filter Criteria:

    In the custom view definition, you can add a domain to filter the employees displayed in the gantt chart. The domain should be constructed to exclude employees with shifts on the selected date.

    -->example of what the XML code might look like:

record id="view_custom_planning_gantt" model="" rel="ugc">ir.ui.view">

field name="name">Custom Planning Gantt

field name="model">resource.calendar.attendance

field name="inherit_id" ref="planning.planning_gantt_view"/>

field name="arch" type="xml">

xpath expr="//ganttview" position="attributes">

attribute name="default_domain">[('date', '!=', selected_date)]

/xpath>

/field>

/record>


  1. In this example, replace selected_date with the actual date you want to filter by.

  2. Activate the Custom View:

    After defining the custom view, activate it in your module. This will ensure that the view is used when displaying the gantt chart in the Planning module.




0
Avatar
Descartar
Homer Favenir
Autor

Hi, i just want to know why the model is resource.calendar.attendace?
Thanks

Avatar
Chantria Thomas
Mejor respuesta

I'm sure that it instructed something to each peruser. We esteem your sharing of this data. I really had the opportunity to explore this awesome data.


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
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