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

Link products to variants (xml/rpc)

Subscriure's

Get notified when there's activity on this post

This question has been flagged
developmentsetupxmlrpcvariants
2 Respostes
128 Vistes
Avatar
soportesap@sicura.com.ve

For an Odoo.sh v17 implementation.


I have loaded the products (footwear) and created the sizes attribute.


I can identify the IDs of `product.product` or `product.template` using: 


product_ids = lnk_dbcom.execute(

        'product.product',

        'search_read',

        [[('default_code', 'in', codes)]],  # codes = list of product's code 

        {'fields': ['id', 'product_tmpl_id']})


I can also locate the IDs for the attribute and for the different variants: 


product_attribute_ids = lnk_dbcom.execute(

    'product.attribute.value',

    'search_read',

    [[('name', 'in', sizes)]],

    {'fields': ['id', 'attribute_id']}

)


Which model should the variants be linked to? product.product or product.template

How can I assign the selected size variants to each of the products (or templates) using XML/RPC?

I've tried several ways but I can't get it to work


# -

operation = [(1, attribute_line_id, {'value_ids': [(6, 0, product_attribute_ids)]})]

lnk_dbcom.execute(

    'product.template', 

    'write',

    [product_template_id]],

    {'attribute_line_ids': operation})




*note: **lnk_dbcom** es un objeto que encapsula la conexion a odoo usando xml/rpc*

0
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

Please refer to the code:

# Suppose you already have:

# product_template_id -> ID of product.template

# attribute_id -> ID of 'Size' attribute

# product_attribute_value_ids -> list of value IDs for sizes [id_7, id_8, id_9]


# 1. Check if the attribute line already exists for this template

existing_lines = lnk_dbcom.execute(

    'product.template.attribute.line', 'search',

    [[

        ('product_tmpl_id', '=', product_template_id),

        ('attribute_id', '=', attribute_id),

    ]]

)


if existing_lines:

    # 2. Update the existing line with all size value_ids

    lnk_dbcom.execute(

        'product.template.attribute.line', 'write',

        existing_lines,

        {'value_ids': [(6, 0, product_attribute_value_ids)]}

    )

else:

    # 3. Create a new attribute line with all size values

    lnk_dbcom.execute(

        'product.template.attribute.line', 'create',

        [{

            'product_tmpl_id': product_template_id,

            'attribute_id': attribute_id,

            'value_ids': [(6, 0, product_attribute_value_ids)]

        }]

    )


Hope it helps.

0
Avatar
Descartar
Avatar
soportesap@sicura.com.ve
Autor Best Answer

Final working code: (thx)

def  get_attribute_line_id (product_template_id, attribute_id, value_ids, create= True ):

     # Search for existing attribute line on the product

    existing_line_ids = lnk_dbcom.execute(

        'product.template.attribute.line' , 'search' ,

        [[

            [ 'product_tmpl_id' , '=' , product_template_id],

            [ 'attribute_id' , '=' , attribute_id]

        ]]

    )


    # If it doesn't exist and creation is allowed, create it

    if not existing_line_ids and create:

        print('create: ', product_template_id, attribute_id, value_ids)

        line_id = lnk_dbcom.execute(

            'product.template.attribute.line', 'create',

            [{

                'product_tmpl_id' : product_template_id,

                'attribute_id' : attribute_id,

                'value_ids' : [( 6 , 0 , value_ids)]

            }]

        )

        existing_line_ids = [line_id]


    return existing_line_ids




0
Avatar
Descartar
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
Database selector for on-premises instance first setup
development setup database
Avatar
0
d’abr. 22
109
I am unable to setup odoo 18 locally. I am facing issues when running pip install on requirements.txt
development setup debug mac
Avatar
Avatar
2
d’ag. 25
4231
Epson TM-M10 printer
security development setup shop
Avatar
Avatar
2
de juny 25
1178
error when activate module dental clinic management system
development configuration setup shop
Avatar
Avatar
1
de jul. 25
1486
[Need Advice ] I want run Odoo in Raspberry pi (8GB) running in bear metal is better or docker containr
development setup project workflow
Avatar
0
de març 25
1186
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