Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

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

Odoberať

Get notified when there's activity on this post

This question has been flagged
webclientjavascriptcustomizefloatodoo11
2 Replies
9084 Zobrazenia
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
Zrušiť
Avatar
rehan
Autor 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
Zrušiť
Avatar
Manish Vyas
Best Answer

Hello i want to override 

parseFloatTime

can you please help me out ?


0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
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
10175
Odoo11 help with js please Solved
javascript odoo11
Avatar
Avatar
1
máj 21
4185
How can I make widget with one2many field selectable in odoo11?
javascript odoo11
Avatar
Avatar
2
máj 20
10673
HTML Table to Excel Format
javascript odoo11
Avatar
Avatar
1
jan 20
5896
How can I pass data via POST method instead of GET method in an action ?
javascript odoo11
Avatar
0
mar 19
4183
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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