892.13.1
by matthieu.choplin at msf
New module for useability requirements about menus and dashboard. Slide 4 of the ppt Menus and Dashboard.ppt done |
1 |
# -*- coding: utf-8 -*-
|
2 |
##############################################################################
|
|
3 |
#
|
|
4 |
# OpenERP, Open Source Management Solution
|
|
5 |
# Copyright (C) 2011 TeMPO Consulting, MSF
|
|
6 |
#
|
|
7 |
# This program is free software: you can redistribute it and/or modify
|
|
8 |
# it under the terms of the GNU Affero General Public License as
|
|
9 |
# published by the Free Software Foundation, either version 3 of the
|
|
10 |
# License, or (at your option) any later version.
|
|
11 |
#
|
|
12 |
# This program is distributed in the hope that it will be useful,
|
|
13 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15 |
# GNU Affero General Public License for more details.
|
|
16 |
#
|
|
17 |
# You should have received a copy of the GNU Affero General Public License
|
|
18 |
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
19 |
#
|
|
20 |
##############################################################################
|
|
21 |
||
22 |
{
|
|
23 |
"name": "Transport management", |
|
24 |
"version": "1.0", |
|
25 |
"depends": [ |
|
26 |
"sale", |
|
27 |
"purchase", |
|
892.13.8
by matthieu.choplin at msf
warehouse dashboard done (slide 12) |
28 |
"stock", |
892.13.3
by matthieu.choplin at msf
slide 6 done (purchase dashboard) and reorganizing files |
29 |
"product_attributes", |
30 |
"product_asset", |
|
31 |
"product_nomenclature", |
|
32 |
"tender_flow", |
|
892.13.4
by matthieu.choplin at msf
finishing slide 8 (purchase menu) |
33 |
"purchase_followup", |
892.13.5
by matthieu.choplin at msf
do slide 10 (order menus) |
34 |
"sales_followup", |
892.13.4
by matthieu.choplin at msf
finishing slide 8 (purchase menu) |
35 |
"supplier_catalogue", |
892.13.8
by matthieu.choplin at msf
warehouse dashboard done (slide 12) |
36 |
"procurement_request", |
37 |
"procurement", |
|
1038.11.1
by matthieu.choplin at msf
change the menu as requested in uf-1248 |
38 |
"mission_stock", |
892.13.1
by matthieu.choplin at msf
New module for useability requirements about menus and dashboard. Slide 4 of the ppt Menus and Dashboard.ppt done |
39 |
],
|
40 |
"author": "TeMPO Consulting, MSF", |
|
41 |
"website": "", |
|
42 |
"category": "Useability", |
|
43 |
"description": """ |
|
44 |
This module aims at redefining the dashboards and menus for more useability.
|
|
45 |
""", |
|
46 |
"init_xml": [ |
|
47 |
],
|
|
48 |
'update_xml': [ |
|
49 |
"menu/main_menu.xml", |
|
1071.2.3
by matthieu.choplin at msf
redisplaying the menu directly (it needed to delete the initial one and to create an other one with a new id) |
50 |
"menu/supply_config_menu.xml", |
892.13.3
by matthieu.choplin at msf
slide 6 done (purchase dashboard) and reorganizing files |
51 |
"menu/product_menu.xml", |
892.13.4
by matthieu.choplin at msf
finishing slide 8 (purchase menu) |
52 |
"menu/purchase_menu.xml", |
53 |
"menu/warehouse_menu.xml", |
|
54 |
"menu/partner_menu.xml", |
|
892.13.5
by matthieu.choplin at msf
do slide 10 (order menus) |
55 |
"menu/sale_menu.xml", |
56 |
"menu/hidden_menu.xml", |
|
1016.5.7
by matthieu.choplin at msf
Add the menu 'Product categories' in the menu 'Miscellaneous' of the Accounting/configuration menu |
57 |
"menu/accounting_menu.xml", |
892.13.4
by matthieu.choplin at msf
finishing slide 8 (purchase menu) |
58 |
|
892.13.3
by matthieu.choplin at msf
slide 6 done (purchase dashboard) and reorganizing files |
59 |
"view/purchase_view.xml", |
1016.5.12
by matthieu.choplin at msf
In FO search view: I remove the default Responsible filter (leave it blank) according to a doc in Jira issue 1146. |
60 |
"view/sale_view.xml", |
1016.5.15
by matthieu.choplin at msf
complete the requirement on menus: rename and reorganize architecture of menus |
61 |
"view/shop_view.xml", |
892.13.4
by matthieu.choplin at msf
finishing slide 8 (purchase menu) |
62 |
|
892.13.3
by matthieu.choplin at msf
slide 6 done (purchase dashboard) and reorganizing files |
63 |
"dashboard/board_purchase_view.xml", |
892.13.5
by matthieu.choplin at msf
do slide 10 (order menus) |
64 |
"dashboard/board_sale_view.xml", |
892.13.8
by matthieu.choplin at msf
warehouse dashboard done (slide 12) |
65 |
"dashboard/board_warehouse_view.xml", |
892.13.1
by matthieu.choplin at msf
New module for useability requirements about menus and dashboard. Slide 4 of the ppt Menus and Dashboard.ppt done |
66 |
],
|
67 |
'demo_xml': [ |
|
68 |
],
|
|
69 |
'test': [ |
|
70 |
],
|
|
71 |
'installable': True, |
|
72 |
'active': False, |
|
73 |
}
|