-
-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a194ef5
commit c8a8233
Showing
4 changed files
with
55 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ Resource booking | |
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:59ca230a37d737431cbc0df890d5f8ed789435503c356ddc3142d2f11e4b3ed1 | ||
!! source digest: sha256:4a14fac49f44fba51455196379766c311bc9309f3a0fa4a047870e428087ceef | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png | ||
|
@@ -33,27 +33,27 @@ given schedules. | |
|
||
Example use cases: | ||
|
||
- Management of consultations in a clinic. | ||
- Salesman appointments. | ||
- Classroom and projector reservations. | ||
- Hotel room booking. | ||
- Management of consultations in a clinic. | ||
- Salesman appointments. | ||
- Classroom and projector reservations. | ||
- Hotel room booking. | ||
|
||
Among the things you can do: | ||
|
||
- Specify the type of booking, which includes a calendar of | ||
availability. | ||
- Specify which resources can be booked together. All of them must be | ||
free to be booked. | ||
- Place pending bookings, effectively giving permissions to someone to | ||
see the availability calendar and choose one slot. | ||
- Partners can do that from their portals. | ||
- If a partner has no user, he can still do the same via a tokenized | ||
URL. | ||
- Backend users can also do that from the backend. | ||
- Booking lifecycle with computed states. | ||
- Automatic meeting creation and deletion. | ||
- Automatic conflict detection. | ||
- Deadline to block modifications. | ||
- Specify the type of booking, which includes a calendar of | ||
availability. | ||
- Specify which resources can be booked together. All of them must be | ||
free to be booked. | ||
- Place pending bookings, effectively giving permissions to someone to | ||
see the availability calendar and choose one slot. | ||
- Partners can do that from their portals. | ||
- If a partner has no user, he can still do the same via a tokenized | ||
URL. | ||
- Backend users can also do that from the backend. | ||
- Booking lifecycle with computed states. | ||
- Automatic meeting creation and deletion. | ||
- Automatic conflict detection. | ||
- Deadline to block modifications. | ||
|
||
**Table of contents** | ||
|
||
|
@@ -73,12 +73,12 @@ Configuration*, where he will be able to configure resources, leaves and | |
schedules. This menu is just provided as a shortcut. However, if you | ||
want to manage that stuff more comfortably: | ||
|
||
- To manage human resources, install | ||
`hr <https://apps.odoo.com/app/employees>`__. | ||
- To manage their leaves, install | ||
`hr_holidays <https://apps.odoo.com/app/time-off>`__. | ||
- To manage work centers, install | ||
`mrp <https://apps.odoo.com/app/manufacturing>`__. | ||
- To manage human resources, install | ||
`hr <https://apps.odoo.com/app/employees>`__. | ||
- To manage their leaves, install | ||
`hr_holidays <https://apps.odoo.com/app/time-off>`__. | ||
- To manage work centers, install | ||
`mrp <https://apps.odoo.com/app/manufacturing>`__. | ||
|
||
Configuration | ||
============= | ||
|
@@ -126,9 +126,9 @@ This module installs a new app, "Resource bookings". | |
|
||
Bookings may involve you: | ||
|
||
- Maybe because you requested to book something. | ||
- Maybe because you are one of the booked resources, if a booking | ||
represents some kind of appointment. | ||
- Maybe because you requested to book something. | ||
- Maybe because you are one of the booked resources, if a booking | ||
represents some kind of appointment. | ||
|
||
To see which bookings involve you: | ||
|
||
|
@@ -169,13 +169,13 @@ To invite someone to book a resource combination from the portal: | |
Known issues / Roadmap | ||
====================== | ||
|
||
- Allow combination auto-assignment based on least used combination. | ||
- Allow customer to choose combination. | ||
- Some error messages would be a bit more helpful if they specify the | ||
schedule impossibility reason, but that should be done without | ||
affecting performance. | ||
- Optimize ``_calendar_event_busy_intervals()`` to make it work in | ||
batch. | ||
- Allow combination auto-assignment based on least used combination. | ||
- Allow customer to choose combination. | ||
- Some error messages would be a bit more helpful if they specify the | ||
schedule impossibility reason, but that should be done without | ||
affecting performance. | ||
- Optimize ``_calendar_event_busy_intervals()`` to make it work in | ||
batch. | ||
|
||
Bug Tracker | ||
=========== | ||
|
@@ -198,9 +198,8 @@ Authors | |
Contributors | ||
------------ | ||
|
||
- Jairo Llopis <[email protected]> | ||
(https://www.tecnativa.com/) | ||
- Henrik Norlin (https://ows.cloud) | ||
- Jairo Llopis <[email protected]> (https://www.tecnativa.com/) | ||
- Henrik Norlin (https://ows.cloud) | ||
|
||
Maintainers | ||
----------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[project] | ||
name = "odoo-addons-oca-calendar" | ||
version = "17.0.20250131.0" | ||
dependencies = [ | ||
"odoo-addon-resource_booking>=17.0dev,<17.1dev", | ||
] | ||
classifiers=[ | ||
"Programming Language :: Python", | ||
"Framework :: Odoo", | ||
"Framework :: Odoo :: 17.0", | ||
] |