1

この開発では、My TimeSheets に四捨五入した数値を表示したいだけです。

実際、私の JS ファイルは起動されますが、openerp.new_module(以下を参照) は呼び出されないようです。

openerp.new_module = function(instance){

    var module = instance.hr_timesheet_sheet // loading the namespace of the 'sample' module

    var _super_ = module.WeeklyTimesheet.prototype.sum_box;

    module.WeeklyTimesheet.include({

        sum_box : function(){
            //_super_.call(this);  // calling the original Foo.bar() method
            var line_total = 0;
            _.each(account.days[day_count].lines, function(line) {
                line_total += line.unit_amount;
            });
            return Math.round(line_total*100)/100;
        },

    });
};

よろしくお願いします。

4

0 に答える 0