~vauxoo/addons-vauxoo/8.0-import_tax_tariff-dev-yani-rev-2

« back to all changes in this revision

Viewing changes to add_followers/__openerp__.py

  • Committer: Jose Morales
  • Date: 2013-05-18 03:08:16 UTC
  • mto: (543.6.1 merge_7)
  • mto: This revision was merged to the branch mainline in revision 797.
  • Revision ID: jose@vauxoo.com-20130518030816-9d4364toeqiwtpvc
 
[ADD] In many cases there is the need to add multiple users to multiple tasks or poryectos, which is a tedious task because you have to open each document and do it manually.

That is why you add a module that meets this need and allows you to add many followers to many tasks and projects in one step, telling new followers just happened

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
###########################################################################
 
3
#    Module Writen to OpenERP, Open Source Management Solution
 
4
#
 
5
#    Copyright (c) 2011 Vauxoo - http://www.vauxoo.com/
 
6
#    All Rights Reserved.
 
7
#    info Vauxoo (info@vauxoo.com)
 
8
############################################################################
 
9
#    Coded by: moylop260 (moylop260@vauxoo.com)
 
10
############################################################################
 
11
#
 
12
#    This program is free software: you can redistribute it and/or modify
 
13
#    it under the terms of the GNU Affero General Public License as
 
14
#    published by the Free Software Foundation, either version 3 of the
 
15
#    License, or (at your option) any later version.
 
16
#
 
17
#    This program is distributed in the hope that it will be useful,
 
18
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
#    GNU Affero General Public License for more details.
 
21
#
 
22
#    You should have received a copy of the GNU Affero General Public License
 
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
24
#
 
25
##############################################################################
 
26
 
 
27
{
 
28
    "name" : "Add many followers in many task or project",
 
29
    "version" : "1.0",
 
30
    "author" : "Vauxoo",
 
31
    "category" : "Task and Project",
 
32
    "description" : """
 
33
 
 
34
    This module is a help to add followers massive, 
 
35
    mainly in project and task models
 
36
 
 
37
    Add an action windows in project and task model, to select any of these
 
38
    and set their followers
 
39
 
 
40
    Menu Name: Add Followers (act windows)
 
41
 
 
42
    How to Use:
 
43
    
 
44
        First you user need a groups, this groups is Add Followers/Managers 
 
45
 
 
46
        Select the tree view all the documents to which you want to enter other followers
 
47
 
 
48
        Select at the actions of the option window "Add followers"
 
49
 
 
50
        The message already includes all projects which will be added as a follower
 
51
 
 
52
        It has the option of adding followers by "mail.group", "res.partner" or both playing with chebox to select which you want
 
53
 
 
54
        After all followers precionar selected the option to add followers and an email will be sent to each of them advising that they have been added to these documents (this may take a few seconds) 
 
55
            
 
56
    """,
 
57
    "website" : "http://www.vauxoo.com/",
 
58
    "license" : "AGPL-3",
 
59
    "depends" : ["project"],
 
60
    "init_xml" : [],
 
61
    "demo_xml" : [],
 
62
    "update_xml" : [
 
63
        'wizard/add_followers_view.xml',
 
64
    ],
 
65
    "installable" : True,
 
66
    "active" : False,
 
67
}