Files
account-financial-tools/account_permanent_lock_move/wizard/permanent_lock_date_wizard.xml
2019-02-27 21:41:56 +01:00

22 lines
1.0 KiB
XML

<odoo>
<record id="permanent_lock_date_wizard_form" model="ir.ui.view">
<field name="name">permanent.lock.date.wizard.form</field>
<field name="model">permanent.lock.date.wizard</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Lock permanently entries">
<label string="All journal entries prior to and included at the new lock date will be permanently locked."/>
<group>
<field name="company_id" groups="base.group_multi_company"/>
<field name="current_lock_date"/>
<field name="lock_date" required="1"/>
</group>
<footer>
<button string="Lock Journal Entries" name="confirm_date" type="object" default_focus="1" class="btn-primary"/>
<button string="Cancel" class="btn-default" special="cancel"/>
</footer>
</form>
</field>
</record>
</odoo>