[MERGE] merge with latest stable
[odoo/odoo.git] / addons / auction / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
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 {
24     'name': 'Auction Management',
25     'version': '1.0',
26     'category': 'Generic Modules/Auction',
27     'description': """
28      This module manages the records of the artists,
29      the articles to be put up for auction,the buyers and
30      sellers.
31
32      It completely manages an auction such as managing bids,
33      keeping track of the sold articles along with the paid
34      and unpaid objects including delivery of the articles.
35      Dashboards for auction that includes:
36        * My Latest Objects (list)
37        * My Latest Deposits (list)
38        * Objects Statistics (list)
39        * My Objects By Day (list)
40     """,
41     'author': 'OpenERP SA',
42     'depends': ['base', 'account', 'hr_attendance'],
43     'init_xml': ['auction_sequence.xml', 'auction_data.xml'],
44     'update_xml': [
45         'security/auction_security.xml',
46         'security/ir.model.access.csv',
47         'wizard/auction_lots_make_invoice_buyer_view.xml',
48         'wizard/auction_lots_make_invoice_view.xml',
49         'wizard/auction_taken_view.xml',
50         'wizard/auction_lots_auction_move_view.xml',
51         'wizard/auction_pay_buy_view.xml',
52         'wizard/auction_lots_sms_send_view.xml',
53         'wizard/auction_catalog_flagey_view.xml',
54         'wizard/auction_lots_buyer_map_view.xml',
55         'auction_view.xml',
56         'auction_report.xml',
57         'report/report_auction_view.xml',
58         'auction_wizard.xml',
59         'board_auction_view.xml',
60
61     ],
62     'demo_xml': ['auction_demo.xml','board_auction_demo.xml'],
63     'test': ['test/auction.yml',
64              'test/auction_report.yml',
65              ],
66
67     'installable': True,
68     'active': False,
69     'certificate': '0039333102717',
70 }
71 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: