~syleam/syleam-modules/6.1

« back to all changes in this revision

Viewing changes to wms_transfer/__openerp__.py

  • Committer: Sebastien LANGE
  • Date: 2012-11-13 21:16:25 UTC
  • Revision ID: git-v1:3f638c30fde5da87f353643c160ff304e56eba34
[IMP] Add Syleam modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    wms_transfer module for OpenERP, Wizard for transfer product in stock in other warehouse
 
5
#    Copyright (C) 2012 SYLEAM Info Services (<http://www.syleam.fr/>)
 
6
#              Sebastien LANGE <sebastien.lange@syleam.fr>
 
7
#
 
8
#    This file is a part of wms_transfer
 
9
#
 
10
#    wms_transfer is free software: you can redistribute it and/or modify
 
11
#    it under the terms of the GNU Affero General Public License as published by
 
12
#    the Free Software Foundation, either version 3 of the License, or
 
13
#    (at your option) any later version.
 
14
#
 
15
#    wms_transfer is distributed in the hope that it will be useful,
 
16
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
#    GNU Affero General Public License for more details.
 
19
#
 
20
#    You should have received a copy of the GNU Affero General Public License
 
21
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
22
#
 
23
##############################################################################
 
24
 
 
25
{
 
26
    'name': 'Wms Transfer',
 
27
    'version': '0.1',
 
28
    'category': 'Generic Modules/Inventory Control',
 
29
    'description': """Wizard for transfer product in stock in other warehouse""",
 
30
    'author': 'SYLEAM',
 
31
    'website': 'http://www.syleam.fr/',
 
32
    'depends': [
 
33
        'base',
 
34
        'wms',
 
35
    ],
 
36
    'init_xml': [],
 
37
    'images': [],
 
38
    'update_xml': [
 
39
        'wizard/warehouse_transfer_view.xml',
 
40
        'wms_view.xml',
 
41
        #'security/groups.xml',
 
42
        #'security/ir.model.access.csv',
 
43
        #'wizard/wizard.xml',
 
44
    ],
 
45
    'demo_xml': [],
 
46
    'test': [],
 
47
    'installable': True,
 
48
    'active': False,
 
49
    'license': 'AGPL-3',
 
50
}
 
51
 
 
52
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: