Odoo18-Base/addons/resource/views/resource_calendar_views.xml
2025-01-06 10:57:38 +07:00

107 lines
5.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="view_resource_calendar_search" model="ir.ui.view">
<field name="name">resource.calendar.search</field>
<field name="model">resource.calendar</field>
<field name="arch" type="xml">
<search string="Search Working Time">
<field name="name" string="Working Time"/>
<field name="company_id" groups="base.group_multi_company"/>
<separator/>
<filter string="Archived" name="inactive" domain="[('active', '=', False)]"/>
</search>
</field>
</record>
<record id="resource_calendar_form" model="ir.ui.view">
<field name="name">resource.calendar.form</field>
<field name="model">resource.calendar</field>
<field name="arch" type="xml">
<form string="Working Time">
<field name="two_weeks_calendar" invisible="1"/>
<header>
<button name="switch_calendar_type" invisible="two_weeks_calendar or flexible_hours" string="Switch to 2 weeks calendar" type="object"
confirm="Are you sure you want to switch to a 2-week calendar? All work entries will be lost."
confirm-label="Switch"/>
<button name="switch_calendar_type" invisible="not two_weeks_calendar" string="Switch to 1 week calendar" type="object"
confirm="Are you sure you want to switch to a 1-week calendar? All work entries will be lost."
confirm-label="Switch"/>
</header>
<sheet string="Working Time">
<widget name="web_ribbon" title="Archived" bg_color="text-bg-danger" invisible="active"/>
<div class="oe_button_box" name="button_box">
<button name="%(resource_calendar_leaves_action_from_calendar)d" type="action"
icon="fa-plane"
class="oe_stat_button"
groups="base.group_no_one">
<div class="o_field_widget o_stat_info">
<span class="o_stat_text">Time Off</span>
</div>
</button>
<button name="%(resource_resource_action_from_calendar)d" type="action"
icon="fa-cogs"
class="oe_stat_button"
groups="base.group_user">
<div class="o_field_widget o_stat_info">
<span class="o_stat_text">Work Resources</span>
</div>
</button>
</div>
<div class="oe_title">
<h1><field name="name"/></h1>
</div>
<group name="resource_details" col="2">
<group name="resource_working_hours">
<field name="flexible_hours"/>
<label for="full_time_required_hours" invisible="flexible_hours"/>
<label for="full_time_required_hours" string="Hours per Week" invisible="not flexible_hours"/>
<div>
<field name="full_time_required_hours" style="width: 10%" widget="float_time"/>
<span> hours/week</span>
</div>
<field name="hours_per_day" widget="float_time" readonly="not flexible_hours"/>
</group>
<group name="resource_company">
<field name="active" invisible="1"/>
<field name="company_id" groups="base.group_multi_company"/>
<field name="tz" widget="timezone_mismatch" options="{'tz_offset_field': 'tz_offset', 'mismatch_title': 'Timezone Mismatch : This timezone is different from that of your browser.\nPlease, be mindful of this when setting the working hours or the time off.'}" />
<field name="tz_offset" invisible="1"/>
</group>
</group>
<notebook>
<page string="Working Hours" name="working_hours" invisible="flexible_hours">
<field name="two_weeks_explanation" invisible="not two_weeks_calendar"/>
<field name="attendance_ids" widget="section_one2many"/>
</page>
</notebook>
</sheet>
</form>
</field>
</record>
<record id="view_resource_calendar_tree" model="ir.ui.view">
<field name="name">resource.calendar.list</field>
<field name="model">resource.calendar</field>
<field name="arch" type="xml">
<list string="Working Time">
<field name="name" string="Working Time"/>
<field name="company_id" groups="base.group_multi_company"/>
</list>
</field>
</record>
<record id="action_resource_calendar_form" model="ir.actions.act_window">
<field name="name">Working Schedules</field>
<field name="res_model">resource.calendar</field>
<field name="view_mode">list,form</field>
<field name="domain">['|', ('company_id', '=', False), ('company_id', 'in', allowed_company_ids)]</field>
<field name="view_id" eval="False"/>
<field name="search_view_id" ref="view_resource_calendar_search"/>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Define working hours and time table that could be scheduled to your project members
</p>
</field>
</record>
</odoo>