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.
InstallScript_Odoo/base/report/ir_module_report_templates.xml

69 lines
3.4 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<template id="report_irmodulereference">
<t t-call="web.html_container">
<t t-foreach="docs" t-as="o">
<t t-call="web.internal_layout">
<div class="page">
<h3 class="text-center">Introspection report on objects</h3>
<table class="table table-bordered mt32">
<thead>
<tr>
<th class="text-center"><span>Module</span></th>
<th class="text-center"><span>Name</span></th>
<th class="text-center"><span>Version</span></th>
<th class="text-center"><span>Directory</span></th>
<th class="text-center"><span>Web</span></th>
</tr>
</thead>
<tbody>
<tr class="text-center">
<td><span t-field="o.name"/></td>
<td><span t-field="o.shortdesc"/></td>
<td><span t-field="o.latest_version"/></td>
<td><span t-field="o.name"/></td>
<td><span t-field="o.website"/></td>
</tr>
</tbody>
</table>
<span t-field="o.description"/>
<div>
<strong>Reports:</strong>
</div>
<span t-field="o.reports_by_module"/>
<div>
<strong>Menu:</strong>
</div>
<span t-field="o.menus_by_module"/>
<div>
<strong>View:</strong>
</div>
<span t-field="o.views_by_module"/>
<div>
<strong>Dependencies:</strong>
</div>
<div t-foreach="o.dependencies_id" t-as="dependency_id">
<span t-field="dependency_id.name"/> - <span t-field="dependency_id.module_id.state"/>
</div>
<table t-foreach="findobj(o)" t-as="obj" class="table table-sm mt16 mb32">
<tr>
<th colspan="2"><span>Object:</span> <span t-esc="obj.model"/></th>
</tr>
<tr t-foreach="findfields(obj.model, o)" t-as="field">
<td class="col-3"><t t-esc="field[0]"/></td>
<td>
<span t-esc="field[1].get('string','Unknown')"/><span>, </span><span t-esc="field[1].get('type')"/><span t-if="field[1].get('required')">, required</span><span t-if="field[1].get('readonly',False)">, readonly</span>
<div t-esc="field[1].get('help', '')"/>
</td>
</tr>
</table>
</div>
</t>
</t>
</t>
</template>
</data>
</odoo>