You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?xml version="1.0" encoding="utf-8"?> <!-- Copyright 2018 Eficent Business and IT Consulting Services S.L.
License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl-3.0) --> <openerp> <data>
<template id="report_partner"> <t t-call="report.html_container"> <t t-call="report.internal_layout"> <t t-call="report.external_layout"> <div class="page"> <div class="row"> <h4 style="padding-left:15em;padding-top:1em"> Partner Data </h4> <p> Date: <span t-esc="date"/><br/> Partner: <span t-field="partner.display_name"/> </p> <br/><br/> <t t-if="tables"> <t t-foreach="tables" t-as="models"> <t t-foreach="tables[models]" t-as="table"> <t t-if="tables[models][table]"> <table class="table table-condensed" style="border: 1px solid black; border-collapse: collapse;"> <thead> <tr> <th style="border-right: 1px solid black;"><span t-esc="table"/></th> </tr> <tr> <th style="border-right: 1px solid black;" t-foreach="tables[models][table][0]" t-as="head"> <span t-esc="head"/> </th> </tr> </thead> <tr t-foreach="tables[models][table]" t-as="row"> <td style="border-right: 1px solid black;" t-foreach="row" t-as="field"> <span t-esc="row[field]"/> </td> </tr> </table> </t> <br/> </t> </t> </t> <p t-if="not tables"> <strong>We have no data for this partner.</strong> </p> </div> </div> </t> </t> </t> </template>
<!--<template id="report_partner">--> <!--<t t-call="report.html_container">--> <!--<t t-call="gdpr_partner_report.report_partner"/>--> <!--</t>--> <!--</template>-->
</data> </openerp>
|