~openbias/bias-trunk/bias-public-trunk

« back to all changes in this revision

Viewing changes to bias_print_forms/__openerp__.py

  • Committer: Jose Patricio
  • Date: 2011-10-19 03:16:40 UTC
  • Revision ID: josepato@bias.com.mx-20111019031640-05zd7r5lxwx084qu
el push inicial

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': 'Customization Bias',
 
26
    'version': '1.0',
 
27
    'category': 'Generic Modules/Prints',
 
28
    'description': """Bias Print Forms Module""",
 
29
    'author': 'BIAS',
 
30
    "website" : "http://www.bias.com.mx",
 
31
    "license" : "AGPL-3",
 
32
    'depends': ['base',
 
33
##                'account',
 
34
##                'product',
 
35
                  'mrp',
 
36
                  'purchase',
 
37
                  'purchase_delivery',
 
38
                  'stock',
 
39
                  'sale',
 
40
                ],
 
41
        'data': [
 
42
        'wizard/print_installer.xml',
 
43
    ],
 
44
    'update_xml': [
 
45
#        'security/ir.model.access.csv',
 
46
#        'point_of_sale/wizard/pos_borrowing.xml',
 
47
#        'product/product_view.xml',
 
48
#        'account/account_invoice_report.xml',
 
49
#        'partners/res_partners_view.xml',
 
50
         'mrp/mrp_report.xml',
 
51
         'purchase/purchase_report.xml',
 
52
         'stock/stock_report.xml',
 
53
         'sale/sale_report.xml'
 
54
                   ],
 
55
    'installable': True,
 
56
    'active': False,
 
57
    'certificate': '',
 
58
}
 
59
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: