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

[SOLVED] How to override/custom formatFloat function in field_utils JS

Iscriviti

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

La domanda è stata contrassegnata
webclientjavascriptcustomizefloatodoo11
2 Risposte
8957 Visualizzazioni
Avatar
rehan

hi guys, i want to override/custom the function of formatFloat(), 

i want to not show the decimal default in each record(i mean remove the decimal if the last value is 0, ignore the digit to be shown), can anyone help me? 

i just trying to render my js and work fine it can show the log but failed when rendering the formatFloat() function and i checked the log this is what i got =  Failed modules:           ["warpin_decimal_precision.field_utils"] :(

this is my code:

my template.xml:

<?xml version="1.0" encoding="utf-8"?>

<odoo>

    <template id="assets_backend" name="Decimal Precision Backend Assets" inherit_id="web.assets_backend">

        <xpath expr="." position="inside">

            <script type="application/javascript" src="/warpin_decimal_precision/static/src/js/field_utils.js"/>

        </xpath>

    </template>

</odoo> 

 my js file:

odoo.define('warpin_decimal_precision.field_utils', function (require) {

    "use strict";
    var FieldUtils = require('web.field_utils');

    var core = require('web.core');

    var dom = require('web.dom');

    var session = require('web.session');

    var time = require('web.time');

    var utils = require('web.utils');
    var _t = core._t; 

    var QWeb = core.qweb;
    if (FieldUtils) {

        console.log(FieldUtils, 'test print')

    }

    console.log('miawwwwwwww')
    

   //override method formatFloat

    FieldUtils.include({

        formatFloat: function (value, field, options) {

            console.log(value, 'MIAAAAAAAAAAAAAAAAAAAAAAAAAAWWW')

            if (value === false) {

                  return "";

            }

            var l10n = _t.database.parameters; var precision;

            if (options && options.digits) {

                precision = options.digits[1];

            } else if (field && field.digits) {

                precision = field.digits[1];

            } else {

                precision = 2;

            }

            var formatted = _.str.sprintf('%.' + precision + 'f', value || 0).split('.'); -> i want to change this to become value.to_string();

            formatted[0] = utils.insert_thousand_seps(formatted[0]);

            return formatted.join(l10n.decimal_point);  

        },

    });
    return FieldUtils;

}); 

so later all of my float field value in my odoo become like e. g.

 17.90 -> 17.9,

 1.553000 -> 1.553

thanks in advance!!!!!!!! :)

1
Avatar
Abbandona
Avatar
rehan
Autore Risposta migliore

odoo.define('warpin_decimal_precision.float_field_utils', function (require) {

    "use strict";
    var field_utils = require('web.field_utils');

    var core = require('web.core');

    var utils = require('web.utils');
    var _t = core._t;

    var QWeb = core.qweb;


    function MyCustomformatFloat(value, field, options) {

        // Copy original function with your modification

        if (value === false) {

            return "";

        }

        var l10n = core._t.database.parameters;

        var precision;

        if (options && options.digits) {

            precision = options.digits[1];

        } else if (field && field.digits) {

            precision = field.digits[1];

        } else {

            precision = 2;

        }

        var formatted = _.str.sprintf('%.' + precision + 'f', value || 0).split('.');

        var decimal = formatted[1];

       //the purpose of dumb decimal is to remove the last value / 0 value in the decimal                                                                                                                                                                                                                                                       

        var dumb_decimal= "1." + decimal;

        var fix_decimal = String(parseFloat( dumb_decimal ));

        var split_decimal = fix_decimal.split('.');

        formatted[0] = utils.insert_thousand_seps(formatted[0]);

         var decimal_array = []

         var result = formatted[0]                                                                                                                                             

         if (split_decimal[1]) {

            decimal_array.push(formatted[0]);

            decimal_array.push(split_decimal[1]);

             result = decimal_array.join(l10n.decimal_point); 

       } 

        return result

    }
    field_utils.format.float = MyCustomformatFloat;
}); 


got the answer, solved ;) 


1
Avatar
Abbandona
Avatar
Manish Vyas
Risposta migliore

Hello i want to override 

parseFloatTime

can you please help me out ?


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à
Odoo 11 Web JS Framework doesn't initialize my module and thus doesn't register my client action Risolto
webclient javascript action webframework odoo11
Avatar
1
apr 18
10098
Odoo11 help with js please Risolto
javascript odoo11
Avatar
Avatar
1
mag 21
4103
How can I make widget with one2many field selectable in odoo11?
javascript odoo11
Avatar
Avatar
2
mag 20
10584
HTML Table to Excel Format
javascript odoo11
Avatar
Avatar
1
gen 20
5804
How can I pass data via POST method instead of GET method in an action ?
javascript odoo11
Avatar
0
mar 19
4103
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