Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

Accessing child field from many2many_tags in picking view

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
pickingserial_numbercolorsmany2many_tagschildclass
2 Replies
215 Rodiniai
Portretas
Benjamin ROCHE

Hi,

I created a new Many2one field called grade on the stock.lot model. The grade model contains several fields, one of which is a color field:

color = fields.Integer(string="Color")

My goal is to display serial numbers with different colors in the picking view.

I tried to modify the many2many_tags widget in stock.view_picking_form using XPath to add a color_field option:

<xpath expr="//field[@name='lot_ids']" position="attributes"> <attribute name="options"> {'create': [('parent.use_create_lots', '=', True)], 'color_field': 'product_grade_id.color'} </attribute> </xpath>

However, it seems many2many_tags cannot access a child field (product_grade_id.color) directly.

As a workaround I added a related field on stock.lot that copies the grade color:

grade_color = fields.Integer( related="product_grade_id.color", string="Grade color", readonly=True, )

This works, but feels like a workaround. Is there a way to make many2many_tags use the child field directly, or a better pattern to achieve colored serial numbers in the picking view?

Thanks in advance for any suggestions.

0
Portretas
Atmesti
Codesphere Tech

Hello,
The many2many_tags widget can only use fields that exist directly on the same model. It seems adding a related field is the correct solution.

Portretas
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,


The many2many_tags widget in Odoo expects the color_field option to reference a direct field of the target model (in this case, stock.lot).

It cannot traverse relations like product_grade_id.color because the widget operates client-side in the web view and doesn’t perform nested record fetching, it just uses what’s directly in the record’s dataset.


Try the following,


Python


class StockLot(models.Model):

    _inherit = "stock.lot"


    product_grade_id = fields.Many2one('product.grade', string="Grade")

    grade_color = fields.Integer(

        related="product_grade_id.color",

        string="Grade color",

        store=True,  

        readonly=True,

    )


XML


<xpath expr="//field[@name='lot_ids']" position="attributes">

    <attribute name="options">

        {'create': [('parent.use_create_lots', '=', True)], 'color_field': 'grade_color'}

    </attribute>

</xpath>


Hope it helps


1
Portretas
Atmesti
Portretas
Benjamin ROCHE
Autorius Best Answer

Thank you for your answers, I understand the workaround I have implemented is the way to do with the current limitation of the many2many_tags

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

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

Registracija
Related Posts Replies Rodiniai Veikla
Picking process with serial numbers
picking serial_number
Portretas
Portretas
Portretas
Portretas
3
geg. 24
4548
How can I specify unique serial numbers for the same product during incoming shipment registration in v8 Solved
v8 picking unique serial_number
Portretas
Portretas
2
kov. 15
5282
Inventory transactions - select only available Lots
inventory lot picking serial_number delivery_order
Portretas
0
lapkr. 18
5056
Disable auto-assign of Serial Numbers to Sales Order Operations
serial_number
Portretas
Portretas
Portretas
3
birž. 25
2544
order picking form doesn't aggregate order lines
picking
Portretas
Portretas
Portretas
3
lapkr. 23
3161
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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