Tower: upload cetmix_tower_server 16.0.2.2.9 (via marketplace)

This commit is contained in:
2026-04-27 08:44:10 +00:00
parent 9170934142
commit 764642fbf1

View File

@@ -0,0 +1,386 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="cx_tower_server_template_view_kanban" model="ir.ui.view">
<field name="name">cx.tower.server.template.view.kanban</field>
<field name="model">cx.tower.server.template</field>
<field name="arch" type="xml">
<kanban class="oe_background_grey o_kanban_dashboard" records_draggable="0">
<field name="name" />
<field name="reference" />
<field name="tag_ids" />
<field name="os_id" />
<field name="color" />
<field name="server_count" />
<templates>
<t t-name="kanban-box">
<div
t-attf-class="#{!selection_mode ? kanban_color(record.color.raw_value) : ''} oe_kanban_global_click"
>
<div t-attf-class="o_kanban_card_header">
<div
class="o_kanban_card_header_title d-flex justify-content-between mr-4"
>
<div class="o_primary">
<field name="name" />
</div>
</div>
<div class="o_kanban_manage_button_section">
<a class="o_kanban_manage_toggle_button" href="#"><i
class="fa fa-ellipsis-v"
aria-label="Selection"
role="img"
title="Selection"
/></a>
</div>
</div>
<div
class="container o_kanban_card_manage_pane dropdown-menu"
role="menu"
>
<div class="row">
<div class="col-8">
<div>
<a
role="menuitem"
type="object"
name="action_create_server"
>Create Server</a>
</div>
</div>
</div>
<div class="o_kanban_card_manage_settings row">
<ul class="oe_kanban_colorpicker" data-field="color" />
</div>
</div>
<div class="oe_kanban_content">
<div class="oe_kanban_global_click">
<div class="col-12 pt8 o_kanban_primary_right">
<t t-if="record.server_count.value &gt; 0">
<div>
<strong>Servers:</strong>
<span>
<t t-esc="record.server_count.value" />
</span>
</div>
</t>
<t t-if="record.os_id.raw_value">
<div>
<strong>Operating System:</strong>
<field name="os_id" />
</div>
</t>
</div>
</div>
<div class="o_kanban_record_bottom">
<div class="oe_kanban_bottom_left">
</div>
<div class="oe_kanban_bottom_right">
<t t-if="record.tag_ids.raw_value">
<div>
<field
name="tag_ids"
widget="many2many_tags"
/>
</div>
</t>
</div>
</div>
</div>
</div>
</t>
</templates>
</kanban>
</field>
</record>
<record id="cx_tower_server_template_view_tree" model="ir.ui.view">
<field name="name">cx.tower.server.template.view.tree</field>
<field name="model">cx.tower.server.template</field>
<field name="arch" type="xml">
<tree>
<field name="name" />
<field name="reference" optional="show" />
<field
name="tag_ids"
widget="many2many_tags"
options="{'color_field': 'color'}"
optional="show"
/>
<field name="color" widget="color_picker" optional="show" />
</tree>
</field>
</record>
<record id="cx_tower_server_template_view_form" model="ir.ui.view">
<field name="name">cx.tower.server.template.view.form</field>
<field name="model">cx.tower.server.template</field>
<field name="arch" type="xml">
<form>
<header>
<button
name="action_create_server"
type="object"
class="oe_highlight"
string="Create Server"
/>
</header>
<sheet>
<div class="oe_button_box" name="button_box">
<button
name="action_open_servers"
type="object"
class="oe_stat_button"
icon="fa-server"
>
<field
name="server_count"
widget="statinfo"
string="Servers"
/>
</button>
</div>
<widget
name="web_ribbon"
title="Archived"
bg_color="bg-danger"
attrs="{'invisible': [('active', '=', True)]}"
/>
<div class="oe_title">
<field name="color" widget="color_picker" />
<h1 class="d-flex flex-grow justify-content-between">
<field name="name" placeholder="Name" />
</h1>
<field
name="tag_ids"
widget="many2many_tags"
placeholder="Tags"
options="{'color_field': 'color'}"
/>
</div>
<group>
<field
name="reference"
placeholder="Reference. Can contain English letters, digits and '_'. Leave blank to autogenerate"
/>
</group>
<notebook>
<page name="General" string="General Settings">
<group name="root">
<group name="main">
<field name="flight_plan_id" />
<field name="plan_delete_id" />
<field name="os_id" />
<field name="active" invisible='1' />
</group>
<group name="ssh">
<field name="ssh_auth_mode" />
<field name="ssh_port" />
<field name="ssh_username" />
<field name="use_sudo" placeholder="No/Undefined" />
<field name="ssh_password" password="True" />
<field
name="ssh_key_id"
context="{'default_key_type': 'k', 'secrets_only': True}"
/>
</group>
<field name="note" placeholder="Put your notes here" />
</group>
</page>
<page name="variables" string="Configuration">
<field name="variable_value_ids" order="variable_reference">
<tree editable="bottom">
<field name="sequence" widget="handle" />
<field name="variable_reference" invisible="1" />
<field name="variable_id" />
<field name="variable_type" invisible="1" />
<field
name="value_char"
widget="ace_tower"
attrs="{'readonly': [('variable_type', '=', 'o')]}"
/>
<field
name="option_id"
options="{'no_create': True, 'no_create_edit': True}"
attrs="{'readonly': [('variable_type', '=', 's')]}"
/>
<field name="access_level" optional="show" />
<field name="required" />
</tree>
<form>
<group>
<field name="variable_id" />
<field
name="variable_reference"
widget="CopyClipboardChar"
options="{'string': 'Copy reference'}"
/>
<field
name="value_char"
widget="CopyClipboardChar"
options="{'string': 'Copy value'}"
/>
<field name="access_level" />
<field name="required" />
</group>
<field
name="note"
placeholder="Put your notes here..."
/>
</form>
</field>
</page>
<page
name="access"
string="Access"
groups="cetmix_tower_server.group_manager"
>
<group name="access">
<field
name="user_ids"
widget="many2many_tags"
placeholder="users who can access this template"
options="{'no_create': True}"
/>
<field
name="manager_ids"
widget="many2many_tags"
placeholder="managers who can modify this template"
options="{'no_create': True}"
/>
</group>
</page>
<page name="logs" string="Server Logs">
<field name="server_log_ids">
<tree>
<field name="name" />
</tree>
<form>
<sheet>
<div class="oe_title">
<h1
class="d-flex flex-grow justify-content-between"
>
<field name="name" />
</h1>
</div>
<group>
<field
name="server_template_id"
invisible="1"
/>
<field name="access_level" />
<field name="log_type" />
<field
name="command_id"
domain="[('server_ids', '=', False)]"
attrs="{'required':[('log_type', '=', 'command')], 'invisible':[('log_type', '!=', 'command')]}"
/>
<field
name="use_sudo"
attrs="{'invisible':[('log_type', '!=', 'command')]}"
/>
<field
name="file_template_id"
attrs="{'required':[('log_type', '=', 'file')], 'invisible':[('log_type', '!=', 'file')]}"
/>
</group>
</sheet>
</form>
</field>
</page>
<page name="shortcuts" string="Shortcuts">
<field name="shortcut_ids">
<tree create="0" edit="0">
<field name="sequence" widget="handle" />
<field name="name" />
<field name="action" optional="hide" />
</tree>
<form>
<group>
<field name="name" />
<field name="action" />
</group>
</form>
</field>
</page>
<page name="scheduled_tasks" string="Scheduled Tasks">
<field name="scheduled_task_ids">
<tree create="0" edit="0">
<field name="sequence" widget="handle" />
<field name="name" />
<field name="action" optional="hide" />
</tree>
<form>
<group>
<field name="name" />
<field name="action" />
</group>
</form>
</field>
</page>
</notebook>
</sheet>
<div class="oe_chatter">
<field name="message_follower_ids" />
<field name="activity_ids" />
<field name="message_ids" />
</div>
</form>
</field>
</record>
<record id="cx_tower_server_template_search_view" model="ir.ui.view">
<field name="name">cx.tower.server.template.view.search</field>
<field name="model">cx.tower.server.template</field>
<field name="arch" type="xml">
<search string="Search Server Templates">
<field
name="name"
string="Name/Reference"
filter_domain="['|', ('name', 'ilike', self), ('reference', 'ilike', self)]"
/>
<field name="user_ids" />
<field name="manager_ids" />
<filter
string="Archived"
name="archived"
domain="[('active', '=', False)]"
/>
<group expand="0" string="Group By">
<filter
string="OS"
name="group_by_os"
domain="[]"
context="{'group_by': 'os_id'}"
/><filter
string="Users"
name="group_by_user_ids"
domain="[]"
context="{'group_by': 'user_ids'}"
/>
<filter
string="Managers"
name="group_by_manager_ids"
domain="[]"
context="{'group_by': 'manager_ids'}"
/>
</group>
<searchpanel>
<field name="tag_ids" string="Tags" icon="fa-tags" select="multi" />
<field name="os_id" string="OS" icon="fa-server" />
</searchpanel>
</search>
</field>
</record>
<record id="action_cx_tower_server_template" model="ir.actions.act_window">
<field name="name">Server Templates</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">cx.tower.server.template</field>
<field name="view_mode">kanban,tree,form</field>
<field name="search_view_id" ref="cx_tower_server_template_search_view" />
</record>
</odoo>