Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Show variant specific description on product site ecommerce

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
webclientdevelopmentportalecommerce
1 Beantwoorden
2253 Weergaven
Avatar
Kasper

I'm building an odoo18 module that would show unique product variant descriptions on the ecommerce site. The description must also update when user change the variant on the website (not necessarily reloading whole page).

And this is a step where I got stuck and would ask for help ;) 


here are important files for my configuration - this works just fine

model

class ProductProduct(models.Model):

    _inherit = 'product.product'

    website_description_variant = fields.Html(

        string="Website Description (Variant)",

        translate=True

    )


class ProductTemplate(models.Model):

    _inherit = 'product.template'


    def _get_combination_info(self, *args, **kwargs):

        res = super()._get_combination_info(*args, **kwargs)

        product_id = res.get('product_id')

        if product_id:

            product = self.env['product.product'].browse(product_id)

            res['website_description_variant'] = product.website_description_variant or ""

        return res

xml portal view:

<odoo>

    <data>

        <template id="website_product_variant_description_snippet" inherit_id="website_sale.product">

            <xpath expr="//div[@t-field='product.description_ecommerce']" position="after">

                <div class="oe_structure oe_variant_desc">

                    <h2>Variant Description</h2>

                    <t t-if="product.product_variant_id.website_description_variant">

                        <div id="variant_description">

                            <t t-out="product.product_variant_id.website_description_variant"/>

                        </div>

                    </t>

                </div>

            </xpath>

        </template>

    </data>

</odoo>

the important manifest stuff:

'depends': ['website_sale', 'website', 'web', 'web_editor'],

    'data': [

        'views/product_variant_description_views.xml',

        'views/product_variant_description_website.xml',        

    ],

    'assets': {

        'web.assets_frontend': [

            'product_variant_description/static/src/js/product_variant_description.js',

        ],

    },


And it works perfectly to show the first variant description. But then it is shown at every variant and is not refreshed anyhow.


I've added this js file (which seems to be the problem)

console.log('[product_variant_description] JS loaded!');


odoo.define('product_variant_description.variant_description', ['web.public.widget'], function (require) {

    "use strict";


    var publicWidget = require('web.public.widget');


    publicWidget.registry.ProductVariantDescription = publicWidget.Widget.extend({

        selector: '#variant_description',

        events: {

            'change_variant': '_onVariantChange',

        },

        _onVariantChange: function (ev) {

            const variantDesc = data.combination_info.variant_description || '';

            data.$container.find('#variant_description').html(variantDesc);

        },

    });


    return publicWidget.registry.ProductVariantDescription;

});


but it only produces errors like The following modules are needed by other modules but have not been defined, they may not be present in the correct asset bundle: ['web.public.widget']​ and does not console log anything at all. I've tried almost all approaches i could find but failed miserably.


TLDR: I would love any suggestions on how to achieve unique product variant descriptions shown on the ecommerce site.

If someone is familiar with development of odoo modules then I'd be glad to learn more, as custom portal extensions are rather omitted in tutoprial/docs  

0
Avatar
Annuleer
Avatar
Kasper
Auteur Beste antwoord

sooo by the time it got posted I've sorted it out (Browsed through odoo code) 

here is the working js implementation:

/** @odoo-module */

import publicWidget from "@web/legacy/js/public/public_widget";


publicWidget.registry.WebsiteSale.include({


    /**

         * @override

         */

    _onChangeCombination(ev, $parent, combination) {

        const res = this._super.apply(this, arguments);


        const variantDesc = combination?.website_description_variant || '';

        this.$('#variant_description').html(variantDesc);



        return res;

    },

});


might share a module on github soon 

1
Avatar
Annuleer
youssef tarhri

Hi, thank you, did you already share the module in github?

Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
extend the functionality of the module website_sale_stock
development ecommerce
Avatar
0
mei 24
3146
IndexError: list index out of range from Customer Portal from invoice
portal ecommerce
Avatar
Avatar
Avatar
Avatar
Avatar
4
feb. 17
8749
Importable Module Controller (Using XML Data Files)
webclient development debug
Avatar
0
apr. 25
1376
web_editor add font size options in texts
webclient development configuration
Avatar
0
jan. 25
1854
How to make the enter key work as tab key? Opgelost
webclient development jquery
Avatar
Avatar
Avatar
Avatar
4
aug. 22
33794
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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