~s-chazallet/sale-wkfl/7.0

« back to all changes in this revision

Viewing changes to sale_delivery_term/__openerp__.py

  • Committer: Alexandre Fayolle
  • Author(s): lorenzo.battistini at agilebg
  • Date: 2013-03-18 11:27:13 UTC
  • mfrom: (9.1.13 adding_sale_delivery_term_7)
  • Revision ID: alexandre.fayolle@camptocamp.com-20130318112713-cnvkpv6ls5c7w31r
[MRG] add sale_multi_picking and sale_delivery_term addons

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#    
 
4
#    Copyright (C) 2012 Agile Business Group sagl (<http://www.agilebg.com>)
 
5
#    Copyright (C) 2012 Domsense srl (<http://www.domsense.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 published
 
9
#    by the Free Software Foundation, either version 3 of the License, or
 
10
#    (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 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': "Sale delivery terms",
 
23
    'version': '0.1',
 
24
    'category': 'Sales Management',
 
25
    'description': """
 
26
Delivery term for sale orders.
 
27
You can configure delivery terms specifying the quantity percentage and the delay for every term line.
 
28
You can then associate the term to the 'main' order line and generate the 'detailed' order lines which in turn will generate several pickings according to delivery term (thanks to 'sale_multi_picking' module).
 
29
""",
 
30
    'author': 'Agile Business Group',
 
31
    'website': 'http://www.agilebg.com',
 
32
    'license': 'AGPL-3',
 
33
    "depends" : ['sale_multi_picking'],
 
34
    "data" : [
 
35
        'sale_view.xml',
 
36
        'security/ir.model.access.csv',
 
37
        ],
 
38
    'test': [
 
39
        'test/sale_order_demo.yml',
 
40
        ],
 
41
    "demo" : ['sale_demo.xml'],
 
42
    "active": False,
 
43
    "installable": True
 
44
}