# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. { 'name': 'Automation Rules', 'version': '1.0', 'category': 'Sales/Sales', 'description': """ This module allows to implement automation rules for any object. ================================================================ Use automation rules to automatically trigger actions for various screens. **Example:** A lead created by a specific user may be automatically set to a specific Sales Team, or an opportunity which still has status pending after 14 days might trigger an automatic reminder email. """, 'depends': ['base', 'resource', 'mail', 'sms'], 'data': [ 'security/ir.model.access.csv', 'data/base_automation_data.xml', 'views/ir_actions_server_views.xml', 'views/base_automation_views.xml', ], 'assets': { 'web.assets_backend': [ 'base_automation/static/src/**/*', ], 'web.qunit_suite_tests': [ 'base_automation/static/tests/**/*', ], }, 'license': 'LGPL-3', }