|
@@ -0,0 +1,102 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<openerp>
|
|
|
+<data>
|
|
|
+ <report
|
|
|
+ id="account_bank_id"
|
|
|
+ model="account.bank.statement"
|
|
|
+ string="Listado de Extracto de Banco"
|
|
|
+ report_type="qweb-pdf"
|
|
|
+ name="informes_account_bank.report_bank1"
|
|
|
+ file="informes_account_bank.report_bank1"
|
|
|
+ />
|
|
|
+<template id="report_bank1">
|
|
|
+ <t t-call="report.html_container">
|
|
|
+
|
|
|
+ <t t-call="report.external_layout">
|
|
|
+ <div class="header">-</div>
|
|
|
+ <div class="page">
|
|
|
+ <style type="text/css">
|
|
|
+ .crm_tcab{
|
|
|
+ font-size: 3mm;
|
|
|
+ font-family: Arial, Helvetica, sans-serif;
|
|
|
+ }
|
|
|
+
|
|
|
+ .veh_tbody{
|
|
|
+ font-size: 2.8mm;
|
|
|
+ font-family: Arial, Helvetica, sans-serif;
|
|
|
+ }
|
|
|
+ .taxtotal{
|
|
|
+ font-size: 2.8mm;
|
|
|
+ }
|
|
|
+ .total{
|
|
|
+ font-size: 2.8mm;
|
|
|
+ }
|
|
|
+ .untotal{
|
|
|
+ font-size: 2.8mm;
|
|
|
+ }
|
|
|
+ .logo1{
|
|
|
+ width: 100%;
|
|
|
+ top: 1.5cm;
|
|
|
+ }
|
|
|
+
|
|
|
+ </style>
|
|
|
+ <h4 class="text-center">Listado de Extracto de Banco</h4>
|
|
|
+ <div class="logo1"> </div>
|
|
|
+ <table class="table table-bordered">
|
|
|
+ <thead class="crm_tcab">
|
|
|
+ <tr class="active">
|
|
|
+ <th class="text-center">Fecha</th>
|
|
|
+ <th class="text-center">Referencia</th>
|
|
|
+ <th class="text-right">Saldo Inicial</th>
|
|
|
+ <th class="text-right">Saldo Final</th>
|
|
|
+ <th class="text-right">Total</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <t t-foreach="docs" t-as="o">
|
|
|
+ <tbody class="veh_tbody">
|
|
|
+ <tr>
|
|
|
+ <td><span t-field="o.date"/></td>
|
|
|
+ <td><span t-esc="o.name"/></td>
|
|
|
+ <td class="text-right">
|
|
|
+ <span t-field="o.balance_start"
|
|
|
+ t-field-options='{"widget": "monetary", "display_currency": "res_company.currency_id"}'/>
|
|
|
+ </td>
|
|
|
+ <td class="text-right">
|
|
|
+ <span t-field="o.balance_end_real"
|
|
|
+ t-field-options='{"widget": "monetary", "display_currency": "res_company.currency_id"}'/>
|
|
|
+ </td>
|
|
|
+ <td class="text-right">
|
|
|
+ <span t-field="o.balance_end"
|
|
|
+ t-field-options='{"widget": "monetary", "display_currency": "res_company.currency_id"}'/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </t>
|
|
|
+ <tr>
|
|
|
+ <td colspan="6"></td>
|
|
|
+ </tr>
|
|
|
+ <tr class="border-black">
|
|
|
+ <td colspan="3">Totales</td>
|
|
|
+ <td class="text-right">
|
|
|
+ <t t-set="residual" t-value="sum([x.balance_start for x in docs])"/>
|
|
|
+ <span t-esc="residual" t-esc-options='{"widget": "monetary", "display_currency": "res_company.currency_id"}'/>
|
|
|
+ </td>
|
|
|
+ <td class="text-right">
|
|
|
+ <t t-set="untaxed" t-value="sum([x.balance_end_real for x in docs])"/>
|
|
|
+ <span t-esc="untaxed" t-esc-options='{"widget": "monetary", "display_currency": "res_company.currency_id"}'/>
|
|
|
+ </td>
|
|
|
+ <td class="text-right">
|
|
|
+ <t t-set="total" t-value="sum([x.balance_end for x in docs])"/>
|
|
|
+ <span t-esc="total" t-esc-options='{"widget": "monetary", "display_currency": "res_company.currency_id"}'/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </t>
|
|
|
+ </t>
|
|
|
+</template>
|
|
|
+</data>
|
|
|
+</openerp>
|
|
|
+
|