1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?xml version="1.0" encoding="utf-8"?>
- <openerp>
- <data>
- <report
- string="Listado Stock Picking"
- id="report_picking_id"
- model="stock.picking"
- report_type="qweb-pdf"
- name="informes_stock_picking.report_picking1"
- file="informes_stock_picking.report_picking1"
- />
- <template id="report_picking1">
- <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;
- }
-
- </style>
- <h4 class="text-center">Listado Stock Picking</h4>
- <div class="logo1"> </div>
- <table class="table table-bordered">
- <thead class="crm_tcab">
- <tr class="active">
- <th class="text-center">Codigo Ref.</th>
- <th class="text-center">Ubic.Destino</th>
- <th class="text-center">Empresa</th>
- <th class="text-center">Fecha Creación</th>
- <th class="text-center">Doc. Origen</th>
- <th class="text-center">Fecha Prevista</th>
- <th class="text-center">Estado</th>
- </tr>
- </thead>
- <t t-foreach="docs" t-as="o">
- <tbody class="veh_tbody">
- <td class="text-left">
- <span t-field="o.name"/>
- </td>
- <td class="text-left">
- <span t-field="o.location_dest_id"/>
- </td>
- <td class="text-left">
- <span t-field="o.partner_id"/>
- </td>
- <td class="text-left">
- <span t-field="o.date"/>
- </td>
- <td class="text-left">
- <span t-field="o.origin"/>
- </td>
- <td class="text-left">
- <span t-field="o.min_date"/>
- </td>
- <td class="text-left">
- <span t-field="o.state"/>
- </td>
- </tbody>
- </t>
- </table>
- </div>
- </t>
- </t>
- </template>
- </data>
- </openerp>
-
-
|