~unifield-team/unifield-wm/us-826

« back to all changes in this revision

Viewing changes to msf_outgoing/__openerp__.py

UF-358 [ADD] Initial creation : backup of this day

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) 2011 MSF, TeMPO Consulting
6
 
#
7
 
#    This program is free software: you can redistribute it and/or modify
8
 
#    it under the terms of the GNU Affero General Public License as
9
 
#    published by the Free Software Foundation, either version 3 of the
10
 
#    License, or (at your option) any later version.
11
 
#
12
 
#    This program is distributed in the hope that it will be useful,
13
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
#    GNU Affero General Public License for more details.
16
 
#
17
 
#    You should have received a copy of the GNU Affero General Public License
18
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
#
20
 
##############################################################################
21
 
{
22
 
    "name" : "MSF Outgoing Management",
23
 
    "version" : "0.1",
24
 
    "author" : "MSF, TeMPO Consulting",
25
 
    "developer": "pam",
26
 
    "category" : "Generic Modules/Inventory Control",
27
 
    "description": """
28
 
        MSF module covering business needs for outgoing movement from
29
 
        an MSF instance.
30
 
 
31
 
        Three main phases are used to describe the process:
32
 
            - PICKING
33
 
            - PACKING
34
 
            - SHIPMENT
35
 
        """,
36
 
    'website': 'http://www.unifield.org',
37
 
    'init_xml': [],
38
 
    "depends" : ["stock",
39
 
                 "purchase",
40
 
                 "sale",
41
 
                 "product_asset",
42
 
                 "kit",
43
 
                 "order_line_number",
44
 
                 "reason_types_moves",
45
 
                 "specific_rules",
46
 
                 "msf_order_date",
47
 
                 "stock_override",
48
 
                 "unifield_setup",
49
 
                 ],
50
 
    'update_xml': [
51
 
        'data/msf_outgoing_data.xml',
52
 
        'outgoing_sequence.xml',
53
 
        'security/ir.model.access.csv',
54
 
        'msf_outgoing_view.xml',
55
 
        'wizard/create_picking_view.xml',
56
 
        'wizard/stock_partial_move_view.xml',
57
 
        'wizard/split_memory_move_view.xml',
58
 
        'wizard/shipment_view.xml',
59
 
        'msf_outgoing_report.xml',
60
 
        'msf_outgoing_workflow.xml',
61
 
    ],
62
 
    "demo_xml": ['data/msf_outgoing_data.xml',
63
 
                 ],
64
 
    'test': ['test/data.yml',
65
 
             'test/msf_outgoing.yml'
66
 
    ],
67
 
    'installable': True,
68
 
}
69
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: