我正在尝试在 POS 按钮中添加一些功能,特别是显示为“验证”的按钮。要测试此链接https://odoo-development.readthedocs.io/en/latest/dev/pos/gui.html中的指南是否有效,我只是添加了一个 console.log,如下所示:
odoo.define('my_module.js_file', function (require) {
"use strict";
var screens = require('point_of_sale.screens');
screens.PaymentScreenWidget.include({
init: function(parent, options) {
this._super(parent, options);
//My console log message
console.log('Hello world!')
this.pos.on('updateDebtHistory', function(partner_ids){
this.update_debt_history(partner_ids);
}, this);
},
});
但是该消息仅在 POS 结束加载数据时显示一次,而不是在我按下按钮时显示。我在这里做错了什么?