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.
26 lines
1.1 KiB
26 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!--This is for creating a smart tab inside contacts-->
|
|
<record id="res_partner_view_form" model="ir.ui.view">
|
|
<field name="name">
|
|
res.partner.view.inherit.form.certificate_license_expiry
|
|
</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="certificate-stat-button" type="object"
|
|
name="show_certificates"
|
|
icon="fa-copy">
|
|
<field string="Certificates" name="certificate_count"
|
|
widget="statinfo"/>
|
|
</button>
|
|
<button class="certificate-stat-button" type="object" name="show_license"
|
|
icon="fa-copy">
|
|
<field string="License" name="license_count"
|
|
widget="statinfo"/>
|
|
</button>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|