~ajite/openobject-addons/elico-7.0-add-0003

« back to all changes in this revision

Viewing changes to stock_quick_entry/__openerp__.py

  • Committer:
  • Date: 2014-04-07 11:05:57 UTC
  • Revision ID: elicoidal@hotmail.com-20140407110557-s61xq131n6f5ljj9
[ADD] several logistic modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (c) 2010-2013 Elico Corp. All Rights Reserved.
 
6
#    Author: Andy Lu <andy.lu@elico-corp.com>
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU Affero General Public License as
 
10
#    published by the Free Software Foundation, either version 3 of the
 
11
#    License, or (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 Affero General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU Affero General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
 
 
23
{
 
24
    'name': 'Quick internal move entry',
 
25
    'version': '1.0',
 
26
    'category': 'Stock',
 
27
    'sequence': 19,
 
28
    'summary': 'Quick internal move entry',
 
29
    'description': """
 
30
Quick internal move entry
 
31
==================================================
 
32
Add Quick Move Entries
 
33
    """,
 
34
    'author': 'Elico Corp',
 
35
    'website': 'http://www.elico-corp.com',
 
36
    'images': [],
 
37
    'depends': ['stock'],
 
38
    'data': [
 
39
        # 'stock_view.xml',
 
40
    ],
 
41
    'test': [],
 
42
    'demo': [],
 
43
    'installable': True,
 
44
    'auto_install': False,
 
45
    'application': False,
 
46
}
 
47
 
 
48
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: