template_rep_solicitud_presup.xml 4.09 KB
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
    <template id="hgt_compra_solicitudpresupuesto">
        <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: 720px; 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>Solicitud de Presupuesto</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.csp_solicitante"></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.csp_proovedorp"></span></td>
                                </tr> 
                                <tr style="font-size:20px; border: 2px solid black; height: 80px; text-align:center; vertical-align: middle;" >
                                    <td colspan='6' t-att-style="estilo_celda" ><span></span><strong>Notas:</strong><span t-field="o.csp_notas"></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>Estado solicitud</strong></td>
                                        <td t-att-style="estilo_cabecera" ><strong>Solicitante</strong></td>
                                        <td t-att-style="estilo_cabecera" ><strong>Aprobó</strong></td>
                                        <td t-att-style="estilo_cabecera" ><strong>Fecha aprobación</strong></td>
                                    </tr>                                  
                                <t t-foreach="o.csp_solicitudlinea" 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_estados"/> </td>
                                        <td t-att-style="estilo_celda"> <span t-field="ee.csl_solicitante"/> </td>
                                        <td t-att-style="estilo_celda"> <span t-field="ee.csl_aprobador"/> </td>
                                        <td t-att-style="estilo_celda"> <span t-field="ee.csl_fecha_creacion"/> </td>
                                    </tr> 
                                </t>  
                            </tbody>
                        </table>
                    </div>
                </t>
            </t>
        </t>
    </template>

</odoo>