Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
8453 Visualizzazioni

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
Abbandona
Risposta migliore

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
Abbandona
Autore

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

Happy to help

Autore

This code works well. Thanks again.

Risposta migliore

where to put this code please


Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
2
set 24
4551
2
lug 21
11339
0
apr 19
4500
2
ago 17
10919
1
mar 15
6214