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

« back to all changes in this revision

Viewing changes to msf_processes/__openerp__.py

  • Committer: Matthieu Dietrich
  • Date: 2012-07-10 14:12:40 UTC
  • mfrom: (913 unifield-wm)
  • mto: This revision was merged to the branch mainline in revision 935.
  • Revision ID: mdietrich@chloups211-20120710141240-celi3o016fqz7mj1
UF-881: [MERGE] merged with trunk

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 TeMPO Consulting, MSF
 
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 Processes",
 
23
    "version" : "1.0",
 
24
    "author" : "TeMPO Consulting, MSF",
 
25
    "category": "Others",
 
26
    "description": """
 
27
        Process
 
28
    """,
 
29
    "website": "http://unifield.msf.org",
 
30
    "init_xml": [],
 
31
    "depends" : ["account",
 
32
                 "procurement",
 
33
                 "sale",
 
34
                 "purchase",
 
35
                 "tender_flow",
 
36
                 "stock",
 
37
                 "msf_outgoing",
 
38
                 ],
 
39
    "update_xml": [# see process_dependencies.xmind for detail about dependencies
 
40
                   "process/ship_process.xml", #1
 
41
                   "process/draft_ship_process.xml", #2
 
42
                   "process/ppl_process.xml", #3
 
43
                   "process/picking_process.xml", #4
 
44
                   "process/outgoing_process.xml", #5
 
45
                   "process/incoming_process.xml", #6
 
46
                   "process/rfq_process.xml", #7
 
47
                   "process/purchase_process.xml", #8
 
48
                   "process/tender_process.xml", #9
 
49
                   "process/procurement_process.xml", #10
 
50
                   "process/sale_process.xml", #11
 
51
                   ],
 
52
    "demo_xml": [],
 
53
    "test": [],
 
54
    "installable": True,
 
55
    "active": False,
 
56
}