Skip to Content
Menú
This question has been flagged
1 Respondre
6941 Vistes

Greetings earthlings!

I'm trying to add a field (and show it), in the chat area of any document. Unfortunately, although the program is not showing any error, it simply will not do what I want (the new stuff is not loaded)...


odoo.define('mymodule.model.AbstractMessage', function (require) {

"use strict";

    var AbstractMessage = require('mail.model.AbstractMessage');

    var myAbstractMessage = AbstractMessage.extend({

        init: function (parent, data) {

            this._read_by = data.read_by;

            this._super.apply(this, arguments);

        },

        getReadBy: function () {

            return this._read_by;

        },

    });

    return myAbstractMessage;

});

Is there anyone who can figure out what's wrong?

Thanks!
Avatar
Descartar
Autor Best Answer

odoo.define('mymodule.model.AbstractMessage', function (require) {

    "use strict";

    var AbstractMessage = require('mail.model.AbstractMessage');

    AbstractMessage.include({

        init: function (parent, data) {

            this._read_by = data.read_by;

            this._super.apply(this, arguments);

        },

        getReadBy: function () {

            return this._read_by;

        },

    });

});


Avatar
Descartar
Related Posts Respostes Vistes Activitat
1
de març 22
6436
0
de febr. 19
3499
2
de jul. 24
2218
3
de maig 24
2955
0
de maig 24
1733