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)
inventory Inventory Invenotry stock.move.line Zebra
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
inventory Inventory Invenotry stock.move.line Zebra
Acerca de este foro
  1. Inventory
  2. Foro

Product custom fields for every serial number

Suscribirse

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

Se marcó esta pregunta
inventory
2 Respuestas
3146 Vistas
Avatar
Maria Bleta

Dear Odoo forum,


I want to be able to create custom fields for my product

But the custom fields I want need to be on the serial number level

with this I mean I want to be able to input several custom fields, for every serial number, and those would have different values

I will give you an example:

Fields:

Serial Number, PIN (custom field), PUK (custom field), Phone number (custom field)

So, for example:

SN: 00001, PIN: 1234, PUK: 879456, Phone number: 778945125

SN: 00002, PIN: 4567, PUK: 136547, Phone number: 787456876

10:35

I could not find a way to do this in odoo community.


I am using a self-hosted odoo16 community. I know this can be done because I have seen it with odoo studio for the odoo enterprise version.


Any help on this issue would be greatly appreciated.

0
Avatar
Descartar
Avatar
Gracious Joseph
Mejor respuesta

In Odoo 16 Community, it is possible to achieve custom fields at the serial number level (lot/serial number) by customizing the stock.production.lot model, which is responsible for tracking lots and serial numbers. Although Odoo Studio is not available in the Community version, you can achieve this functionality through custom development. Here's a step-by-step guide:

1. Understand the Model

  • Serial Numbers in Odoo:
    • Serial numbers are stored in the stock.production.lot model.
    • Each serial number is linked to a product.

To add custom fields like PIN, PUK, and Phone Number, you need to extend this model.

2. Extend the Model with Custom Fields

You can create a custom module to add fields to the stock.production.lot model. Here's an example:

Custom Module Code

  1. Create a Module Structure:
    • Navigate to your Odoo addons directory and create a new folder for the custom module, e.g., custom_lot_fields.
    • Add the required __init__.py, __manifest__.py, and models folder.
  2. Define the Custom Fields: In models/stock_production_lot.py:
    from odoo import models, fields
    
    class StockProductionLot(models.Model):
        _inherit = 'stock.production.lot'
    
        pin = fields.Char(string="PIN")
        puk = fields.Char(string="PUK")
        phone_number = fields.Char(string="Phone Number")
    
  3. Add Metadata: In __manifest__.py:
    {
        'name': 'Custom Lot Fields',
        'version': '16.0.1.0',
        'summary': 'Add custom fields for serial numbers',
        'author': 'Your Name',
        'category': 'Inventory',
        'depends': ['stock'],
        'data': [
            'views/stock_production_lot_views.xml',
        ],
        'installable': True,
        'application': False,
        'auto_install': False,
    }
    
  4. Add Custom Fields to the Serial Number Form View: In views/stock_production_lot_views.xml:
    <odoo>
        <record id="view_stock_production_lot_form_inherit" model="ir.ui.view">
            <field name="name">stock.production.lot.form.inherit</field>
            <field name="model">stock.production.lot</field>
            <field name="inherit_id" ref="stock.view_production_lot_form"/>
            <field name="arch" type="xml">
                <xpath expr="//form/sheet" position="inside">
                    <group>
                        <field name="pin"/>
                        <field name="puk"/>
                        <field name="phone_number"/>
                    </group>
                </xpath>
            </field>
        </record>
    </odoo>
    
  5. Install the Module:
    • Restart your Odoo server.
    • Navigate to Apps, search for Custom Lot Fields, and install the module.

3. How to Use

  1. Navigate to Inventory > Products > Lots/Serial Numbers.
  2. Open or create a new serial number.
  3. You will see the new fields PIN, PUK, and Phone Number on the form view.
  4. Input unique values for each serial number.

4. Alternative Approaches

If you're not comfortable with module development:

  • Use Odoo Studio (Enterprise Only): For Enterprise users, you can directly add fields to the stock.production.lot model using Studio.
  • Use the CSV Import/Export:
    • Export serial numbers to a CSV.
    • Add custom fields (e.g., PIN, PUK, Phone Number) to the CSV.
    • Import the updated CSV back into Odoo.

5. Testing and Debugging

  • Test the Fields:
    • Ensure that each serial number can have different values for the custom fields.
    • Verify that the fields are displayed in the desired locations.
  • Debug Errors:
    • Check server logs for errors during development.
    • Use Odoo's Developer Mode to inspect the form view and ensure proper field rendering.

Outcome

By following these steps, you can create custom fields for serial numbers in Odoo Community. These fields will allow you to input values like PIN, PUK, and Phone Number for each serial number.

If you need further help with development or installation, let me know!

0
Avatar
Descartar
Avatar
Olivier
Mejor respuesta

Hey, 


I am not sure if you are still looking for it, but Odoo 18 provides this in native. Please consult : 

https://www.odoo.com/fr_FR/event/odoo-experience-2024-4662/track/traceability-enhanced-master-the-use-of-properties-on-lots-and-serial-numbers-for-unmatched-accuracy-6653

Cheers

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 to populate inventory very 1st time using Odoor? I'm lost
inventory
Avatar
Avatar
Avatar
2
oct 25
4834
Best Practices for Implementing Inventory Management in Odoo for a Café
inventory
Avatar
Avatar
1
abr 25
3883
Foro in Spanish, i want to connect whit people spoke Spanish
inventory
Avatar
0
oct 25
2900
Customizing Odoo to Link Serial Numbers for Camera Kit Products
inventory
Avatar
0
jun 24
3105
Odoo Enterprise v16 User Portal for Viewing Inventory Stock Qty & Locations
inventory
Avatar
0
nov 23
3031
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