Проблема при отмене функции JS. Я получаю TypeError: Cannot read property 'include' of undefined
Я пытаюсь изменить текст в функции displayLoading
. Кто-нибудь сталкивался с этой проблемой?
Вот мой код:
odoo.define('website_template.payment_process', function(require) {
"use strict";
var PaymentProcessing = require('payment.processing');
var PaymentView = PaymentProcessing.include({
displayLoading: function () {
var msg = _t("We are processing your order, please wait ...");
$.blockUI({
'message': '<h2 class="text-white"><img src="/web/static/src/img/spin.png" class="fa-pulse"/>' +
' <br />' + msg +
'</h2>'
});
},
});
});