template_rep_enviar_orden.xml
3.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<template id="hgt_compras.hgt_compra_orden">
<t t-call="web.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="web.basic_layout">
<div class="page">
<table class="table table-condensed" style="width: 820px; border-collapse: collapse;" border="0" cellpadding="0" cellspacing="0" padding="0" margin="0" >
<thead>
<tr>
<th colspan='6' style="font-size:30px; border: 2px solid black; height: 100px; text-align:center; vertical-align: middle;" ><strong>Orden de compra</strong></th>
</tr>
<t t-set="estilo_cabecera" t-value="'vertical-align: middle; font-size:20px; border: 2px solid black; height: 50px; text-align: left; padding:5px;'" />
<t t-set="estilo_celda" t-value="'vertical-align: middle; font-size:20px; border:2px solid black; height: 50px; text-align: left; padding:5px;'" />
<tr>
<td colspan='1' t-att-style="estilo_cabecera" ><strong>Solicitante</strong></td>
<td colspan='2' t-att-style="estilo_celda" ><span t-field="o.cor_comprador"></span></td>
<td colspan='1' t-att-style="estilo_cabecera" ><strong>Proovedor</strong></td>
<td colspan='2' t-att-style="estilo_celda" ><span t-field="o.cor_proovedorp"></span></td>
</tr>
<tr>
<td colspan='6' style="font-size:20px; border: 2px solid black; height: 50px; text-align:center; vertical-align: middle;" ><strong>Productos</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td t-att-style="estilo_cabecera" ><strong>Código</strong></td>
<td t-att-style="estilo_cabecera" ><strong>Producto</strong></td>
<td t-att-style="estilo_cabecera" ><strong>Cantidad</strong></td>
<td t-att-style="estilo_cabecera" ><strong>Fecha aprobación</strong></td>
<td t-att-style="estilo_cabecera" ><strong>Código del Producto Proovedor</strong></td>
</tr>
<t t-foreach="o.cor_linea_solicitud" t-as="ee">
<tr>
<td t-att-style="estilo_celda"> <span t-field="ee.name"/> </td>
<td t-att-style="estilo_celda"> <span t-field="ee.csl_descripcion"/> </td>
<td t-att-style="estilo_celda"> <span t-field="ee.csl_cantidad"/> </td>
<td t-att-style="estilo_celda"> <span t-field="ee.csl_fecha_creacion"/> </td>
<td t-att-style="estilo_celda"> <span t-field="ee.csl_producto"/> </td>
</tr>
</t>
</tbody>
</table>
</div>
</t>
</t>
</t>
</template>
</odoo>