90 lines
3.2 KiB
XML
90 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
|
|
<record id="view_upgrade_install_wizard_form" model="ir.ui.view">
|
|
<field name="model">upgrade.install.wizard</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<header>
|
|
<field name="state" widget="statusbar" />
|
|
</header>
|
|
<group states="draft">
|
|
<p
|
|
class="alert alert-warning"
|
|
role="alert"
|
|
>This will install the selected modules on the database. Do not continue if you use this database in production.</p>
|
|
</group>
|
|
<group states="done">
|
|
<p
|
|
class="alert alert-info"
|
|
role="alert"
|
|
>The modules have been installed successfuly</p>
|
|
</group>
|
|
<group col="4" states="draft">
|
|
<button
|
|
name="select_installable_modules"
|
|
type="object"
|
|
string="All Modules"
|
|
/>
|
|
<button
|
|
name="select_odoo_modules"
|
|
type="object"
|
|
string="All Odoo SA Modules"
|
|
class="btn-primary"
|
|
/>
|
|
<button
|
|
name="select_oca_modules"
|
|
type="object"
|
|
string="All OCA Modules"
|
|
/>
|
|
<button
|
|
name="select_other_modules"
|
|
type="object"
|
|
string="All Other Modules"
|
|
/>
|
|
</group>
|
|
<group states="draft">
|
|
<field name="module_qty" />
|
|
<field
|
|
name="module_ids"
|
|
widget="many2many_tags"
|
|
options="{'no_create': True}"
|
|
/>
|
|
<button
|
|
name="unselect_modules"
|
|
type="object"
|
|
string="Clear the list"
|
|
/>
|
|
</group>
|
|
<footer>
|
|
<button
|
|
name="install_modules"
|
|
type="object"
|
|
class="btn-primary"
|
|
string="Install Modules"
|
|
states="draft"
|
|
/>
|
|
<button special="cancel" string="Close" class="btn-default" />
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_upgrade_install_wizard" model="ir.actions.act_window">
|
|
<field name="name">Install Modules Wizard</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">upgrade.install.wizard</field>
|
|
<field name="view_mode">form,tree</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
|
|
<menuitem
|
|
name="Install Modules Wizard"
|
|
id="menu_upgrade_install"
|
|
parent="menu_upgrade"
|
|
action="action_upgrade_install_wizard"
|
|
sequence="14"
|
|
/>
|
|
|
|
</odoo>
|