|
@@ -0,0 +1,89 @@
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
+<openerp>
|
|
|
|
+<data>
|
|
|
|
+ <report
|
|
|
|
+ string="Listado de Movimiento de Stock"
|
|
|
|
+ id="report_move_id"
|
|
|
|
+ model="stock.move"
|
|
|
|
+ report_type="qweb-pdf"
|
|
|
|
+ name="informes_stock_move.report_move1"
|
|
|
|
+ file="informes_stock_move.report_move1"
|
|
|
|
+ />
|
|
|
|
+ <template id="report_move1">
|
|
|
|
+ <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;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .crm_tbody{
|
|
|
|
+ font-size: 2.8mm;
|
|
|
|
+ font-family: Arial, Helvetica, sans-serif;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .logo1{
|
|
|
|
+ width: 100%;
|
|
|
|
+ top: 1.5cm;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ </style>
|
|
|
|
+ <h2 class="text-center">Listado de Movimiento de Stock</h2>
|
|
|
|
+ <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">Doc.Origen</th>
|
|
|
|
+ <th class="text-center">Cód.Prod.</th>
|
|
|
|
+ <th class="text-center">Producto</th>
|
|
|
|
+ <th class="text-center">Albarán</th>
|
|
|
|
+ <th class="text-right">Cantidad</th>
|
|
|
|
+ <th class="text-center">Ubic.Origen</th>
|
|
|
|
+ <th class="text-center">Ubic.Destino</th>
|
|
|
|
+ <th class="text-center">Estado</th>
|
|
|
|
+ </tr>
|
|
|
|
+ </thead>
|
|
|
|
+ <t t-foreach="docs" t-as="o">
|
|
|
|
+ <tbody class="crm_tbody">
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.name"/>
|
|
|
|
+ </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_id.name"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.picking_type_id"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-right">
|
|
|
|
+ <span t-field="o.product_uom_qty"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.location_id"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.location_dest_id"/>
|
|
|
|
+ </td>
|
|
|
|
+ <td class="text-left">
|
|
|
|
+ <span t-field="o.state"/>
|
|
|
|
+ </td>
|
|
|
|
+ </tbody>
|
|
|
|
+ </t>
|
|
|
|
+ </table>
|
|
|
|
+ </div>
|
|
|
|
+ </t>
|
|
|
|
+ </t>
|
|
|
|
+ </template>
|
|
|
|
+</data>
|
|
|
|
+</openerp>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|