~camptocamp/project-service/7.0-port-project_service_type

« back to all changes in this revision

Viewing changes to project_service_profiling/__openerp__.py

  • Committer: Daniel Reis
  • Date: 2013-03-04 16:16:31 UTC
  • Revision ID: dreis.pt@hotmail.com-20130304161631-59rn4a1jpi65q7v2
[INIT] disabling module not yet ported to v7

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    'version': '6.1',
25
25
    "category": "Project Management",
26
26
    'description': """
27
 
    Automatically assign a responsible when creating a new Issue, or other type of document. 
 
27
    Automatically assign a responsible when creating a new Issue, or other type of document.
28
28
    Responsible person is looked up on a "profiling" table based on Sales Team and Department.
29
29
    "Sales Teams" allow to define different target teams. Originally are ment for Sales people, but here are (re)used also for Service Teams handling Issues, Claims, Tasks, etc.
30
 
    Initially was ment to on Issues, but currently it's generic enough to work on any object: crm.case, crm.claim, project.task, etc. 
 
30
    Initially was ment to on Issues, but currently it's generic enough to work on any object: crm.case, crm.claim, project.task, etc.
31
31
    This module doesn't even require for Project to be installed. The names used are project related for historic reasons.
32
 
    
 
32
 
33
33
    Usage:
34
34
    - Profiling rules are defined either on Department form or on User form.
35
35
    - User is assigned by a Server Action. Example using Project Issues:
41
41
    'author': 'Daniel Reis',
42
42
    'website': 'daniel.reis@securitas.pt',
43
43
    'depends': [
44
 
        'hr', #hr.department
45
 
        'crm', #case.section
 
44
        'hr',  # hr.department
 
45
        'crm',  # case.section
46
46
    ],
47
47
    'init_xml': [],
48
48
    'update_xml': [
51
51
    ],
52
52
    'demo_xml': [],
53
53
    'test': [],
54
 
    'installable': True,
 
54
    'installable': False,
55
55
    'application': False,
56
56
}
57
57
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: