Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita 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
  • Proyectos
  • 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

Is Odoo 16 able to generate GS1 barcodes?

Suscribirse

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

Se marcó esta pregunta
barcodeGS1v16
3 Respuestas
4373 Vistas
Avatar
Črtomir Dobravc

As the title asks, does Odoo 16 support generation of GS1 barcodes. As it seems to me it does not. It automatically generates Code 128 type of barcode.


I have not found any apps or plugins that would provide this functionality. Maybe I'm missing something.


Is there any setting that will enable GS1 barcode generation?

0
Avatar
Descartar
Avatar
Lars Aam
Mejor respuesta

Go to inventory settings.  Activate Barcode app. 

Set Default Nomeclature = GS1.

0
Avatar
Descartar
Črtomir Dobravc
Autor

If I understand correctly, this just enables Odoo to read and work with GS1 barcodes, but doesn't enable the GS1 code generation within Odoo?

Lars Aam

I looked at the code for print Lot numbers PDF - see part of extract below.
It looks to me that i say: If user have Group 'Print GS1 Barcodes for Lot & Serial Numbers' and product barcode is valid GTIN, print GS1 barcode.

t-att-style="barcode_index >= len(page_docs) and 'visibility:hidden'">
<div t-att-style="'position:relative; width:43mm; height:19mm; border: 1px solid %s;' % (o.env.user.company_id.primary_color or 'black')">
<t t-set="final_barcode" t-value="''"/>
<t t-if="env.user.has_group('stock.group_stock_lot_print_gs1')">
<t t-if="o.product_id.valid_ean" t-set="final_barcode" t-value="'01' + '0' * (14 - len(o.product_id.barcode)) + o.product_id.barcode"/>
<t name="gs1_datamatrix_lot" t-if="o.product_id.tracking == 'lot'" t-set="final_barcode" t-value="(final_barcode or '') + '10' + o.name"/>
<t t-elif="o.product_id.tracking == 'serial'" t-set="final_barcode" t-value="(final_barcode or '') + '21' + o.name"/>
</t>
<div class="o_label_4x12" t-field="o.product_id.display_name" t-att-style="'width:22mm' if final_barcode else ''"/>
<div class="o_label_4x12" name="lot_name" t-field="o.name" t-att-style="'width:22mm' if final_barcode else ''"/>
<t t-if="env.user.has_group('stock.group_stock_lot_print_gs1')">
<div t-if="final_barcode" t-att-style="'position:absolute; right:.5px; bottom:.5px'" t-out="final_barcode" t-options="{'widget': 'barcode', 'symbology': 'ECC200DataMatrix', 'img_style': 'width:17mm; height:17mm'}"/>
</t>
<t t-else="">
<div t-field="o.name" t-options="{'widget': 'barcode', 'img_style': 'width:100%; height:35%'}"/>
</t>

Avatar
Črtomir Dobravc
Autor Mejor respuesta

...

0
Avatar
Descartar
Avatar
Ajin A K
Mejor respuesta

You are correct. Odoo 16 itself does not directly generate GS1 barcodes. It focuses on interpreting and using existing GS1 barcodes provided by the user. Here's a breakdown:

  • GS1 Barcodes: These are standardized barcodes used for global supply chain management. They require purchasing a unique Global Trade Item Number (GTIN) from GS1.
  • Odoo Barcode Functionality: Odoo can interpret and utilize information encoded in GS1 barcodes for tasks like warehouse management and product identification. It can also print these barcodes if you provide the GS1 code.
  • Code 128: This is a common barcode type that Odoo can generate automatically. It can encode various data types but is not specifically designed for GS1 standards.

There are currently no built-in settings or official apps in Odoo 16 to directly generate GS1 barcodes. However, you have a few options:

  1. Manual Entry: You can enter the 14-digit GTIN provided by GS1 into the "Barcode" field on the product form in Odoo. This allows Odoo to utilize the information in the GS1 barcode.
  2. Third-party Tools: Explore external barcode generation tools or services that can create GS1 barcodes based on your GTIN. You can then import these generated barcodes into Odoo.
  3. Custom Development: If you have development resources, consider creating a custom Odoo module that interacts with GS1 APIs to generate barcodes based on GTINs.

Here are some additional resources:

  • Odoo GS1 Barcode Usage: https://www.gs1.org/standards/id-keys/gtin

While Odoo 16 doesn't natively generate GS1 barcodes, the options above allow you to leverage GS1 functionality within your Odoo system.

0
Avatar
Descartar
Črtomir Dobravc
Autor

Appreciate the comprehensive answer. I do have a follow up question.

We have already purchased the GTIN numbers so we have those. We've also added a custom python code for a custom field that combines the GTIN, batch number and best by date and outputs the GS1 code in numerical format (example: 01084759326134821525111910240520). Hence we would just need for the number to be encoded as GS1 barcode too so we can print the labels.

If I understand you correctly, this is impossible in Odoo?

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
GS1 Barcode Creation for product variants
barcode GS1
Avatar
0
mar 25
1226
How to set up Gs1-128 barcode
barcode GS1
Avatar
0
jun 22
3357
Extend templates in barcode app Resuelto
barcode custom_module v16
Avatar
Avatar
1
may 24
2565
How to typeset a GS1 barcode? Resuelto
barcode quickstart GS1
Avatar
Avatar
Avatar
Avatar
4
ene 24
11270
How to generate barcode and QR codes from Google sheet (GS1 compatible) ? Resuelto
inventory barcode quickstart GS1
Avatar
1
ene 25
3401
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • 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 estar 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