|
@@ -0,0 +1,117 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<openerp>
|
|
|
+<data>
|
|
|
+ <report
|
|
|
+ id="account_invoices_id1"
|
|
|
+ model="account.invoice"
|
|
|
+ string="Listado de Facturas2"
|
|
|
+ report_type="qweb-pdf"
|
|
|
+ name="informes_accountinvoices.report_invoice1"
|
|
|
+ file="informes_accountinvoices.report_invoice1"
|
|
|
+ />
|
|
|
+<template id="report_invoice1">
|
|
|
+ <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>
|
|
|
+
|
|
|
+ <t t-set="total" t-value="0" />
|
|
|
+ <t t-foreach="docs" t-as="f">
|
|
|
+ <t t-set="total" t-value="total+1" />
|
|
|
+ <t t-if="total==1">
|
|
|
+ <h4 style="text-align:center;"> <span t-if="f.type == 'in_invoice'">Listado de Facturas/Compras</span></h4>
|
|
|
+ <h4 style="text-align:center;"> <span t-if="f.type == 'out_invoice'">Listado de Facturas/Ventas</span></h4>
|
|
|
+ </t>
|
|
|
+ </t>
|
|
|
+ <br></br>
|
|
|
+ <div class="logo1"> </div>
|
|
|
+ <table class="table table-bordered">
|
|
|
+ <thead class="crm_tcab">
|
|
|
+ <tr class="active">
|
|
|
+ <th class="text-center">Referencia</th>
|
|
|
+ <th class="text-center">Fecha</th>
|
|
|
+ <th class="text-center">R.U.C.</th>
|
|
|
+ <th class="text-center">Cliente/Proveedor</th>
|
|
|
+ <th class="text-center">Monto c/ IVA</th>
|
|
|
+ <th class="text-center">M.Pagado</th>
|
|
|
+ <th class="text-center">Saldo</th>
|
|
|
+ <th class="text-center">Moneda</th>
|
|
|
+ <th class="text-center">Empresa</th>
|
|
|
+ <th class="text-center">Vendedor</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <t t-foreach="docs" t-as="o">
|
|
|
+ <tbody>
|
|
|
+ <tr>
|
|
|
+ <td><span t-esc="o.number"/></td>
|
|
|
+ <td><span t-field="o.date_invoice"/></td>
|
|
|
+ <td><span t-esc="o.partner_id.ruc"/></td>
|
|
|
+ <td><span t-esc="o.partner_id.name"/></td>
|
|
|
+ <td class="text-right">
|
|
|
+ <span t-field="o.amount_total"/>
|
|
|
+ </td>
|
|
|
+ <td class="text-right">
|
|
|
+ <span t-esc="o.amount_total-o.residual"/>
|
|
|
+ </td>
|
|
|
+ <td class="text-right">
|
|
|
+ <span t-field="o.residual"/>
|
|
|
+ </td>
|
|
|
+ <td><span t-field="o.currency_id.name"/></td>
|
|
|
+ <td><span t-field="o.company_id.name"/></td>
|
|
|
+ <td><span t-field="o.user_id.name"/></td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </t>
|
|
|
+ <tr>
|
|
|
+ <td colspan="10"></td>
|
|
|
+ </tr>
|
|
|
+ <tr class="border-black">
|
|
|
+ <td colspan="4">Total:</td>
|
|
|
+ <td class="text-right">
|
|
|
+ <t t-set="total" t-value="sum([x.amount_total for x in docs])"/>
|
|
|
+ <span t-esc="total"/>
|
|
|
+ </td>
|
|
|
+ <td class="text-right">
|
|
|
+ <t t-set="total2" t-value="sum([x.amount_total-x.residual for x in docs])"/>
|
|
|
+ <span t-esc="total2"/>
|
|
|
+ </td>
|
|
|
+ <td class="text-right">
|
|
|
+ <t t-set="total3" t-value="sum([x.residual for x in docs])"/>
|
|
|
+ <span t-esc="total3"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </t>
|
|
|
+ </t>
|
|
|
+</template>
|
|
|
+</data>
|
|
|
+</openerp>
|