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

« back to all changes in this revision

Viewing changes to msf_outgoing/__openerp__.py

  • Committer: jf
  • Date: 2011-03-23 13:23:55 UTC
  • Revision ID: jf@tempo4-20110323132355-agyf1soy7m5ewatr
Initial Import

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/stock_partial_move_view.xml',
56
 
        'wizard/split_memory_move_view.xml',
57
 
        'wizard/shipment_view.xml',
58
 
        'wizard/picking_processor_view.xml',
59
 
        'wizard/incoming_shipment_processor_view.xml',
60
 
        'wizard/split_move_processor_view.xml',
61
 
        'wizard/create_picking_processor_view.xml',
62
 
        'wizard/validate_picking_processor_view.xml',
63
 
        'wizard/ppl_processor_view.xml',
64
 
        'wizard/shipment_processor_view.xml',
65
 
        'wizard/return_ppl_processor_view.xml',
66
 
        'wizard/return_shipment_processor_view.xml',
67
 
        'wizard/internal_move_processor_view.xml',
68
 
        'wizard/outgoing_delivery_processor_view.xml',
69
 
        'wizard/return_pack_shipment_processor_view.xml',
70
 
        'msf_outgoing_report.xml',
71
 
        'msf_outgoing_workflow.xml',
72
 
    ],
73
 
    "demo_xml": ['data/msf_outgoing_data.xml',
74
 
                 ],
75
 
    'test': ['test/data.yml',
76
 
             'test/msf_outgoing.yml'
77
 
    ],
78
 
    'installable': True,
79
 
}
80
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: