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

Make scheduled date empty

Suscribirse

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

Se marcó esta pregunta
manufacturinginventoryenterprisetransferodoo16features
1 Responder
4200 Vistas
Avatar
Mayank Nailwal

I want to make scheduled date empty in transfer. 
what all ways are there in in odoo v16 to make scheduled date false. 

0
Avatar
Descartar
Lars Aam

But why? When you set that field empty, all Material Requirement Planning will fail. All checks for availability and reservation of stock will no longer work. I just wonder, what is you business process, that you want to disable all material planning?

Avatar
Alan Scott
Mejor respuesta

In Odoo V16, to make the scheduled date empty in a transfer, you can use the following methods:

  1. Manually update the scheduled date: Go to Inventory > Operations > Transfers, open the specific transfer record you want to edit, and set the “Scheduled Date” field to empty or false.

  2. Customize using automated actions: You can create an automated action in Odoo that triggers when a certain condition is met or a specific action occurs. To create an automated action, go to Settings > Technical > Automated Actions, and configure your new action with appropriate triggering conditions and Python code that sets the scheduled_date field to False.

    record.scheduled_date = False
    
  3. Developing a custom module: Create a custom module that inherits from stock.picking model and overrides the relevant method (e.g., action_confirm, button_validate) responsible for creating or confirming transfers. In this override method, add logic to set the scheduled_date field to False.

    from odoo import models
    
    class StockPicking(models.Model):
        _inherit = "stock.picking"
    
        def action_confirm(self):
            res = super(StockPicking, self).action_confirm()
            for picking in self:
                if picking.condition_to_unset_scheduled_date:
                    picking.scheduled_date = False
            return res
    

    Don’t forget to replace condition_to_unset_scheduled_date with your desired condition.

  4. Update via API (e.g., XML-RPC):

    import xmlrpc.client
    
    url = 'https://your_odoo_instance.com'
    db = 'your_db_name'
    username = 'your_username'
    password = 'your_password'
    
    common_proxy = xmlrpc.client.ServerProxy(f'{url}/xmlrpc/2/common')
    object_proxy = xmlrpc.client.ServerProxy(f'{url}/xmlrpc/2/object')
    uid = common_proxy.authenticate(db, username, password, {})
    
    picking_id = 1 # Replace with the ID of the transfer you want to update
    
    object_proxy.execute_kw(
        db,
        uid,
        password,
        'stock.picking',
        'write',
        [[picking_id], {"scheduled_date": False}]
    )
    

Remember to test any customization on a staging or development environment before applying it to your production environment.

By using one of these methods, you can effectively set the scheduled date in a transfer record to empty (False) in Odoo V16 

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
Products which Can Be Purchased Complete or We Can Assemble from Components V16 Resuelto
manufacturing inventory odoo16features
Avatar
Avatar
1
jun 23
2505
How do we record an internal transfer of products that we make from our factory to our warehouse
manufacturing inventory transfer
Avatar
Avatar
Avatar
2
nov 22
3737
Byproducts from subcontracting
manufacturing inventory byproduct odoo16features
Avatar
Avatar
Avatar
3
dic 23
2387
Inventory Was Short - But Delivery Order Still Processed and Source Location Ended Up Negative
inventory enterprise inventory_count odoo16features
Avatar
0
sept 24
2081
Assigning a set value and not a percent to a Byproduct when MO is closed.
manufacturing inventory valuation odoo16features inventoryValuation
Avatar
Avatar
1
may 24
2910
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