~openerp-community/openobject-addons/trunk-addons-community

« back to all changes in this revision

Viewing changes to task_access_restrict/__openerp__.py

  • Committer: Serpent Consulting Services
  • Date: 2012-02-24 20:15:02 UTC
  • Revision ID: support@serpentcs.com-20120224201502-gph0suz05gjx7dwl
[ADD] Adding the module task_restrict_access : Normally in a real-time scenario, when one project manager is creating tasks of Projects managed by him; he selects his project and for now, he can choose any member who is non-member of the Project. This is not acceptable in live scenarios. Hence, Serpent Consulting Services contributes a module which will only let the mnager add the members of the project chosen by him.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
    'name': 'Task Access Restrict Module',
 
3
    'version': '1.0',
 
4
    'category': 'Generic Modules/Projects & Services',
 
5
    'description': """
 
6
   This module lets the Project Manager select only the member of the selected Project while creating a task.
 
7
    """,
 
8
    'author': 'Serpent Consulting Services',
 
9
    "website": "http://www.serpentcs.com",
 
10
    'depends': ['project'],
 
11
    'update_xml': ['task_access_restrict_view.xml'],
 
12
    'demo_xml': [],
 
13
    'test': [],
 
14
    'installable': True,
 
15
    'active': False,
 
16
}
 
17
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: