32 lines
1.7 KiB
XML
32 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Add License section to General Settings -->
|
|
<record id="res_config_settings_view_form_license" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.license</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="base.res_config_settings_view_form"/>
|
|
<field name="priority">100</field>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//form" position="inside">
|
|
<app data-string="Licenses" string="Licenses" name="havari_license_client" groups="base.group_system">
|
|
<block title="Licensed Modules" name="license_block">
|
|
<setting string="Module Licenses" help="View and manage licenses for installed modules">
|
|
<div class="content-group">
|
|
<div class="mt16">
|
|
<field name="license_products_summary" readonly="1" nolabel="1"/>
|
|
</div>
|
|
<div class="mt16">
|
|
<button name="action_check_all_licenses" type="object"
|
|
string="Check All Licenses" class="btn-secondary" icon="fa-refresh"/>
|
|
<button name="action_view_licenses" type="object"
|
|
string="View All Licenses" class="btn-link" icon="fa-list"/>
|
|
</div>
|
|
</div>
|
|
</setting>
|
|
</block>
|
|
</app>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|