Files
Odoo-18.0-20251222/database_cleanup/views/purge_wizard.xml
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

56 lines
2.0 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="form_purge_wizard" model="ir.ui.view">
<field name="model">cleanup.purge.wizard</field>
<field name="arch" type="xml">
<form>
<header>
<button
type="object"
name="purge_all"
string="Purge all"
class="oe_highlight"
/>
<button type="object" name="select_lines" string="Select lines" />
</header>
<div invisible="purge_line_ids">
Nothing found to clean up.
</div>
<field name="purge_line_ids" invisible="not purge_line_ids">
<form>
<group>
<field name="name" />
<field name="purged" />
</group>
<footer>
<button
type="object"
name="purge"
class="oe_highlight"
string="Purge"
invisible="purged"
/>
</footer>
</form>
</field>
</form>
</field>
</record>
<record id="tree_purge_line" model="ir.ui.view">
<field name="model">cleanup.purge.line</field>
<field name="arch" type="xml">
<list delete="false" create="false">
<field name="name" />
<field name="purged" />
<button
type="object"
name="purge"
icon="fa-times-circle text-danger"
string="Purge this model"
invisible="purged"
/>
</list>
</field>
</record>
</odoo>