1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# -*- encoding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# 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/>.
#
##############################################################################
{
"name":"Board for DM users",
"version":"1.0",
"author":"Tiny",
"category":"Board/Direct Marketing",
"depends":[
"board",
# "project", cause board needs project and projects are introduced from retro planning
# "dm", retro_planning depends on project and dm
"dm_retro_planning",
],
"demo_xml":[
# "board_dm_demo.xml",
],
"update_xml":[
"board_campaign_manager_view.xml",
"board_customer_manager_view.xml",
"board_manufacturing_manager_view.xml",
"board_dtp_manager_view.xml",
"board_item_manager_view.xml",
"board_offer_manager_view.xml",
],
"description": """
This module implements a dashboard for campaign manager that includes:
* List of campaigns that have started at max 2 month ago and those that will start in the 2 month to come
* List of the tasks of the day
* List of the tasks with a deadline passed
This module implements a dashboard for offer manager that includes:
* Offers
* Offer Ideas
""",
"active":False,
"installable":True,
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|