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

Unable users to timesheet hours on closed (folded) projects and/or tasks

Suscribirse

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

Se marcó esta pregunta
timesheetsfoldedAutomatedActionsKeepItSimpleodoo16features
1 Responder
3409 Vistas
Avatar
Ricardo Gross

A folded stage is defined as: "If enabled, this stage will be displayed as folded in the Kanban view of your projects/tasks. Projects/Tasks in a folded stage are considered as closed"

As it's not possible to configure the timesheet app so that projects and/or tasks in a folded stage are no longer available for timesheeting, is there a workaround or maybe a automated action/ automation to raise a UserError when users try to register hours in "closed" /project/tasks?

Thanks

0
Avatar
Descartar
Hemangi Rupareliya(rupareliyahemangi145@gmail.com)

Hi Ricardo Gross,

You can add logic in create method of timesheet.

Avatar
Herbert Van de Poel
Mejor respuesta

Hi Ricardo, I have created an automated action that checks timesheet registration based on the start and end date of the task. I think you could change part of the code. Our problem is that our consutlants shouldn't be able to write time for dates outside the start:end date of a taks. Even when e.g. the project manager hasn't put the task in a folded stage. 

  • The timesheet_datetime_start is set to the start of the day (00:00:00) of the timesheet entry's date.
  • The timesheet_datetime_end is set to the end of the day (23:59:59) of the timesheet entry's date.
  • These datetime objects are then used for comparison with the task's planned start and end dates.



Here's the code:


task = record.task_id

timesheet_date = record.date  # or 'date_time', depending on your setup


if task and task.planned_date_begin and task.planned_date_end:

     # Convert timesheet_date to datetime for comparison

    timesheet_datetime_start = datetime.datetime(timesheet_date.year, timesheet_date.month, timesheet_date.day)

    timesheet_datetime_end = datetime.datetime(timesheet_date.year, timesheet_date.month, timesheet_date.day, 23, 59, 59)

  

    if not (task.planned_date_begin <= timesheet_datetime_start <= task.planned_date_end or

            task.planned_date_begin <= timesheet_datetime_end <= task.planned_date_end):

        raise UserError("You cannot log time outside the task's scheduled dates.")




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
Auto set invoice "Recipient Bank" by currency with automated action Resuelto
configuration currency AutomatedActions KeepItSimple odoo16features
Avatar
Avatar
Avatar
Avatar
Avatar
5
sept 25
6006
Is there a way for changes to confirmed SO's to update the PO? (Inter-Company Transactions)
syncronisation intercompany AutomatedActions KeepItSimple odoo16features
Avatar
0
feb 23
2994
Odoo16: where is Automated Actions in Technical menu Resuelto
AutomatedActions odoo16features
Avatar
Avatar
Avatar
Avatar
3
oct 23
4348
Timesheets: Start / End Time Resuelto
timesheets odoo16features
Avatar
Avatar
2
feb 25
4702
ValueError: <class 'psycopg2.ProgrammingError'>: "can't adapt type 'mail.activity.type'" Resuelto
activity AutomatedActions odoo16features
Avatar
1
ago 23
3734
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