Files
account-tools/account_advanced_protection_features/views/account_journal_views.xml
Quentin Mondot 562d6d009b
Some checks failed
pre-commit / pre-commit (pull_request) Failing after 1m25s
[IMP] migrate from version 16 to version 18
2025-10-07 16:48:25 +02:00

27 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_account_journal_form_inherit_prevent_reset_to_draft" model="ir.ui.view">
<field name="name">account.journal.form</field>
<field name="model">account.journal</field>
<field name="inherit_id" ref="account.view_account_journal_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='restrict_mode_hash_table']" position="after">
<field
name="prevent_deletion_of_posted_account_move"
groups="account_advanced_protection_features.group_account_protection_manager"
/>
<field
name="prevent_reset_to_draft_sent_invoice"
groups="account_advanced_protection_features.group_account_protection_manager"
invisible="type != 'sale'"
/>
<field
name="allow_bank_statement_deletion"
groups="account_advanced_protection_features.group_account_protection_manager"
invisible="type not in ['bank', 'cash']"
/>
</xpath>
</field>
</record>
</odoo>