Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Is Odoo 16 able to generate GS1 barcodes?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
barcodeGS1v16
3 Respostes
4366 Vistes
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
Best Answer

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

...

0
Avatar
Descartar
Avatar
Ajin A K
Best Answer

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?

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
GS1 Barcode Creation for product variants
barcode GS1
Avatar
0
de març 25
1224
How to set up Gs1-128 barcode
barcode GS1
Avatar
0
de juny 22
3354
Extend templates in barcode app Solved
barcode custom_module v16
Avatar
Avatar
1
de maig 24
2562
How to typeset a GS1 barcode? Solved
barcode quickstart GS1
Avatar
Avatar
Avatar
Avatar
4
de gen. 24
11267
How to generate barcode and QR codes from Google sheet (GS1 compatible) ? Solved
inventory barcode quickstart GS1
Avatar
1
de gen. 25
3400
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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