[FIX] point_of_sale: printing of tax name on hardware was missing data 'name', also made the regular print use the same value for consistency.

This commit is contained in:
Niels Huylebroeck 2014-10-09 18:38:46 +02:00
parent 8a9027edd1
commit f0f5a29606
2 changed files with 2 additions and 2 deletions

View File

@ -1058,7 +1058,7 @@ function openerp_pos_models(instance, module){ //module is instance.point_of_sal
for(var id in details){
if(details.hasOwnProperty(id)){
fulldetails.push({amount: details[id], tax: taxes_by_id[id]});
fulldetails.push({amount: details[id], tax: taxes_by_id[id], name: taxes_by_id[id].name});
}
}

View File

@ -973,7 +973,7 @@
</tr>
<t t-foreach="order.getTaxDetails()" t-as="taxdetail">
<tr>
<td><t t-esc="taxdetail.tax.name" /></td>
<td><t t-esc="taxdetail.name" /></td>
<td class="pos-right-align">
<t t-esc="widget.format_currency(taxdetail.amount)" />
</td>