Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

MrpBom _skip_bom_line skips line of product that has two multi-choice attribute values when both are selected in Apply to variant

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
development
1 Svar
208 Visninger
Avatar
Chuck Mako

Hello, I am working on modifying the skip bom line function internally to add so functionality but I am calling super() to keep the base functionality working, but there seems to be a problem with the default odoo function when multi-choice attribute values are selected in Apply to variant bom lines. Here's my setup:
Product: Table

Attribute: Size/Multi-Checkbox/Dynamic

Attribute values: Grandeur, Largeur

In my bom I have 1 material product: Plank, in the bom line I have selected Apply to variants: Size: Grandeur and Size: Largeur. 

Even tho my variant has both these attribute values selected it still skips the bom line. I have added some prints to the odoo function to see whats going on:

        other_attribute_valid = product._match_all_variant_values(bom_attribule_values - no_variant_bom_attributes)
_logger.warning("BOM values: %s", bom_attribule_values.mapped('name'))
_logger.warning("Product values: %s", product.product_template_attribute_value_ids.mapped('name'))
_logger.warning("other_attribute_valid: %s", other_attribute_valid)

# If there are no never attribute values on the line => 'always' and 'dynamic'
if not no_variant_bom_attributes:
_logger.warning("No variant bom attributes")
return not other_attribute_valid
odoo.addons.mrp.models.mrp_bom: BOM values: ['Grandeur', 'Largeur']
odoo.addons.mrp.models.mrp_bom: Product values: ['Grandeur', 'Largeur']
odoo.addons.mrp.models.mrp_bom: other_attribute_valid: False
odoo.addons.mrp.models.mrp_bom: No variant bom attributes

This is inside _skip_for_no_variant that gets called by skip_bom_line. The attributes match but it seems to fail in the no_variant_bom_attributes check.


0
Avatar
Kassér
Chuck Mako
Forfatter

Actually the issue was that we made mutli-checkbox be able to use dynamic variant creation, but skip_for_no_variant calls _match_all_variant_values and that method doesn't account for the fact that a product attribute can have multiple values in that case.

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Bedste svar

Hi,

Odoo is skipping your BoM line because multi-choice (checkbox) attributes are not fully supported in the variant-matching logic of manufacturing. Even though your product variant has both values (Grandeur + Largeur) and the BoM line also has both selected, Odoo’s internal method _match_all_variant_values() does not validate multi-choice attributes using “AND logic.” Instead, it behaves as if attribute values in a BoM line are alternatives (OR), not combined requirements. As a result, it incorrectly returns False, which leads _skip_for_no_variant to return True, causing the BoM line to be skipped. This is a limitation/bug in Odoo 17–18. To fix it, you must override _match_all_variant_values() to check that all BoM attribute values exist on the product variant, or patch _skip_for_no_variant to use correct matching logic. Otherwise, multi-choice attributes will never work correctly with “Apply to Variant” in BoM lines.


Hope it helps.

0
Avatar
Kassér
Enjoying the discussion? Don't just read, join in!

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

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
How to make all branches for user active automatically after login his account?
development
Avatar
Avatar
Avatar
3
nov. 25
285
How to create a new field have 2 related field by developer mode
development
Avatar
Avatar
2
okt. 25
541
i face one error while edit my website
development
Avatar
0
okt. 25
658
How to add market price of the product to the Odoo 18 Community POS receipt?
development
Avatar
0
okt. 25
576
Unable to create views in my custom module or an application Løst
development
Avatar
Avatar
2
okt. 25
6733
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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