[IMP] add email module depedancy in related module.

bzr revid: ysa@tinyerp.com-20110204062934-yf8in8dzu15vdmeh
This commit is contained in:
YSA (Openerp) 2011-02-04 11:59:34 +05:30
parent bbdac458fd
commit 5140ae0d98
13 changed files with 17 additions and 19 deletions

View File

@ -43,7 +43,7 @@
""",
'author': 'OpenERP SA',
'website': 'http://www.openerp.com',
'depends': ['account'],
'depends': ['account', 'email'],
'init_xml': [],
'update_xml': [
'security/ir.model.access.csv',

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
##############################################################################
#
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
@ -15,7 +15,7 @@
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
@ -26,12 +26,12 @@
'description': "This module allows to implement action rules for any object.",
'author': 'OpenERP SA',
'website': 'http://www.openerp.com',
'depends': ['base'],
'depends': ['base', 'email'],
'init_xml': [
'base_action_rule_data.xml'
],
'update_xml': [
'base_action_rule_view.xml',
'base_action_rule_view.xml',
'security/ir.model.access.csv',
],
'demo_xml': [],

View File

@ -20,9 +20,9 @@
##############################################################################
{
"name" : "Basic Calendar Functionality",
"version" : "1.0",
"depends" : ["base"],
"name" : "Basic Calendar Functionality",
"version" : "1.0",
"depends" : ["base", "email"],
'description': """Full featured calendar system that supports:
- Calendar of events
- Alerts (create requests)

View File

@ -54,6 +54,7 @@ Create dashboard for CRM that includes:
'website': 'http://www.openerp.com',
'depends': [
'base',
'email',
'base_action_rule',
'process',
'mail_gateway',

View File

@ -39,7 +39,7 @@
Events / Reporting
""",
'author': 'OpenERP SA',
'depends': ['crm', 'base_contact', 'account', 'marketing'],
'depends': ['crm', 'base_contact', 'account', 'marketing', 'email'],
'init_xml': [],
'update_xml': [
'security/event_security.xml',

View File

@ -24,7 +24,6 @@ import time
from crm import crm
from osv import fields, osv
from tools.translate import _
import tools
import decimal_precision as dp
class event_type(osv.osv):

View File

@ -25,7 +25,7 @@
"author": "OpenERP SA",
"category": "Generic Modules/Human Resources",
"website": "http://www.openerp.com",
"depends": ["hr",'hr_recruitment','survey'],
"depends": ["hr","hr_recruitment","survey", "email"],
"description": """
Ability to create employees evaluation.
An evaluation can be created by employee for subordinates,

View File

@ -24,7 +24,6 @@ from datetime import datetime
from dateutil.relativedelta import relativedelta
from dateutil import parser
from osv import fields, osv
import tools
from tools.translate import _
class hr_evaluation_plan(osv.osv):

View File

@ -26,7 +26,7 @@
"author": "OpenERP SA",
"website": "http://www.openerp.com",
"category": "Generic Modules/Projects & Services",
"depends": ["product", "analytic", "board"],
"depends": ["product", "analytic", "board", "email"],
"description": """Project management module tracks multi-level projects, tasks,
work done on tasks, eso. It is able to render planning, order tasks, eso.
Dashboard for project members that includes:

View File

@ -47,7 +47,7 @@
* http://controlchaos.com
""",
'author': 'OpenERP SA',
'depends': ['project', 'process'],
'depends': ['project', 'process', 'email'],
'init_xml': [],
'update_xml': [
'security/ir.model.access.csv',

View File

@ -23,7 +23,7 @@
{
"name" : "Sharing Tools",
"version" : "1.2",
"depends" : ["base"],
"depends" : ["base", "email"],
"author" : "OpenERP SA",
"category": 'Generic Modules',
"description": """
@ -36,7 +36,7 @@
combining the appropriate access rights and ir.rules to ensure that the
shared users only have access to the data that has been shared with them.
This is extremely useful for collaborative work, knowledge sharing,
This is extremely useful for collaborative work, knowledge sharing,
synchronization with other companies, etc.
""",

View File

@ -22,7 +22,6 @@ import logging
import random
import time
import tools
from osv import osv, fields
from osv.expression import expression
from tools.translate import _

View File

@ -26,11 +26,11 @@
'description': """
This module is used for surveying. It depends on the answers or reviews of some questions by different users.
A survey may have multiple pages. Each page may contain multiple questions and each question may have multiple answers.
Different users may give different answers of question and according to that survey is done.
Different users may give different answers of question and according to that survey is done.
Partners are also sent mails with user name and password for the invitation of the survey
""",
'author': 'OpenERP SA',
'depends': ['base_tools'],
'depends': ['base_tools', 'email'],
'update_xml': ['survey_report.xml',
'survey_data.xml',
'wizard/survey_selection.xml',