|
@@ -342,16 +342,30 @@
|
|
|
</table>
|
|
|
|
|
|
<div class="divisoria"> </div>
|
|
|
- <div class="sub_total">
|
|
|
- <strong>Sub Total: </strong> <span t-esc="'{0:,.0f}'.format(o.amount_total)"/>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="total_iva">
|
|
|
- <strong>Total IVA: </strong> <span t-esc="'{0:,.0f}'.format(o.amount_tax)"/>
|
|
|
- </div>
|
|
|
- <div class="total_total">
|
|
|
- <strong>Total: </strong> <span t-esc="'{0:,.0f}'.format(o.amount_total)"/>
|
|
|
- </div>
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-xs-4 pull-right">
|
|
|
+ <table class="table table-condensed">
|
|
|
+ <tr class="border-black">
|
|
|
+ <td><strong>Sub Total:</strong></td>
|
|
|
+ <td class="text-right">
|
|
|
+ <span t-esc="'{0:,.0f}'.format(o.amount_total)"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <td>Total IVA:</td>
|
|
|
+ <td class="text-right">
|
|
|
+ <span t-esc="'{0:,.0f}'.format(o.amount_tax)"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr class="border-black">
|
|
|
+ <td><strong>Total</strong></td>
|
|
|
+ <td class="text-right">
|
|
|
+ <span t-esc="'{0:,.0f}'.format(o.amount_total)"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
|
|
|
<!-- <div class="total_pagar_data">En letras: <span t-esc="convertir(o.amount_total,o.currency_id.en_letras1)"/></div> --> -->
|
|
|
|