Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Issue with Translating description_ecommerce Field in Odoo Online (Multi-Company Setup)

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
translationstranslationhtmltranslatableHtmlHTML
893 Visualizzazioni
Avatar
Massimiliano Gandini

Hello Odoo Community,

I’m reaching out to seek your expertise on an issue we’re encountering with translating the description_ecommerce field in a multi-company Odoo Online database. The translations for this field remain blank, and the "source" column (which usually holds the default language content) seems to be missing.

The Issue

The field description_ecommerce, which is designed to hold HTML content for products, is marked as translatable (translate=True) in the database. However, when attempting to add translations via Google API:

  • The translations don’t work; all languages except the default one show blank content.
  • The "source" column doesn’t appear, which I believe is leading to the translation issue since the default text isn’t stored properly for reference.

Steps We’ve Taken to Resolve It

Below is the relevant part of the code: 

for field, field_name in fields_to_translate.items():
    source_text = record.with_context(lang='en_US')[field_name]  # Fetch the source content in default language
    if not source_text:
        chatter_logs.append(f"FIELD: {field_name} | **Source**: [EMPTY]")
        continue

    log_line = f"FIELD: {field_name} | **Source**: {source_text}"

    for lang in languages:
        if lang.code == "en_US":  # Skip default language
            continue

        payload = {
            "q": source_text,
            "target": lang.code.split("_")[0],
            "format": "html",
            "key": api_key
        }
        response = requests.post(api_url, data=payload)

        if response.status_code == 200:
            result = response.json()
            translated_text = result.get("data", {}).get("translations", [])[0].get("translatedText", "")
            log_line += f" | **{lang.code}**: {translated_text}"
        else:
            log_line += f" | **{lang.code}**: [ERROR]"

    chatter_logs.append(log_line)
    • We tested the code thoroughly, but despite adjusting the field configuration and ensuring the field is recognized as translatable, the translations remained blank.

Additional Step

  • As a final attempt to isolate the issue, we created a new HTML field (x_studio_description_ecommerce) via Odoo Studio, set it as translatable, and updated the server action to include this field for translation.
  • However, the problem persisted with this new field as well, showing the same behavior of blank translations and no "source" column.

Request for Support

Based on the above, I’d like to ask for your guidance with the following:

  1. Why might the "source" column for the description_ecommerce field (and the new custom field) be missing?
  2. Are there any steps or configurations we might have overlooked while working with the description_ecommerce field in a multi-company setup?

Your insights would be immensely helpful in resolving this issue. Thank you for your time and expertise!

Best regards,

Max

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
HTML
qweb html name Html HTML
Avatar
Avatar
Avatar
2
apr 23
2994
Thank you message to translate
translations translation
Avatar
Avatar
1
mar 21
4247
how can one translate the unsubscribe page? Risolto
translations translation unsubscribe
Avatar
Avatar
1
lug 23
2956
Translate module - v16
translations translation odoo16features
Avatar
0
mar 23
3019
[Odoo 10] Can not export translation.
export translations translation
Avatar
Avatar
Avatar
Avatar
3
gen 23
6402
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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