Availability |
Odoo Online
Odoo.sh
On Premise
|
Odoo Apps Dependencies |
Discuss (mail)
|
Technical Name |
alarm |
License | OPL-1 |
Website | http://www.braintec-group.com/ |
Availability |
Odoo Online
Odoo.sh
On Premise
|
Odoo Apps Dependencies |
Discuss (mail)
|
Technical Name |
alarm |
License | OPL-1 |
Website | http://www.braintec-group.com/ |
Alarms / Reminders
Create alarms for any record and send reminders to the appropriate users when certain conditions are met

Summary
Create an alarm for any record model, specify when the alarm should generate notifications and which users are to be notified.
For example, we can create the following alarm:
- Record model? Project Task
- When must the alarm generate notifications? Two days before the deadline of the task
- Which user(s) are to be notified? The user responsible for the task

As a result, each project task with a deadline taking place in 2 days will trigger the generation of an alarm notification (a reminder) for the user that is set as responsible within the task. Note that the user can access the task directly from the notification.

Alarm Notifications - How To
All users belonging to the Alarms / Notification User group have access to the Alarm Notifications area, where they can see all their notifications. Users belonging to the Alarms / Manager group can, additionally, see the notifications of other users.

By default, the list view shows only the notifications of the current user that are active and open. However, the filters can be modified to adapt the results to the user's needs.

An alarm notification contains the following information:
- Name: this is the name of the alarm that triggered the generation of this notification.
- Generated for: the user to whom this notification belongs.
- Record: link to the record that triggered the generation of this notification.
- Active from: the date from which the notification is considered active. By default, the date when the notification was generated is set. However, a user can move this date into the future to indicate that the notification is to be handled in the future.
- Notification Message: some information provided by the alarm.
- Notes: text field for the user to note down any information they want.
- State: indicates if the notification is open (to be handled), closed (handled) or cancelled. By default, all notification are generated in the open state. However, a user can change the state at any time.

Alarms - How To
All users belonging to the Alarms / Alarm User group have access to the Alarms area, where they can manage all their alarms. Users belonging to the Alarms / Manager group can, additionally, manage the alarms of other users.

Additionally, these users have access to a shortcut action named Create Alarm placed in the Action drop-down available in all list views when one or more records are selected and in all form views. Such an action allows the user to create very easily an alarm exclusively for the selected records.

By default, the alarms list view shows only the alarms created by the current user that are draft or done. However, the filters can be modified to adapt the results to the user's needs.

An alarm contains the following information:
- Name: short descriptive name for the alarm. This name is assigned to all notifications generated by this alarm.
- Description: further details to better understand the purpose of the alarm.
- Created by: the user that created the alarm and therefore, the alarm owner.
- Triggered on: the date/time on which this alarm was last triggered. Alarms are normally triggered every day in the early morning by a scheduled action. However, a user can also trigger it manually by means of the Trigger Alarm button. Note that even if the alarm is triggered multiple times in a row, the same notification will not be generated more than once.
- Model: the type of record to be checked in order to decide if a notification must be generated or not.
-
Model Domain: python domain used to select only records with certain characteristics. For
example, we can configure the alarm to generate notifications only for records in the draft state
and whose creator is me by using the following domain:
['&', ('state', '=', 'draft'), ('create_uid', '=', my_uid)].
The following variables and libraries are available:
- my_uid: variable with my user ID.
- date: library to manage dates (e.g., date.today())
- datetime: library to manage date with times (e.g., datetime.now())
- timedelta: library to manage time deltas (e.g., date.today() + timedelta(days=2))
- Date Field: date(time) field within the specified Model whose check may trigger the generation of a notification. When checking this field, if time information is present, it is simply ignored (e.g., "2017-01-25 09:30:00" is treated as "2017-01-25").
- Number of Days: a negative integer indicates that a notification will be generated this number of days before the date set in Date Field; a positive integer indicates that a notification will be generated this number of days after the date set in Date Field; a zero indicates that a notification will be generated right on the date set in Date Field.
- Notify Only Me: this flag indicates whether I will be the only person to be notified or not. Note that only users belonging to the Alarms / Manager group can actually create alarms that notify other users.
- User Field: the field within the specified Model containing the user(s) to be notified. If Notify Only Me is set, I will be the only person to be notified but I must be also the user specified in this field.
- Explicit Users to Notify: static set of users that must always be notified.
- Notification Message: information that will be provided to the notified user. Here we can provide static information but also dynamic information. To provide dynamic information we must use MAKO templates* (same technique as the one used in email templates). For example, if we have an alarm for project tasks and we want to include in the notification message the name of the project manager, we can use the template ${object.manager_id.name}. To verify that the template is correct and that the notification message looks like desired, we can use the Preview Notification Message button.
- State: indicates if the alarm is draft (not ready to be automatically triggered), done (ready to be automatically triggered) or cancelled. Note that any alarm can be manually triggered by means of the Trigger Alarm button.
* Brief explanation about MAKO templates: all MAKO templates are represented with ${...}. Within the braces we can provide any python code, taking into account that we can only access a limited set of functions and variables. The most important variable we have is object, which represents the record triggering the alarm (in our example, a project task).

Configuration by Admin
Firstly, the admin must assign the appropriate Alarms security group to all users. A description of each security group is provided below:
- No Group: the user has no access to the Alarms module.
- Notification User: the user has access to their own alarm notifications.
- Alarm User: the user has access to their own alarms and notifications. Their alarms can only be configured to notify themselves.
- Manager: the user has access to all alarms and notifications. Their alarms can be configured to notify anybody.

Secondly, the admin must make sure that the scheduled action in charge of triggering done alarms is properly configured (i.e., active and at least, executed once a day). By default, the execution is scheduled to take place every day at 3 am. Note that even if the alarm is triggered multiple times a day, the same notification will not be generated more than once.


Finally, the admin must also make sure that the scheduled action in charge of deleting closed and cancelled notifications is properly configured. By default, this scheduled action is active, set to be executed every day at 5 am, and configured to delete all closed and cancelled notifications that have been active for more than 15 days. Note that the admin can deactivate this scheduled action in order to prevent notifications from being automatically deleted or modify the "15 days" argument to some other value (a positive integer must be provided).


Contact Us
- For questions related to this application, please use the following email.
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module
Report comment
Any abuse of this reporting system will be penalizedno support on this module be careful
They do not answer any support requests or emails even after many weeks
Error
Hi, I purchased your module. When configuring the module for the Helpdesk module, when I want to 'trigger the alarm' (set staus on DONE), I get an error. File "/usr/lib/python2.7/dist-packages/odoo/osv/expression.py", line 1085, in parse if field.type == 'datetime' and right and len(right) == 10: TypeError: object of type 'datetime.datetime' has no len() Please advice.
Notification channel question
Hi, I want to know if this module include email notifications or if it is only alarms when user login into odoo? Thanks
Calendar app integration?
Would it be possible to have the alarms added to the Calendar app?