|
@@ -0,0 +1,85 @@
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
+<openerp>
|
|
|
|
+<data>
|
|
|
|
+ <report
|
|
|
|
+ string="Listado de Abastecimiento"
|
|
|
|
+ id="report_procurement_id"
|
|
|
|
+ model="procurement.order"
|
|
|
|
+ report_type="qweb-pdf"
|
|
|
|
+ name="informes_procurement_order.report_procurement1"
|
|
|
|
+ file="informes_procurement_order.report_procurement1"
|
|
|
|
+ />
|
|
|
|
+ <template id="report_procurement1">
|
|
|
|
+ <t t-call="report.html_container">
|
|
|
|
+ <t t-call="report.external_layout">
|
|
|
|
+ <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;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .logo1{
|
|
|
|
+ width: 100%;
|
|
|
|
+ top: 1.5cm;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .taxtotal{
|
|
|
|
+ font-size: 2.8mm;
|
|
|
|
+ }
|
|
|
|
+ .total{
|
|
|
|
+ font-size: 2.8mm;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </style>
|
|
|
|
+ <h4 class="text-center">Listado de Abastecimiento</h4>
|
|
|
|
+ <div class="logo1"> </div>
|
|
|
|
+ <table class="table table-condensed">
|
|
|
|
+ <thead class="crm_tcab">
|
|
|
|
+ <tr class="active">
|
|
|
|
+ <th class="text-left">Fecha Planificada</th>
|
|
|
|
+ <th class="text-left">Ubic.Abastecimiento</th>
|
|
|
|
+ <th class="text-left">Doc. Origen</th>
|
|
|
|
+ <th class="text-left">Producto</th>
|
|
|
|
+ <th class="text-left">Cantidad</th>
|
|
|
|
+ <th class="text-left">Estado</th>
|
|
|
|
+ </tr>
|
|
|
|
+ </thead>
|
|
|
|
+ <t t-foreach="docs" t-as="o">
|
|
|
|
+ <tbody class="veh_tbody">
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.date_planned"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.location_id"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.origin"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.product_id"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.product_qty"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.state"/>
|
|
|
|
+ </td>
|
|
|
|
+ </tbody>
|
|
|
|
+ </t>
|
|
|
|
+ </table>
|
|
|
|
+ </div>
|
|
|
|
+ </t>
|
|
|
|
+ </t>
|
|
|
|
+ </template>
|
|
|
|
+</data>
|
|
|
|
+</openerp>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|