odoo_account_ebics/account_ebics/wizards/ebics_change_passphrase.xml

45 lines
1.5 KiB
XML
Raw Normal View History

2022-05-10 19:40:54 +00:00
<?xml version="1.0" encoding="utf-8" ?>
2018-08-14 15:04:39 +00:00
<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>
2022-05-10 19:40:54 +00:00
<field name="old_pass" password="True" />
<field name="new_pass" password="True" />
<field name="new_pass_check" password="True" />
2018-08-14 15:04:39 +00:00
</group>
<footer>
2022-05-10 19:40:54 +00:00
<button
name="change_passphrase"
string="Change Passphrase"
type="object"
class="oe_highlight"
/>
2018-08-14 15:04:39 +00:00
or
2022-05-10 19:40:54 +00:00
<button string="Cancel" class="oe_link" special="cancel" />
2018-08-14 15:04:39 +00:00
</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 :" />
2022-05-10 19:40:54 +00:00
<field name="note" colspan="4" nolabel="1" width="850" height="400" />
2018-08-14 15:04:39 +00:00
<footer>
2022-05-10 19:40:54 +00:00
<button name="button_close" type="object" string="Close" />
2018-08-14 15:04:39 +00:00
</footer>
</form>
</field>
</record>
</odoo>