Hoppa till innehåll
Odoo Meny
  • Logga in
  • Prova gratis
  • Appar
    Finanstjänster
    • Bokföring
    • Fakturering
    • Utgifter
    • Kalkylark (Affärsanalyser)
    • Dokument
    • Underskrifter
    Försäljning
    • CRM
    • Försäljning
    • Kassasystem Butik
    • Kassasystem Restaurang
    • Prenumerationer
    • Uthyrning
    Hemsidor
    • Hemsidesverktyg
    • E-handel
    • Blogg
    • Forum
    • Livechatt
    • Utbildning
    Försörjningskedja
    • Lager
    • Produktion
    • Produktens livscykel (PLM)
    • Inköp
    • Underhåll
    • Kvalitet
    HR
    • Anställda
    • Rekrytering
    • Ledighet
    • Utvärderingar
    • Rekommendationer
    • Fordon
    Marknadsföring
    • Sociala medier
    • E-postmarknadsföring
    • Sms-marknadsföring
    • Evenemang
    • Automatiserad marknadsföring
    • Enkäter
    Tjänster
    • Projekt
    • Tidrapporter
    • Fältservice
    • Kundtjänst
    • Planering
    • Tidsbokningar
    Produktivitet
    • Diskutera
    • Godkännanden
    • IoT
    • VoIP
    • Kunskap
    • WhatsApp
    Community-appar Odoo Studio Odoo Cloud
  • Branscher
    Butiker
    • Bokaffärer
    • Klädbutiker
    • Möbelaffärer
    • Mataffärer
    • Byggvaruhus
    • Leksaksaffärer
    Restaurang & Hotell
    • Barer och pubar
    • Gourmetrestauranger
    • Snabbmatsrestauranger
    • Gästhus
    • Dryckesdistributörer
    • Hotell
    Fastigheter
    • Fastighetsbyråer
    • Arkitektfirmor
    • Byggföretag
    • Fastighetsägare
    • Trädgårdsmästare
    • Bostadsrättsföreningar
    Hitta en konsult
    • Redovisningsbyrå
    • Odoo Partner
    • Reklambyråer
    • Advokatbyråer
    • Rekrytering
    • Revisioner och certifieringar
    Produktion
    • Textilproduktion
    • Metallproduktion
    • Möbelproduktion
    • Livsmedelsproduktion
    • Bryggerier
    • Företagsgåvor
    Hälsa & Fitness
    • Sportklubbar
    • Optiker
    • Träningscenter
    • Hälsovård
    • Apotek
    • Frisörsalonger
    Hantverk
    • Hantverkare
    • IT-utrustning och kundtjänst
    • Solenergi
    • Skomakare
    • Städtjänster
    • VVS-tjänster
    Övrigt
    • Ideella föreningar
    • Miljöförvaltningar
    • Uthyrning av reklamtavlor
    • Fotografer
    • Cykeluthyrning
    • Återförsäljare av mjukvara
    Upptäck alla Branscher
  • Community
    Utbildning
    • Instruktionsvideor
    • Dokumentation
    • Certifiering
    • Utbildningar
    • Blogg
    • Podcast
    Lär dig med oss
    • Workshops
    • Företagsspelet Scale Up!
    • Studiebesök hos Odoo
    Mjukvaran
    • Ladda ner
    • Jämför utgåvor
    • Tidigare versioner
    Samverkan
    • GitHub
    • Forum
    • Evenemang
    • Översättningar
    • Bli en partner
    • Partnertjänster
    • Registrera din redovisningsbyrå
    Våra tjänster
    • Partners
    • Revisorer
    • Träffa en rådgivare
    • Implementering
    • Kundrecensioner
    • Kundtjänst
    • Uppgraderingar
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Boka en demo
  • Priser
  • Hjälp
Du måste vara registrerad för att kunna interagera med communityn.
Alla inlägg Personer Utmärkelser
Etiketter (Visa alla)
odoo accounting v14 pos v15
Om detta forum
Du måste vara registrerad för att kunna interagera med communityn.
Alla inlägg Personer Utmärkelser
Etiketter (Visa alla)
odoo accounting v14 pos v15
Om detta forum
Hjälp

Syntax error in custom javascript breaks all javascript functionality

Prenumerera

Få ett meddelande när det finns aktivitet på detta inlägg

Denna fråga har flaggats
javascriptwebsite
2 Svar
7557 Vyer
Avatar
Raul Barroso

I am using Odoo 14 (Enterprise Edition). I have been customizing my website's javascript through the JS Editor in the Customize tab in the Website App. The last time I updated the custom js file, I left in a syntax error. This of course cancels all the javascript in the file, but it also seems to break all other js functionality, which means I can no longer access the JS Editor to fix the syntax error. Is there another way to edit the js file? If not, what can I do?

1
Avatar
Avbryt
João Hackbart

Sorry for using the answer to comment, but I've just created this account and I can't comment yet.


I've run into the same problem and I was wondering if you've managed to find a solution?

Avatar
Eric Mattingley
Bästa svar

I had to override the offending javascript file through Chrome's dev tools:

1. In Chrome, open Dev Tools (F12 or Right-click > Inspect)

2. Select the "Sources" tab> "Overrides"

3. Create a new folder on your desktop (or wherever) with whatever name you want (to store your override files).

4. Click "Select folder for overrides" at the top of the left-most column.

5. Select the folder you created in Step 3.

6. Click "Allow" at the top when it pops up.

7. Click "Enable Local Overrides" at the top of the left-most column (if unchecked).

8. With dev tools open, refresh your Odoo website page.

9. Go to the Chrome Dev Tools "Console" tab.

10. Click the link to the offending javascript_file.js:line_number at the top right of the Console error message.  This will take you directly to the offending javascript code within the offending javascript file.

NOTE: If there is no explicit error in the Console with a link to the offending Javascript file...As of Odoo 15 (at least for me), your custom code (aka the offending javascript file) resides in /MyHostName.odoo.com/web/assets/debug/3/web.assets_frontend_lazy.js . You can download this file from the "Page" tab in Chrome Dev Tools and place it in your override folder you created in Step 3, placing it in the same exact filepath indicated under the "Page" tab (which is presumably similar/the same to the filepath I just indicated).

11. Delete the offending code, then save (ctrl+S). This saves the modified .js file to your override folder you made in Step 3.

12. Now refresh the Odoo website page. It will load your modified .js file from the folder on your PC, instead of the broken one.

13. If you carefully deleted the offending javascript code in Step 11, you should now be able to use Odoo Javascript features again (most importantly, you should now be able to open the HTML/CSS/Javascript Editor again to delete the offending javascript code once and for all...AND SAVE IT.)

14. After deleting the offending code from Odoo's built-in editor & saving, confirm your pesky javascript is truly gone: Disable the "Allow overrides" checkbox in the dev console, and refresh the page (or open the site in an Incognito tab).


Odoo should definitely consider putting your custom javascript into a separate .js file instead of baking it into a huge other one (so you can just temporarily disable the entire script file with uBlock Origin/AdBlock Plus). Even better yet, make it so their website's javascript doesn't break (try{}catch{}?) if there's syntax errors in your own code.

8
Avatar
Avbryt
Mohammed Rida Yahla

you are a life savior

Nabil Mohamed Nabil Ali Ragab

well done, that was very insightful.

BRAHIM El-houcine

The best explanation I have ever found on forum for such a problem.

Avatar
Raul Barroso
Författare Bästa svar

Yes! I found the following solution. If you go to Settings and activate Developer mode (with assets) it seems to block the custom javascript but not the native one, allowing you to open the custom javascript editor and fix the error.

1
Avatar
Avbryt
Eric Mattingley

Not working for me :( It's ridiculous that you can't edit the javascript file another way, in case you break the entire website with an accidental bug!

Njuter du av diskussionen? Läs inte bara, delta också!

Skapa ett konto idag för att ta del av exklusiva funktioner och engagera dig i vår fantastiska community!

Registrera dig
Relaterade inlägg Svar Vyer Verksamhet
How to get Logged In user for Intercom Identity Verification
javascript website Online
Avatar
0
dec. 24
2226
Error evaluating template: SyntaxError: Unexpected identifier 'dict'
javascript website odoo15
Avatar
0
nov. 24
2677
Javascript render blocking
javascript speed website
Avatar
0
jan. 24
8524
How to get data from model with JS for public user?
javascript website v14
Avatar
0
mars 21
2955
How i can add script js in one web page ? Löst
javascript website e-commerce
Avatar
Avatar
Avatar
3
maj 20
13103
Community
  • Instruktionsvideor
  • Dokumentation
  • Forum
Öppen källkod
  • Ladda ner
  • GitHub
  • Runbot
  • Översättningar
Tjänster
  • Odoo.sh Hosting
  • Kundtjänst
  • Uppgradera
  • Anpassningsbara modifikationer
  • Utbildning
  • Revisorer
  • Partners
  • Bli en partner
Om oss
  • Vårt företag
  • Varumärkestillgångar
  • Kontakta oss
  • Jobb
  • Evenemang
  • Podcast
  • Blogg
  • Kunder
  • Juridiskt • Integritet
  • Säkerhet
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo är ett affärssystem med öppen källkod som täcker alla dina företagsbehov: CRM, e-handel, bokföring, lager, kassasystem, projektledning, och så vidare.

Odoos unika värdeförslag är att samtidigt vara väldigt enkel att använda men också helt integrerad.

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