~openerp-commiter/openobject-addons/v61.kfr

« back to all changes in this revision

Viewing changes to delivery_routes/__openerp__.py

  • Committer: Cubic ERP
  • Date: 2012-11-28 01:42:02 UTC
  • Revision ID: info@cubicerp.com-20121128014202-cyfccd49y1abuv9d
[ADD] kfr

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2011 Cubic ERP - Teradata SAC (<http://cubicerp.com>).
 
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": "Delivery Routes",
 
23
    "version": "1.0",
 
24
    "description": """
 
25
Manage delivery routes.""",
 
26
    "author": "Cubic ERP",
 
27
    "website": "http://cubicERP.com",
 
28
    "category": "Stock Management",
 
29
    "depends": [
 
30
            "delivery",
 
31
            "stock",
 
32
            "hr",
 
33
        ],
 
34
    "data":[
 
35
            "wizard/fill_picking.xml",
 
36
            "delivery_view.xml",
 
37
            "delivery_sequence.xml",
 
38
            "delivery_report.xml",
 
39
            "stock_view.xml",
 
40
            "security/ir.model.access.csv",
 
41
    ],
 
42
    "demo_xml": [ ],
 
43
    "active": False,
 
44
    "installable": True,
 
45
    "certificate" : "",
 
46
    'images': [],
 
47
}
 
48
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: