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.
29 lines
1.2 KiB
29 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Res partner form view-->
|
|
<record id="view_partner_form" model="ir.ui.view">
|
|
<field name="name">
|
|
res.partner.view.form.inherit.pos.customer.wallet.management
|
|
</field>
|
|
<field name="model">res.partner</field>
|
|
<field name="inherit_id" ref="base.view_partner_form"/>
|
|
<field name="arch" type="xml">
|
|
<div name="button_box" position="inside">
|
|
<button class="oe_stat_button" type="object"
|
|
name="action_number_of_wallet">
|
|
<field string="Wallet" name="wallet_count"
|
|
widget="statinfo"/>
|
|
</button>
|
|
</div>
|
|
<xpath expr="//group[@name='misc']" position="before">
|
|
<group string="Wallet Balance" name="wallet balance">
|
|
<field name="wallet_balance" readonly="True"/>
|
|
<div>
|
|
<button name="action_recharge" string="Wallet Recharge"
|
|
type="object" class="btn btn-secondary"/>
|
|
</div>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|