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

How to significantly speed up web client in v7 by turning off animation?

Iscriviti

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

La domanda è stata contrassegnata
webclientjavascriptperformancev7
1 Rispondi
8899 Visualizzazioni
Avatar
Max Kosenko

Based on our tests animation takes > 80% of cpu on client computer. Plus some requests to server are waiting until animation will be finished. During fast browsing in the system it slows things too much. Is there any option to turn it off to make speed comparable to desktop erp systems?

2
Avatar
Abbandona
Abner Galeno Jr.

I would like the option of disabling the animations too, especially when I'm testing. Being able to shorten the animation time (in milliseconds) would be a very nice option as well.

Fabrice Henrion (fhe)

Can you precise exactly what you call animations?

Abner Galeno Jr.

I think it's about the fade-in and fade-out animation done by javascript on the web client..

Max Kosenko
Autore

Yes, I mean those JQuery animations of fading in/ou, animated resize and background tinting. All those things look nice for those who want to look on modern UI, but it slows down real work significantly. So having user (or system) option to turn off animation would benefit real heavy load users life

Alan Bell

apart from the fade out of the login screen I am not seeing any animations. Can you specifically point to an operation that features an animation or graduated fade?

Max Kosenko
Autore

Loading label, background tint, modal dialogs expanding. This is what I can visually see. Debugger shows a lot of animation during whole use.

Avatar
Alan Bell
Risposta migliore

things that fade in and out are:

  • The login screen

  • the "loading" animation while it assembles a page of html

  • date pickers fade out

  • Notifications fade in and out

there may be some things that have a 0.2second ease-out transition on them, but I can't find any. I just see the definition for it in the css files. jquery transitions are normally asynchronous, so they don't stop execution or slow anything down, you just start the transition and then the javascript carries on going so I doubt that anything much is waiting on an animation to complete - with the possible exception of the "Invalid username or password" error message on login which is in a callback at the end of the login pane fadein animation.

0
Avatar
Abbandona
Max Kosenko
Autore

When you saying something is asynchronous in javascript, you should take into account that it's actually not. It's taking 80% CPU, keeping some code on mutexes and blocking user input until it's finished. Just try to move fast around UI and you will see that animation literally slows you down a lot.

Abner Galeno Jr.

I think the CPU only eats 40-80% usage in a burst of less than a sec. but i noticed that not all operations are asynchronous. Using some tools, the resources even seems to be loaded sequentially - that's why the wait time adds up. Worst, the interface is usually unnecessarily locked in the process.

Abner Galeno Jr.

The "mostly sequential" loading of the resources can be inferred here : http://i.imgur.com/3bnj5FX.png . Maybe it's because of the modular architecture of OpenERP. In an interesting note, the user profile pic and search_reset.gif are now cached,so it seems some devs are reading the feedbacks?yey!

Alan Bell

I will do a video of me moving around the UI fast, I am not seeing much of a problem to be honest, running OpenERP on a virtual server located in Germany and I am in the UK using a fairly ordinary core i3 laptop. CPU doesn't go high at all. I am using chromium as my browser.

Alan Bell

ah, hang on, you are having domain resolution problems too. These animations you talk about, is that simply it assembling the page as the data arrives rather than any actual intentional animation?

Max Kosenko
Autore

When I was talking about 80% CPU, I cerntanly don't mean of whole CPU. I mean that 80% of application cpu time is taken by animation. And some animation just simply slow - modal dialogs are painfully slow resizing. If you check Chrome debugger you will see a lot of steps of redrawing frames on timer

Alan Bell

something isn't right there then. I am using Chrome, Chromium and Firefox on Ubuntu 12.10 with Intel graphics on a core i3 processor, it is perfectly smooth resizing and moving dialogs and doesn't show anything much in the javascript cpu profile in the debugger.

Max Kosenko
Autore

I see in debugger several timers one after another set to 300ms delays. It's not about not smooth. It's about that animation forces me to wait while I can already do something. It should be option for users to see it moving, fading and resizing or work faster.

Benoy P P

May i know, how to disable these animations ? Especially in the POS, for me the loading of products and details are more important, not the UI.

Flyguy

I am also experiencing a lot of wait times while navigating. And if you click a link while the screen is still loading, you get an error. Same thing with the search screen. You have to type very slowly, or else part of what you type gets lost. Very annoying. For an ERP system, I definately prefer speed over look anytime.

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à
Passing id to javascript
javascript v7
Avatar
Avatar
1
giu 15
5473
XMLRPC with JavaScript V7
javascript v7
Avatar
Avatar
Avatar
2
mag 15
9353
How can we unit test javascript components in web addons?
webclient javascript development v6.1 v7
Avatar
Avatar
1
mar 15
8229
Openerp 7 Client Error
javascript v7
Avatar
0
mar 15
12397
Why won't my custom javascript module load? Risolto
webclient javascript
Avatar
Avatar
1
mar 15
8007
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