Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

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

Naroči se

Get notified when there's activity on this post

This question has been flagged
webclientjavascriptcustomizefloatodoo11
2 Odgovori
8967 Prikazi
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
Opusti
Avatar
rehan
Avtor Best Answer

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
Opusti
Avatar
Manish Vyas
Best Answer

Hello i want to override 

parseFloatTime

can you please help me out ?


0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Odoo 11 Web JS Framework doesn't initialize my module and thus doesn't register my client action Solved
webclient javascript action webframework odoo11
Avatar
1
apr. 18
10098
Odoo11 help with js please Solved
javascript odoo11
Avatar
Avatar
1
maj 21
4103
How can I make widget with one2many field selectable in odoo11?
javascript odoo11
Avatar
Avatar
2
maj 20
10585
HTML Table to Excel Format
javascript odoo11
Avatar
Avatar
1
jan. 20
5805
How can I pass data via POST method instead of GET method in an action ?
javascript odoo11
Avatar
0
mar. 19
4103
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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