# -*- coding: utf-8 -*- # Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details. { 'name': 'Automated Action Rules', 'author' : 'Odoo S.A', 'version': '1.0', 'category': 'Sales', 'description': """ This module allows to implement action rules for any object. ============================================================ Use automated actions to automatically trigger actions for various screens. **Example:** A lead created by a specific user may be automatically set to a specific sales channel, or an opportunity which still has status pending after 14 days might trigger an automatic reminder email. """, 'depends': ['base', 'resource', 'mail'], 'data': [ 'security/ir.model.access.csv', 'data/base_automation_data.xml', 'views/base_automation_view.xml', ], 'demo': [ 'data/base_automation_demo.xml', ], }