This question has been flagged

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!!!!!!!! :)

Avatar
Discard
Author 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 ;) 


Avatar
Discard
Best Answer

Hello i want to override 

parseFloatTime

can you please help me out ?


Avatar
Discard