2026-08-30 00:48:25 -04:00

68 lines
3.0 KiB
XML

<odoo>
<record id="view_mcs_operating_dashboard_form" model="ir.ui.view">
<field name="name">mcs.operating.dashboard.form</field>
<field name="model">mcs.operating.dashboard</field>
<field name="arch" type="xml">
<form create="0" edit="0" delete="0">
<header>
<button name="action_refresh" type="object" string="Refresh" class="btn-primary"/>
</header>
<sheet>
<group>
<field name="name"/>
</group>
<group>
<field name="month_start"/>
<field name="month_end"/>
<field name="currency_id" invisible="1"/>
</group>
<group string="Revenue">
<group>
<field name="monthly_revenue_target"/>
<field name="revenue_closed_month"/>
<field name="monthly_cash_gap"/>
<field name="new_mrr_won"/>
<field name="pipeline_value"/>
<field name="weighted_pipeline"/>
</group>
<group>
<field name="proposals_outstanding"/>
<field name="deals_expected_month"/>
<field name="cash_collected"/>
<field name="invoices_overdue"/>
<field name="active_clients"/>
<field name="conversion_rate"/>
</group>
</group>
<group string="Execution">
<group>
<field name="followups_due_today"/>
<field name="projects_at_risk"/>
<field name="blockers"/>
<field name="overdue_tasks"/>
</group>
<group>
<field name="team_capacity_hours"/>
<field name="planned_hours"/>
<field name="actual_hours"/>
<field name="billable_hours"/>
<field name="non_billable_hours"/>
<field name="utilization"/>
</group>
</group>
</sheet>
</form>
</field>
</record>
<record id="action_mcs_operating_dashboard" model="ir.actions.act_window">
<field name="name">CEO Dashboard</field>
<field name="res_model">mcs.operating.dashboard</field>
<field name="view_mode">form</field>
<field name="view_id" ref="view_mcs_operating_dashboard_form"/>
<field name="res_id" ref="mcs_operating_system.dashboard_ceo"/>
<field name="target">current</field>
<field name="context">{'create': False}</field>
</record>
</odoo>