Skip to content

Commit

Permalink
[ADD] calendar_import_ics
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnauCForgeFlow committed Feb 23, 2024
1 parent 448f051 commit 16eac18
Show file tree
Hide file tree
Showing 20 changed files with 885 additions and 0 deletions.
98 changes: 98 additions & 0 deletions calendar_import_ics/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
=====================
Calendar - Import ics
=====================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:57021ad288c107b8274bc4277bfad98fec642aa8a268cba05193d665d2ee706b
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcalendar-lightgray.png?logo=github
:target: https://github.com/OCA/calendar/tree/15.0/calendar_import_ics
:alt: OCA/calendar
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/calendar-15-0/calendar-15-0-calendar_import_ics
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/calendar&target_branch=15.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module adds a new wizard that allows you to import .ics files into odoo calendar, importing events and the following attributes:

* Summary
* Start Date
* End Date
* UID

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, follow these steps:

#. Navigate to the Calendar App.
#. Go to Configuration.
#. Select Import ICS File.

When importing, you have two options:

* Specify start and end dates to import events occurring within that range.
* Leave the date fields empty to import all events from the entire file.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/calendar/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 <https://github.com/OCA/calendar/issues/new?body=module:%20calendar_import_ics%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
~~~~~~~

* ForgeFlow S.L.

Contributors
~~~~~~~~~~~~

* Arnau Cruz <[email protected]>


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

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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.

This module is part of the `OCA/calendar <https://github.com/OCA/calendar/tree/15.0/calendar_import_ics>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions calendar_import_ics/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import wizards
from . import models
17 changes: 17 additions & 0 deletions calendar_import_ics/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright (C) 2024 - ForgeFlow S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
"name": "Calendar - Import ics",
"summary": "Allow importing an ics file to our calendar",
"version": "15.0.1.0.0",
"author": "ForgeFlow S.L.,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/calendar",
"license": "AGPL-3",
"depends": ["calendar"],
"data": [
"security/calendar_import_security.xml",
"security/ir.model.access.csv",
"wizards/wizard_import_ics.xml",
],
}
1 change: 1 addition & 0 deletions calendar_import_ics/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import calendar_event
9 changes: 9 additions & 0 deletions calendar_import_ics/models/calendar_event.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (C) 2024 - ForgeFlow S.L.
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from odoo import fields, models


class CalendarEvent(models.Model):
_inherit = "calendar.event"
import_id = fields.Char("Imported Event Id")
4 changes: 4 additions & 0 deletions calendar_import_ics/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* Arnau Cruz <[email protected]>


Do not contact contributors directly about support or help with technical issues.
6 changes: 6 additions & 0 deletions calendar_import_ics/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This module adds a new wizard that allows you to import .ics files into odoo calendar, importing events and the following attributes:

* Summary
* Start Date
* End Date
* UID
10 changes: 10 additions & 0 deletions calendar_import_ics/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
To use this module, follow these steps:

#. Navigate to the Calendar App.
#. Go to Configuration.
#. Select Import ICS File.

When importing, you have two options:

* Specify start and end dates to import events occurring within that range.
* Leave the date fields empty to import all events from the entire file.
7 changes: 7 additions & 0 deletions calendar_import_ics/security/calendar_import_security.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="group_calendar_import" model="res.groups">
<field name="name">Calendar Import Ics</field>
<field name="category_id" ref="base.module_category_hidden" />
</record>
</odoo>
2 changes: 2 additions & 0 deletions calendar_import_ics/security/ir.model.access.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_wizard_calendar_import_ics,access_wizard_calendar_import_ics,model_calendar_import_ics,calendar_import_ics.group_calendar_import,1,1,1,1
Loading

0 comments on commit 16eac18

Please sign in to comment.