[imp] now switch view when clicking a payment method

bzr revid: nicolas.vanhoren@openerp.com-20111005143056-kc9p4x13cfno2hry
This commit is contained in:
niv-openerp 2011-10-05 16:30:56 +02:00
parent 07665ed2fa
commit 321c9a3321
1 changed files with 4 additions and 0 deletions

View File

@ -575,6 +575,10 @@ openerp.point_of_sale = function(db) {
};
PaypadView.prototype.performPayment = function(event) {
var cashRegister, cashRegisterCollection, cashRegisterId;
/* set correct view */
$('.step-screen').hide();
$('#payment-screen').show();
cashRegisterId = event.currentTarget.attributes['cash-register-id'].nodeValue;
cashRegisterCollection = this.shop.get('cashRegisters');
cashRegister = cashRegisterCollection.find(__bind( function(item) {