Commit 2a90d8ab by Yvon

pas de rendu d'espèces sur chèques repas non plus

parent f2ed58f5
......@@ -327,17 +327,17 @@ odoo.define("lacagette_custom_pos.screens", function (require) {
return false;
}
var totalPaidExceptCashOrMealVoucherPaper = 0; //block if this amount is more than total with tax
var totalPaidExceptCash = 0; //block if this amount is more than total with tax
for (i = 0; i < plines.length; i++) {
if (plines[i].get_type() !== 'cash' && !plines[i].is_paper_meal_voucher()) {
totalPaidExceptCashOrMealVoucherPaper+= plines[i].get_amount();
if (plines[i].get_type() !== 'cash') {
totalPaidExceptCash += plines[i].get_amount();
}
}
if (!force_validation && order.get_total_with_tax() > 0 && (order.get_total_with_tax() < totalPaidExceptCashOrMealVoucherPaper)) {
if (!force_validation && order.get_total_with_tax() > 0 && (order.get_total_with_tax() < totalPaidExceptCash)) {
this.gui.show_popup('error',{
title: _t('Le rendu de monnaie est possible seulement sur les lignes espèces et chèques repas.'),
body: _t('Pour valider le paiement, la somme des montants offerts des lignes (hors espèces et chèques repas) doit donc être inférieure au total dû.'),
title: _t('Le rendu de monnaie est possible seulement sur les lignes espèces.'),
body: _t('Pour valider le paiement, la somme des montants offerts des lignes (hors espèces) doit donc être inférieure au total dû.'),
});
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment