Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Producție
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

How can I customize product labels to show additional information?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
barcode
2 Răspunsuri
966 Vizualizări
Imagine profil
sadashiv shete

When I use Odoo software for my brass products, each product has a different size, weight, and type. For these products, I need to print barcodes that include:


Product name

Size

Weight

Type

Company name

(Optional) Product photo

MRP

Wholesale price


Currently, when I print labels from Odoo, it only shows the product name and price. I want to customize the label so that all the above details appear on the barcode/label as per my requirement. Is there any option in Odoo to achieve this, or do I need a customization?


Secondly, when I create a new product in Odoo, I have to manually enter a unique code (barcode or internal reference). It is very difficult to track which codes I have already used. I want this product code to be generated automatically for each new product.


These are the two main limitations I am facing in Odoo. How can I solve them?

0
Imagine profil
Abandonează
Imagine profil
Cybrosys Techno Solutions Pvt.Ltd
Cel mai bun răspuns

Hi,

The best way is to configure an Odoo Sequence and link it to the default_code (internal reference) or barcode.


Sample Code:

Data file for sequence:


<odoo>

    <!-- Sequence definition for product internal reference -->

    <record id="seq_product_default_code" model="ir.sequence">

        <field name="name">Product Internal Reference</field>

        <field name="code">product.default.code</field>

        <field name="prefix">PROD/</field>

        <field name="padding">5</field>

        <field name="number_next">1</field>

        <field name="number_increment">1</field>

        <field name="company_id" eval="False"/>

    </record>

</odoo>


Python:


from odoo import api, fields, models


class ProductTemplate(models.Model):

    _inherit = "product.template"


    @api.model_create_multi

    def create(self, vals_list):

        for vals in vals_list:

            if not vals.get("default_code"):

                vals["default_code"] = self.env["ir.sequence"].next_by_code(

                    "product.default.code"

                )

        return super().create(vals_list)


Result:

internal reference = PROD/00001


Hope it helps

0
Imagine profil
Abandonează
Imagine profil
STAFFINSIDE
Cel mai bun răspuns

Hi,

  1. Custom barcode/label – The standard Odoo label only shows a few fields. To add size, weight, type, company, MRP, wholesale price, or even a product image, you’ll need to customize the report template (report.product_template_label). This can be done with Studio (adding extra fields in the QWeb template) or with a small custom module if you want full control of the design.
  2. Automatic product codes – You don’t need to enter barcodes or internal references manually. You can set up a sequence so Odoo generates a unique code for every new product. In developer mode go to Technical → Sequences & Identifiers, create a sequence, and assign it to the product default_code (internal reference) or barcode field. With that, each new product gets a unique code automatically.

So: label customization = template change, unique codes = sequence.

Hope this helps!

0
Imagine profil
Abandonează
Enjoying the discussion? Don't just read, join in!

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Can I remove the "Product Barcode Lookup" module from my database? Rezolvat
barcode
Imagine profil
Imagine profil
Imagine profil
2
sept. 25
721
Barcode - Process and Cancel MOs Using Barcodes (last chapter)
barcode
Imagine profil
0
feb. 25
2025
Default barcode nomenclature
barcode
Imagine profil
0
dec. 24
46
Find product by name scanning barcode & regex segmentation
barcode
Imagine profil
0
dec. 24
1722
Can I associate Field Service with odoo's Barcode model?
barcode
Imagine profil
Imagine profil
1
oct. 24
3241
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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