You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

32 lines
1.3 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!--Wizard view for wallet recharge-->
<record id="recharge_wallet_view_form" model="ir.ui.view">
<field name="name">recharge.wallet.view.form</field>
<field name="model">recharge.wallet</field>
<field name="arch" type="xml">
<form string="wizard_view">
<group>
<group>
<field name="journal_id"/>
<field name="recharge_amount"/>
</group>
</group>
<footer>
<button name="action_submit" string="SUBMIT" type="object"
class="oe_highlight"/>
<button string="CANCEL" class="btn-secondary"
special="cancel"/>
</footer>
</form>
</field>
</record>
<record id="recharge_wallet_action" model="ir.actions.act_window">
<field name="name">Wallet Recharge</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">recharge.wallet</field>
<field name="view_mode">form</field>
<field name="view_id" ref="recharge_wallet_view_form"/>
<field name="target">new</field>
</record>
</odoo>