Skip to main content

Provide (readonly) .ics URLs to calendar-like models

Project description

Odoo Community Association

Readonly publishing of calendars

Alpha License: AGPL-3 OCA/server-backend Translate me on Weblate Try me on Runboat

This module allows administrators to configure iCalendars based on an arbitrary selection on arbitrary models.

Users can selectively subscribe to them by enabling them in their profile form.

This is useful for exposing Odoo data to calendaring application like Nextcloud.

Table of contents

Configuration

To configure this module, you need to:

  1. Go to Settings/Technical/iCalendars

  2. Create a iCalendar, fill in the model you want to expose and possibly a domain to restrict records. You can use the user variable to restrict things relative to the user using the iCalendar

  3. A iCalendar is only available to the allowed users. Use the Allow automatically to make the iCalendar available to all users

  4. See the examples below for a start

Examples

Simple example, for model calendar.event, you’d fill in record.allday and record.start_date or record.start as DTSTART and record.allday and record.stop_date or record.stop as DTEND.

Advanced example, for model calendar.event, you’d use calendar = record._get_ics_file() in the code.

Advanced example, for model hr.leave, you can use the following code and [("employee_id.user_id", "=", user.id)] in the domain to export the own time offs. This is a bit more complex because of the way Odoo handles the begin and end times of leaves, and you’ll want the extra day as most clients interpret the end date as non-inclusive.:

confirmed = ("validate", "validate1")
if record.request_unit_half or record.request_unit_hours:
   event = {
      "dtstart": event["dtstart"].date(),
      "dtend": event["dtend"].date() + timedelta(days=1),
   }
else:
  event = {
      "dtstart": record.date_from,
      "dtend": record.date_to,
   }

event["summary"] = record.name
event["status"] = "CONFIRMED" if record.state in confirmed else "TENTATIVE"

Advanced example, for model mail.activity, you can use the following code and [("user_id", "=", user.id)] and domain to export all user activities.

todo = {
   "summary": record.display_name,
   "due": record.date_deadline,
   "description": html2plaintext(record.note) if record.note else ""
}

Usage

To use this module, you need to:

  1. Go to your profile form

  2. Click Enable on one of the calendars listed in tab Calendars

  3. Copy the URL to the application you use

Known issues / Roadmap

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.

Do not contact contributors directly about support or help with technical issues.

Credits

Authors

  • Hunki Enterprises BV

Contributors

Maintainers

This module is maintained by the OCA.

Odoo Community Association

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

Current maintainer:

hbrunn

This module is part of the OCA/server-backend project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

odoo_addon_base_ical-15.0.1.0.1-py3-none-any.whl (37.8 kB view details)

Uploaded Python 3

File details

Details for the file odoo_addon_base_ical-15.0.1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for odoo_addon_base_ical-15.0.1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b4f5bc6814684f63a46ba99a74e99ebba0639968a28bcd9d7aef59da5917213e
MD5 bca7d0f003003953212aa2ad6ce1674d
BLAKE2b-256 a2ca75e6f07f86a6d835597ede34ecd1acb39faad5162a1aa355b914a368decd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page