Se rendre au contenu
Menu
Cette question a été signalée
2 Réponses
8478 Vues

Hello all,

See the screen below. At this place, by default, the « enter » key of the keyboard has the same behavior than a click on the « Validate » button. 

We rather want that the « enter » key simulate a click of the « Invoice » button.

How to achieve this?

Thanks


Avatar
Ignorer
Meilleure réponse

Hi @Pascal Tremblay

Here is how:

openerp.pos_test = function (instance) {
var _t = instance.web._t,
_lt = instance.web._lt;
var QWeb = instance.web.qweb;

instance.point_of_sale.PaymentScreenWidget.include({
init: function(parent, options) {
var self = this;
this._super(parent,options);
document.body.removeEventListener('keyup',this.hotkey_handler);
this.hotkey_handler = function(event){
if(event.which === 13){
self.validate_order({invoice: true});
}else if(event.which === 27){
self.back();
}
};
document.body.addEventListener('keyup', this.hotkey_handler);
}
});
}
Avatar
Ignorer
Auteur

Thanks 1000 times. I could never code it myself! Ouf!

Happy to help

Auteur

This code works well. Thanks again.

Meilleure réponse

where to put this code please


Avatar
Ignorer
Publications associées Réponses Vues Activité
2
sept. 24
4601
2
juil. 21
11364
0
avr. 19
4513
2
août 17
10931
1
mars 15
6218