1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2010 Smile (<http://www.smile.fr>). All Rights Reserved
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
"name" : "Server Actions R* Trigger Rules Engine",
"version" : "2.0a1",
"author" : "Smile",
"website": 'http://www.smile.fr',
"category" : "Generic Modules/Base",
"description": """
Concept
* Give to functional users the possibility to create trigger rules for server actions
* Make easier to technical users the application maintenance and scalability
Principle
A rule applies to a single object and is composed of:
* Triggers on
* object creation
* object update
* object deletion
* object date (creation date, last update date or another date)
* object function field recalculation (thus you can trigger the calculation of function fields on cascade)
* Conditions
* operators: you can create your own operators (which apply to current or old field value)
* value age: current or old values if the rule trigger is the object update
* Server Actions
* all action types: email (native or with poweremail), sms, object creation/update, etc
Suggestions & Feedback to: corentin.pouhet-brunerie@smile.fr
""",
"depends" : ['base'],
"init_xml" : ['security/sartre_security.xml', 'ir_cron_data.xml'],
"update_xml": ['ir_model_view.xml', 'sartre_view.xml', 'sartre_data.xml'],
"demo_xml" : ['sartre_demo.xml'],
"installable": True,
"active": False,
"certificate": '',
}
|