mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-20 22:51:59 +02:00
Initial commit: Technical packages
This commit is contained in:
commit
3473fa71a0
873 changed files with 297766 additions and 0 deletions
|
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<!-- Template rendered in route auth=None, for anonymous user. This allow them to see meeting details -->
|
||||
<template id="invitation_page_anonymous" name="Calendar Invitation Page for anonymous users">
|
||||
<t t-call="web.layout">
|
||||
<t t-set="head">
|
||||
<t t-call-assets="web.assets_frontend" t-js="false"/>
|
||||
</t>
|
||||
|
||||
<div class="container">
|
||||
<div class="o_logo">
|
||||
<img t-attf-src="/web/binary/company_logo?company={{ company.id }}" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h2>Calendar Invitation <small><t t-esc="event.name"/></small></h2>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="clearfix mb16" t-if="attendee.state != 'needsAction'">
|
||||
<span class="float-end badge text-bg-info">
|
||||
<t t-if="attendee.state == 'accepted'">Yes I'm going.</t>
|
||||
<t t-if="attendee.state == 'declined'">No I'm not going.</t>
|
||||
<t t-if="attendee.state == 'tentative'">Tentative</t>
|
||||
<t t-if="attendee.state == 'needsAction'">No feedback yet</t>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="table-responsive">
|
||||
<table class="o_event_table table table-striped">
|
||||
<tr>
|
||||
<th>Invitation for</th>
|
||||
<td><t t-esc="attendee.common_name"/> (<t t-esc="attendee.email"/>)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<td><t t-esc="event.display_time"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Location</th>
|
||||
<td><t t-esc="event.location or '-'"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Attendees</th>
|
||||
<td>
|
||||
<ul>
|
||||
<li t-foreach="event.attendee_ids" t-as="attendee" t-attf-class="o_#{attendee.state}">
|
||||
<t t-esc="attendee.common_name"/>
|
||||
</li>
|
||||
</ul>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Description</th>
|
||||
<td><t t-esc="event.description or '-'"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</template>
|
||||
</odoo>
|
||||
438
odoo-bringout-oca-ocb-calendar/calendar/views/calendar_views.xml
Normal file
438
odoo-bringout-oca-ocb-calendar/calendar/views/calendar_views.xml
Normal file
|
|
@ -0,0 +1,438 @@
|
|||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
|
||||
<!-- Calendar Events Types : Views and Actions -->
|
||||
<record id="view_calendar_event_type_tree" model="ir.ui.view">
|
||||
<field name="name">calendar.event.type</field>
|
||||
<field name="model">calendar.event.type</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Meeting Types" sample="1" editable="bottom">
|
||||
<field name="name"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_calendar_event_type" model="ir.actions.act_window">
|
||||
<field name="name">Meeting Types</field>
|
||||
<field name="res_model">calendar.event.type</field>
|
||||
<field name="view_id" ref="view_calendar_event_type_tree"/>
|
||||
</record>
|
||||
|
||||
<!-- Calendar Alarm : -->
|
||||
<record id="view_calendar_alarm_tree" model="ir.ui.view">
|
||||
<field name="name">calendar.alarm.tree</field>
|
||||
<field name="model">calendar.alarm</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Calendar Alarm" sample="1">
|
||||
<field name="name" invisible="1"/>
|
||||
<field name="alarm_type"/>
|
||||
<field name="duration"/>
|
||||
<field name="interval"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="calendar_alarm_view_form" model="ir.ui.view">
|
||||
<field name="name">calendar.alarm.form</field>
|
||||
<field name="model">calendar.alarm</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Calendar Alarm">
|
||||
<sheet>
|
||||
<group>
|
||||
<group name="left_details">
|
||||
<field name="name" invisible="1"/>
|
||||
<field name="alarm_type"/>
|
||||
<field name="mail_template_id" context="{'default_model': 'calendar.event'}"
|
||||
attrs="{'invisible': [('alarm_type', '!=', 'email')], 'required': [('alarm_type', '=', 'email')]}"/>
|
||||
<field name="body" attrs="{'invisible': [('alarm_type', '!=', 'notification')]}"/>
|
||||
</group>
|
||||
<group name="right_details">
|
||||
<label for="duration"/>
|
||||
<div class="o_row">
|
||||
<field name="duration"/>
|
||||
<field name="interval"/>
|
||||
</div>
|
||||
</group>
|
||||
</group>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_calendar_alarm" model="ir.actions.act_window">
|
||||
<field name="name">Calendar Alarm</field>
|
||||
<field name="res_model">calendar.alarm</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
<field name="view_id" ref="view_calendar_alarm_tree"/>
|
||||
</record>
|
||||
|
||||
<!-- Calendar Events : Views and Actions -->
|
||||
<record id="view_calendar_event_tree" model="ir.ui.view">
|
||||
<field name="name">calendar.event.tree</field>
|
||||
<field name="model">calendar.event</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Meetings" sample="1" multi_edit="1">
|
||||
<header>
|
||||
<button name="action_open_composer" type="object" context="{'composition_mode':'mass_mail'}"
|
||||
string="Send Mail"/>
|
||||
</header>
|
||||
<field name="name" string="Subject" decoration-bf="1" attrs="{'readonly':[('recurrency','=',True)]}"/>
|
||||
<field name="start" string="Start Date" readonly="1"/>
|
||||
<field name="stop" string="End Date" readonly="1"/>
|
||||
<field name="user_id" widget="many2one_avatar_user" attrs="{'readonly':[('recurrency','=',True)]}" optional="hide"/>
|
||||
<field name="partner_ids" widget="many2many_tags" attrs="{'readonly':[('recurrency','=',True)]}" optional="show"/>
|
||||
<field name="alarm_ids" widget="many2many_tags" optional="hide" attrs="{'readonly':[('recurrency','=',True)]}"/>
|
||||
<field name="categ_ids" widget="many2many_tags" optional="hide" attrs="{'readonly':[('recurrency','=',True)]}" options="{'color_field': 'color'}" />
|
||||
<field name="recurrency" optional="hide" readonly="1"/>
|
||||
<field name="privacy" optional="hide" attrs="{'readonly':[('recurrency','=',True)]}"/>
|
||||
<field name="show_as" optional="hide" attrs="{'readonly':[('recurrency','=',True)]}"/>
|
||||
<field name="location" optional="show" attrs="{'readonly':[('recurrency','=',True)]}"/>
|
||||
<field name="duration" widget="float_time" readonly="1"/>
|
||||
<field name="description" optional="hide" attrs="{'readonly':[('recurrency','=',True)]}"/>
|
||||
<field name="allday" invisible="1"/>
|
||||
<field name="message_needaction" invisible="1"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_calendar_event_form" model="ir.ui.view">
|
||||
<field name="name">calendar.event.form</field>
|
||||
<field name="model">calendar.event</field>
|
||||
<field name="priority" eval="1"/>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Meetings" js_class="calendar_form">
|
||||
<div attrs="{'invisible': [('recurrence_id','=',False)]}" class="alert alert-info oe_edit_only" role="status">
|
||||
<p>Edit recurring event</p>
|
||||
<field name="recurrence_update" widget="radio"/>
|
||||
</div>
|
||||
<sheet>
|
||||
<div class="oe_button_box" name="button_box">
|
||||
<button string="Document" icon="fa-bars" type="object" name="action_open_calendar_event" attrs="{'invisible': ['|', '|', ('res_model', '=', False), ('res_id', '=', False), ('res_id', '=', 0)]}"/>
|
||||
</div>
|
||||
<widget name="web_ribbon" title="Archived" bg_color="bg-danger" attrs="{'invisible': [('active', '=', True)]}"/>
|
||||
<field name="res_model" invisible="1" />
|
||||
<field name="res_id" invisible="1" />
|
||||
<field name="attendee_status" invisible="1"/>
|
||||
<field name="active" invisible="1"/>
|
||||
<div class="oe_title mb-3">
|
||||
<div>
|
||||
<label for="name"/>
|
||||
</div>
|
||||
<h1>
|
||||
<field name="name" placeholder="e.g. Business Lunch"/>
|
||||
</h1>
|
||||
</div>
|
||||
<div class="d-flex align-items-baseline">
|
||||
<field name="partner_ids" widget="many2manyattendee"
|
||||
placeholder="Select attendees..."
|
||||
context="{'force_email':True}"
|
||||
domain="[('type','!=','private')]"
|
||||
class="oe_inline o_calendar_attendees"
|
||||
/>
|
||||
<div name="send_buttons" class="sm-2">
|
||||
<button name="action_open_composer" help="Send Email to attendees" type="object" string=" EMAIL" icon="fa-envelope"/>
|
||||
</div>
|
||||
<button name="action_join_video_call" class="btn-primary" help="Join Video Call" type="object" string="Join Video Call" attrs="{'invisible': [('videocall_location', '=', False)]}"/>
|
||||
</div>
|
||||
<div class="alert alert-warning o_form_header mt-2" attrs="{'invisible': [('invalid_email_partner_ids', '=', [])]}" role="status">
|
||||
<p><strong>The following attendees have invalid email addresses and won't receive any email notifications:</strong></p>
|
||||
<field name="invalid_email_partner_ids" widget="many2manyattendee" class="oe_inline o_calendar_attendees"/>
|
||||
</div>
|
||||
<notebook>
|
||||
<page name="page_details" string="Meeting Details">
|
||||
<group>
|
||||
<group>
|
||||
|
||||
<field name="start_date" string="Starting at" attrs="{'required': [('allday','=',True)], 'invisible': [('allday','=',False)]}" force_save="1"/>
|
||||
<field name="stop_date" string="Ending at" attrs="{'required': [('allday','=',True)],'invisible': [('allday','=',False)]}" force_save="1"/>
|
||||
|
||||
<field name="start" string="Starting at" attrs="{'required': [('allday','=',False)], 'invisible': [('allday','=',True)]}"/>
|
||||
<field name="stop" string="Ending At" attrs="{'invisible': [('allday','=',True)]}"/>
|
||||
<label for="duration" attrs="{'invisible': [('allday','=',True)]}"/>
|
||||
<div attrs="{'invisible': [('allday','=',True)]}">
|
||||
<field name="duration" widget="float_time" string="Duration" class="oe_inline" attrs="{'readonly': [('id', '!=', False), ('recurrency','=',True)]}"/>
|
||||
<span> hours</span>
|
||||
</div>
|
||||
<field name="event_tz" attrs="{'invisible': [('recurrency', '=', False)]}"/>
|
||||
<field name="allday" force_save="1"/>
|
||||
<field name="user_id" widget="many2one_avatar_user"/>
|
||||
</group>
|
||||
<group>
|
||||
<field name="alarm_ids" widget="many2many_tags" options="{'no_quick_create': True}"/>
|
||||
<field name="location" />
|
||||
<label for="videocall_location"/>
|
||||
<div col="2" class="o_row">
|
||||
<field name="videocall_location" class="oe_inline" string="Videocall URL" widget="CopyClipboardChar" force_save="1" attrs="{'readonly':[('videocall_source','=', 'discuss')]}"/>
|
||||
<button name="clear_videocall_location" type="object" class="btn btn-link"
|
||||
attrs="{'invisible': [('videocall_location', '=', False)]}" context="{'recurrence_update': recurrence_update}">
|
||||
<span class="fa fa-times"></span><span> Clear meeting</span>
|
||||
</button>
|
||||
<button name="set_discuss_videocall_location" type="object" class="btn btn-link"
|
||||
attrs="{'invisible': [('videocall_location', '!=', False)]}" context="{'recurrence_update': recurrence_update}">
|
||||
<span class="fa fa-plus"></span><span> Add Odoo meeting</span>
|
||||
</button>
|
||||
</div>
|
||||
<field name="videocall_source" invisible="1"/>
|
||||
<field name="access_token" invisible="1" force_save="1"/>
|
||||
<field name="categ_ids" widget="many2many_tags" options="{'color_field': 'color', 'no_create_edit': True}"/>
|
||||
</group>
|
||||
</group>
|
||||
<group>
|
||||
<field name="description"/>
|
||||
</group>
|
||||
</page>
|
||||
<page name="page_options" string="Options">
|
||||
<group>
|
||||
<div>
|
||||
<group>
|
||||
<field name="recurrency"/>
|
||||
</group>
|
||||
<div attrs="{'invisible': [('recurrency', '=', False)]}">
|
||||
<group>
|
||||
<label for="interval"/>
|
||||
<div class="o_col">
|
||||
<div class="o_row">
|
||||
<field name="interval" class="oe_inline" attrs="{'required': [('recurrency', '=', True)]}"/>
|
||||
<field name="rrule_type" attrs="{'required': [('recurrency', '=', True)]}"/>
|
||||
</div>
|
||||
<widget name="week_days" attrs="{'invisible': [('rrule_type', '!=', 'weekly')]}"/>
|
||||
</div>
|
||||
<label string="Until" for="end_type"/>
|
||||
<div class="o_row">
|
||||
<field name="end_type" attrs="{'required': [('recurrency', '=', True)]}"/>
|
||||
<field name="count" attrs="{'invisible': [('end_type', '!=', 'count')], 'required': [('recurrency', '=', True)]}"/>
|
||||
<field name="until" attrs="{'invisible': [('end_type', '!=', 'end_date')], 'required': [('end_type', '=', 'end_date'), ('recurrency', '=', True)]}"/>
|
||||
</div>
|
||||
</group>
|
||||
<group attrs="{'invisible': [('rrule_type', '!=', 'monthly')]}">
|
||||
<label string="Day of Month" for="month_by"/>
|
||||
<div class="o_row">
|
||||
<field name="month_by"/>
|
||||
<field name="day"
|
||||
attrs="{'required': [('month_by', '=', 'date'), ('rrule_type', '=', 'monthly')],
|
||||
'invisible': [('month_by', '!=', 'date')]}"/>
|
||||
<field name="byday" string="The"
|
||||
attrs="{'required': [('recurrency', '=', True), ('month_by', '=', 'day'), ('rrule_type', '=', 'monthly')],
|
||||
'invisible': [('month_by', '!=', 'day')]}"/>
|
||||
<field name="weekday" nolabel="1"
|
||||
attrs="{'required': [('recurrency', '=', True), ('month_by', '=', 'day'), ('rrule_type', '=', 'monthly')],
|
||||
'invisible': [('month_by', '!=', 'day')]}"/>
|
||||
</div>
|
||||
</group>
|
||||
</div>
|
||||
</div>
|
||||
<group>
|
||||
<field name="privacy"/>
|
||||
<field name="show_as"/>
|
||||
<field name="recurrence_id" invisible="1" />
|
||||
</group>
|
||||
</group>
|
||||
</page>
|
||||
|
||||
<page name="page_invitations" string="Invitations" groups="base.group_no_one">
|
||||
<button name="action_sendmail" type="object" string="Send Invitations" icon="fa-envelope" class="oe_link"/>
|
||||
<field name="attendee_ids" widget="one2many" mode="tree,kanban" readonly="1">
|
||||
<tree string="Invitation details" editable="top" create="false" delete="false">
|
||||
<field name="partner_id" />
|
||||
<field name="email" widget="email"/>
|
||||
<field name="phone" widget="phone"/>
|
||||
<field name="state" />
|
||||
|
||||
<button name="do_tentative" states="needsAction,declined,accepted" string="Uncertain" type="object" icon="fa-asterisk" />
|
||||
<button name="do_accept" string="Accept" states="needsAction,tentative,declined" type="object" icon="fa-check text-success"/>
|
||||
<button name="do_decline" string="Decline" states="needsAction,tentative,accepted" type="object" icon="fa-times-circle text-danger"/>
|
||||
</tree>
|
||||
<kanban class="o_kanban_mobile" create="false" delete="false">
|
||||
<field name="partner_id" />
|
||||
<field name="state" />
|
||||
<field name="email" widget="email"/>
|
||||
|
||||
<templates>
|
||||
<t t-name="kanban-box">
|
||||
<div class="d-flex flex-column justify-content-between">
|
||||
<field name="partner_id"/>
|
||||
<field name="email" widget="email"/>
|
||||
<span>Status: <field name="state" /></span>
|
||||
|
||||
<div class="text-end">
|
||||
<button name="do_tentative" states="needsAction,declined,accepted" string="Uncertain" type="object" class="btn fa fa-asterisk"/>
|
||||
<button name="do_accept" states="needsAction,tentative,declined" string="Accept" type="object" class="btn fa fa-check text-success"/>
|
||||
<button name="do_decline" states="needsAction,tentative,accepted" string="Decline" type="object" class="btn fa fa-times-circle text-danger"/>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</templates>
|
||||
</kanban>
|
||||
</field>
|
||||
</page>
|
||||
</notebook>
|
||||
</sheet>
|
||||
<div class="oe_chatter">
|
||||
<field name="message_follower_ids"/>
|
||||
<field name="message_ids" />
|
||||
</div>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_calendar_event_calendar" model="ir.ui.view">
|
||||
<field name="name">calendar.event.calendar</field>
|
||||
<field name="model">calendar.event</field>
|
||||
<field name="priority" eval="2"/>
|
||||
<field name="arch" type="xml">
|
||||
<calendar js_class="attendee_calendar" string="Meetings" date_start="start" date_stop="stop" date_delay="duration" all_day="allday"
|
||||
event_open_popup="true"
|
||||
event_limit="5"
|
||||
color="partner_ids">
|
||||
<field name="attendee_status" invisible="1"/>
|
||||
<field name="partner_ids" options="{'block': True, 'icon': 'fa fa-users'}"
|
||||
filters="1" widget="many2manyattendee" write_model="calendar.filters"
|
||||
write_field="partner_id" filter_field="partner_checked" avatar_field="avatar_128"
|
||||
/>
|
||||
<field name="videocall_location" widget="url" text="Join Video Call" options="{'icon': 'fa fa-lg fa-video-camera'}" attrs="{'invisible': [('videocall_location', '=', False)]}"/>
|
||||
<field name="is_highlighted" invisible="1"/>
|
||||
<field name="is_organizer_alone" invisible="1"/>
|
||||
<field name="display_description" invisible="1"/>
|
||||
<field name="location" attrs="{'invisible': [('location', '=', False)]}"/>
|
||||
<field name="description" attrs="{'invisible': [('display_description', '=', False)]}"/>
|
||||
<field name="privacy"/>
|
||||
<field name="alarm_ids" attrs="{'invisible': [('alarm_ids', '=', [])]}"/>
|
||||
<field name="categ_ids" attrs="{'invisible': [('categ_ids', '=', [])]}" options="{'color_field': 'color'}" />
|
||||
<!-- For recurrence update Dialog -->
|
||||
<field name="recurrency" invisible="1"/>
|
||||
<field name="recurrence_update" invisible="1"/>
|
||||
<field name="partner_id" string="Organizer"/>
|
||||
</calendar>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_calendar_event_search" model="ir.ui.view">
|
||||
<field name="name">calendar.event.search</field>
|
||||
<field name="model">calendar.event</field>
|
||||
<field name="arch" type="xml">
|
||||
<search string="Search Meetings">
|
||||
<field name="name" string="Meeting" filter_domain="[('name', 'ilike', self)]"/>
|
||||
<field name="partner_ids"/>
|
||||
<field name="user_id"/>
|
||||
<field name="location"/>
|
||||
<field name="show_as"/>
|
||||
<field name="categ_ids"/>
|
||||
<field name="description"/>
|
||||
<filter string="My Meetings" help="My Meetings" name="mymeetings" domain="[('partner_ids.user_ids', 'in', [uid])]"/>
|
||||
<separator/>
|
||||
<filter string="Date" name="filter_start_date" date="start"/>
|
||||
<separator/>
|
||||
<filter string="Busy" name="busy" domain="[('show_as', '=', 'busy')]"/>
|
||||
<filter string="Free" name="free" domain="[('show_as', '=', 'free')]"/>
|
||||
<separator/>
|
||||
<filter string="Public" name="public" domain="[('privacy', '=', 'public')]"/>
|
||||
<filter string="Private" name="private" domain="[('privacy', '=', 'private')]"/>
|
||||
<filter string="Only Internal Users" name="confidential" domain="[('privacy', '=', 'confidential')]"/>
|
||||
<separator/>
|
||||
<filter string="Recurrent" name="recurrent" domain="[('recurrency', '=', True)]"/>
|
||||
<separator/>
|
||||
<filter string="Archived" name="inactive" domain="[('active', '=', False)]"/>
|
||||
<group expand="0" string="Group By">
|
||||
<filter string="Responsible" name="responsible" domain="[]" context="{'group_by': 'user_id'}"/>
|
||||
</group>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_calendar_event" model="ir.actions.act_window">
|
||||
<field name="name">Meetings</field>
|
||||
<field name="res_model">calendar.event</field>
|
||||
<field name="view_mode">calendar,tree,form</field>
|
||||
<field name="view_id" ref="view_calendar_event_calendar"/>
|
||||
<field name="search_view_id" ref="view_calendar_event_search"/>
|
||||
<field name="help" type="html">
|
||||
<p class="o_view_nocontent_smiling_face">
|
||||
No meetings found. Let's schedule one!
|
||||
</p><p>
|
||||
The calendar is shared between employees and fully integrated with
|
||||
other applications such as the employee leaves or the business
|
||||
opportunities.
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="res_users_view_form" model="ir.ui.view">
|
||||
<field name="name">res.users.view.form.inherit.calendar</field>
|
||||
<field name="model">res.users</field>
|
||||
<field name="inherit_id" ref="base.view_users_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<notebook colspan="4" position="inside">
|
||||
<!-- Placeholder container to hold information about external accounts (Google calendar, Microsoft calendar, ...) -->
|
||||
<page string="Calendar" name="calendar" invisible="1" groups="base.group_system"
|
||||
attrs="{'invisible': [('share', '=', True)]}">
|
||||
<group name="calendar_accounts"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="action_view_calendar_event_calendar" model="ir.actions.act_window.view">
|
||||
<field name="act_window_id" ref="action_calendar_event"/>
|
||||
<field name="sequence" eval="1"/>
|
||||
<field name="view_mode">calendar</field>
|
||||
<field name="view_id" ref="view_calendar_event_calendar"/>
|
||||
</record>
|
||||
|
||||
<record id="action_view_calendar_event_tree" model="ir.actions.act_window.view">
|
||||
<field name="act_window_id" ref="action_calendar_event"/>
|
||||
<field name="sequence" eval="2"/>
|
||||
<field name="view_mode">tree</field>
|
||||
<field name="view_id" ref="view_calendar_event_tree"/>
|
||||
</record>
|
||||
|
||||
<record id="action_view_calendar_event_form" model="ir.actions.act_window.view">
|
||||
<field name="act_window_id" ref="action_calendar_event"/>
|
||||
<field name="sequence" eval="3"/>
|
||||
<field name="view_mode">form</field>
|
||||
<field name="view_id" ref="view_calendar_event_form"/>
|
||||
</record>
|
||||
|
||||
<!-- Menus -->
|
||||
<menuitem
|
||||
id="mail_menu_calendar"
|
||||
name="Calendar"
|
||||
sequence="10"
|
||||
action="action_calendar_event"
|
||||
web_icon="calendar,static/description/icon.svg"
|
||||
groups="base.group_user"/>
|
||||
|
||||
<menuitem
|
||||
id="calendar_menu_config"
|
||||
parent="calendar.mail_menu_calendar"
|
||||
name="Configuration"
|
||||
sequence="40"
|
||||
action="calendar.action_calendar_event"
|
||||
groups="base.group_no_one"/>
|
||||
|
||||
<menuitem
|
||||
id="calendar_submenu_reminders"
|
||||
parent="calendar_menu_config"
|
||||
name="Reminders"
|
||||
action="action_calendar_alarm"
|
||||
groups="base.group_no_one"/>
|
||||
|
||||
<menuitem
|
||||
id="menu_calendar_configuration"
|
||||
name="Calendar"
|
||||
parent="base.menu_custom"
|
||||
sequence="30"
|
||||
groups="base.group_no_one"/>
|
||||
|
||||
<menuitem
|
||||
id="menu_calendar_event_type"
|
||||
parent="menu_calendar_configuration"
|
||||
action="action_calendar_event_type"
|
||||
groups="base.group_no_one"/>
|
||||
|
||||
<menuitem
|
||||
id="menu_calendar_alarm"
|
||||
parent="menu_calendar_configuration"
|
||||
action="action_calendar_alarm"
|
||||
groups="base.group_no_one"/>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
|
||||
<record id="mail_activity_view_form_popup" model="ir.ui.view">
|
||||
<field name="name">mail.activity.form.inherit.calendar</field>
|
||||
<field name="model">mail.activity</field>
|
||||
<field name="inherit_id" ref="mail.mail_activity_view_form_popup"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='date_deadline']" position="attributes">
|
||||
<attribute name="attrs">{'invisible': [('activity_category', '=', 'meeting')]}</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='user_id']" position="attributes">
|
||||
<attribute name="attrs">{'invisible': [('activity_category', '=', 'meeting')]}</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//button[@id='mail_activity_schedule']" position="attributes">
|
||||
<attribute name="attrs">{'invisible': ['|', ('activity_category', 'in', ['meeting', 'phonecall']), ('id', '!=', False)]}</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//button[@id='mail_activity_save']" position="attributes">
|
||||
<attribute name="attrs">{'invisible': [('activity_category', '!=', 'phonecall'), ('id', '=', False)]}</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//button[@name='action_done']" position="attributes">
|
||||
<attribute name="attrs">{'invisible': ['|', ('activity_category', '=', 'meeting'), ('chaining_type', '=', 'trigger')]}</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='note']" position="attributes">
|
||||
<attribute name="attrs">{'invisible': [('activity_category', '=', 'meeting')]}</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//button[@name='action_close_dialog']" position="before">
|
||||
<field name="calendar_event_id" invisible="1" />
|
||||
<button string="Open Calendar"
|
||||
attrs="{'invisible': ['|', ('activity_category', 'not in', ['meeting', 'phonecall']), ('calendar_event_id', '!=', False)]}"
|
||||
name="action_create_calendar_event"
|
||||
type="object"
|
||||
class="btn-primary"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
<?xml version="1.0"?>
|
||||
<odoo>
|
||||
|
||||
<!-- Partner kanban view inherit -->
|
||||
<record id="res_partner_kanban_view" model="ir.ui.view">
|
||||
<field name="name">res.partner.view.kanban.calendar</field>
|
||||
<field name="model">res.partner</field>
|
||||
<field name="inherit_id" ref="base.res_partner_kanban_view"/>
|
||||
<field name="priority" eval="10"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="mobile" position="after">
|
||||
<field name="meeting_count"/>
|
||||
</field>
|
||||
<xpath expr="//div[hasclass('oe_kanban_bottom_left')]" position="inside">
|
||||
<a t-if="record.meeting_count.value>0" data-type="object" data-name="schedule_meeting"
|
||||
href="#" class="oe_kanban_action oe_kanban_action_a me-1">
|
||||
<span class="badge rounded-pill">
|
||||
<i class="fa fa-fw fa-calendar" aria-label="Meetings" role="img" title="Meetings"/>
|
||||
<t t-out="record.meeting_count.value"/>
|
||||
</span>
|
||||
</a>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<!-- Add contextual button on partner form view -->
|
||||
<record id="view_partners_form" model="ir.ui.view">
|
||||
<field name="name">res_partner.view.form.calendar</field>
|
||||
<field name="model">res.partner</field>
|
||||
<field name="inherit_id" ref="base.view_partner_form"/>
|
||||
<field eval="1" name="priority"/>
|
||||
<field name="arch" type="xml">
|
||||
<data>
|
||||
<div name="button_box" position="inside">
|
||||
<button class="oe_stat_button" type="object"
|
||||
name="schedule_meeting"
|
||||
icon="fa-calendar"
|
||||
context="{'partner_id': active_id, 'partner_name': name}">
|
||||
<field string="Meetings" name="meeting_count" widget="statinfo"/>
|
||||
</button>
|
||||
</div>
|
||||
</data>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue