mirror of
https://github.com/brain-tec/account_ebics.git
synced 2024-11-22 20:22:03 +00:00
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="ebics_change_passphrase_view_form" model="ir.ui.view">
|
|
<field name="name">EBICS Keys Change Passphrase</field>
|
|
<field name="model">ebics.change.passphrase</field>
|
|
<field name="priority">1</field>
|
|
<field name="arch" type="xml">
|
|
<form string="EBICS Keys Change Passphrase">
|
|
<group>
|
|
<field name="old_pass" password="True"/>
|
|
<field name="new_pass" password="True"/>
|
|
<field name="new_pass_check" password="True"/>
|
|
</group>
|
|
<footer>
|
|
<button name="change_passphrase" string="Change Passphrase" type="object" class="oe_highlight"/>
|
|
or
|
|
<button string="Cancel" class="oe_link" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="ebics_change_passphrase_view_form_result" model="ir.ui.view">
|
|
<field name="name">EBICS Keys Change Passphrase</field>
|
|
<field name="model">ebics.change.passphrase</field>
|
|
<field name="priority">2</field>
|
|
<field name="arch" type="xml">
|
|
<form string="EBICS Keys Change Passphrase">
|
|
<separator colspan="4" string="Results :" />
|
|
<field name="note" colspan="4" nolabel="1" width="850" height="400"/>
|
|
<footer>
|
|
<button name="button_close" type="object" string="Close"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|