~openerp-commiter/openobject-addons/stable-sja-branch

« back to all changes in this revision

Viewing changes to profile_business_game/__terp__.py

  • Committer: sja-axelor
  • Date: 2009-10-13 09:52:57 UTC
  • Revision ID: suniljagyasi@gmail.com-20091013095257-8u26ww0r20z9y6ey
add

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
 
6
#    $Id$
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
 
 
24
{
 
25
    'name': 'Bussiness Game',
 
26
    'version': '1.0',
 
27
    'category': 'Profile',
 
28
    'description': """
 
29
    This business game will help you to discover Open ERP and it's enterprise management processes.
 
30
The game is based on a company called 'GoodSound' selling audio and video hardware and organising sonorisation events.
 
31
 
 
32
The game is structured into two phases:
 
33
   1. You will discover the Open ERP interface through a complete sale flow: from the quotation to the invoice,
 
34
   2. The goal of the next phase is to make some strategic choices in the system to increase company's profitability
 
35
      within a few turns of one year each.
 
36
 
 
37
    """,
 
38
    'author': 'Tiny',
 
39
    'depends': [   'board',
 
40
    'base',
 
41
    'account',
 
42
    'game_scenario',
 
43
    'purchase_approve',
 
44
    'sale',
 
45
    'sale_wo_production',
 
46
    'stock_planning',
 
47
    'crm_configuration',
 
48
    'mrp_jit',
 
49
    'l10n_fr',
 
50
    'account_budget',
 
51
    'sale_forecast',
 
52
    'product_margin'],
 
53
    'init_xml': ['profile_game_data.xml', 'profile_game_scenario.xml'],
 
54
    'update_xml': [   'wizard_game_phase2.xml',
 
55
    'profile_game_phase2.xml',
 
56
    'profile_game_config.xml',
 
57
    'profile_game_account_data.xml',
 
58
    'profile_game_partner.xml',
 
59
    'profile_game_phase1.xml',
 
60
    'profile_game_product.xml',
 
61
    'security/ir.model.access.csv'],
 
62
    'demo_xml': [],
 
63
    'installable': True,
 
64
    'active': False,
 
65
    'certificate': '019274472924045',
 
66
}
 
67
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: