~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to inventory_stock_report/__openerp__.py

  • Committer: Moises Lopez
  • Date: 2014-10-09 21:30:17 UTC
  • mfrom: (879.1.7 trunk-addons-vauxoo)
  • Revision ID: moylop260@vauxoo.com-20141009213017-u3jicyg8xery3r8c
[MERGE] upforward 7.0
-Fix unused import
-Fix relative import
-Fix full path import
-Fix trailing whitespace pylint error C0303
-Fix autopep8 ignoring E501 & E128
-Fix reimported
-Fix __openerp__.py files
-Translate update

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#    Copyright (C) Vauxoo (<http://vauxoo.com>).
6
6
#    All Rights Reserved
7
7
###############Credits######################################################
8
 
#    Coded by: Vauxoo C.A.           
 
8
#    Coded by: Vauxoo C.A.
9
9
#    Planified by: Nhomar Hernandez
10
10
#    Audited by: Vauxoo C.A.
11
11
#############################################################################
22
22
#    You should have received a copy of the GNU Affero General Public License
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
24
################################################################################
25
 
 
 
25
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
26
26
{
27
 
    "name" : "l10n-co-stock-count"                                  ,
28
 
    "version" : "0.1"                                               ,
29
 
    "depends" : ['base'                                             ,
30
 
                 'stock'                                            ,
31
 
                 'product'                                          ,
32
 
                ]                                                   ,
33
 
    "author" : "Vauxoo"                                  ,
34
 
    "description" : """
 
27
    "name": "l10n-co-stock-count", 
 
28
    "version": "0.1", 
 
29
    "author": "Vauxoo", 
 
30
    "category": "Generic Modules", 
 
31
    "description": """
35
32
                - Reporte de la Hoja de Conteo de Inventario.
36
33
                - Reporte del Total de Invenatrio.
37
 
                    """                                             ,
38
 
    "website" : "http://wiki.openerp.org.ve/"                       ,
39
 
    "category" : "Generic Modules"                                  ,
40
 
    "init_xml" : [
41
 
    ]                                                               ,
42
 
    "demo_xml" : [
43
 
    ]                                                               ,
44
 
    "update_xml" : [
45
 
                'stock_report.xml'                           ,  
46
 
                'wizard/stock_count_view.xml'                           ,  
47
 
                'wizard/stock_qty_view.xml'                       ,
48
 
                
49
 
    ]                                                               ,
50
 
    "active": False                                                 ,
51
 
    "installable": True                                             ,
52
 
}
53
 
 
54
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
34
                    """, 
 
35
    "website": "http://wiki.openerp.org.ve/", 
 
36
    "license": "", 
 
37
    "depends": [
 
38
        "base", 
 
39
        "stock", 
 
40
        "product"
 
41
    ], 
 
42
    "demo": [], 
 
43
    "data": [
 
44
        "stock_report.xml", 
 
45
        "wizard/stock_count_view.xml", 
 
46
        "wizard/stock_qty_view.xml"
 
47
    ], 
 
48
    "test": [], 
 
49
    "js": [], 
 
50
    "css": [], 
 
51
    "qweb": [], 
 
52
    "installable": True, 
 
53
    "auto_install": False, 
 
54
    "active": False
 
55
}
 
 
b'\\ No newline at end of file'