~vauxoo/addons-vauxoo/addons-vauxoo-mrp_consume_produce-dev-julio

« back to all changes in this revision

Viewing changes to sale_line_import/__openerp__.py

  • Committer: moylop260
  • Date: 2012-07-23 20:15:37 UTC
  • mfrom: (0.7.8 julio-dev-import-sol)
  • Revision ID: moylop260@vauxoo.com-20120723201537-hgx6fxm8mkedkpfp
[MERGE] [sale_line_import] Seudo-merge from module sale_line_import

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- encoding: utf-8 -*-
2
 
###########################################################################
3
 
#    Module Writen to OpenERP, Open Source Management Solution
4
 
#
5
 
#    Copyright (c) 2012 Vauxoo - http://www.vauxoo.com
6
 
#    All Rights Reserved.
7
 
#    info@vauxoo.com
8
 
############################################################################
9
 
#    Coded by: julio (julio@vauxoo.com)
10
 
############################################################################
11
 
#
12
 
#    This program is free software: you can redistribute it and/or modify
13
 
#    it under the terms of the GNU Affero General Public License as
14
 
#    published by the Free Software Foundation, either version 3 of the
15
 
#    License, or (at your option) any later version.
16
 
#
17
 
#    This program is distributed in the hope that it will be useful,
18
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 
#    GNU Affero General Public License for more details.
21
 
#
22
 
#    You should have received a copy of the GNU Affero General Public License
23
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
 
#
25
 
##############################################################################
26
 
 
27
 
{
28
 
    "name": "Sale Line Import",
29
 
    "version": "1.1",
30
 
    "author" : "Vauxoo",
31
 
    "category": "Generic Modules/Product",
32
 
    "website" : "http://www.vauxoo.com/",
33
 
    "description": """Import a CSV file to lines of Sale Order
34
 
    """,
35
 
    'depends': ['sale'],
36
 
    'init_xml': [],
37
 
    'update_xml': ['wizard/sale_line_import_view.xml'],
38
 
    'demo_xml': [],
39
 
    'test': [],
40
 
    'installable': True,
41
 
    'active': False,
42
 
}
43
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: