~kinner-vachhani/sale-wkfl/lp-1317035

« back to all changes in this revision

Viewing changes to sale_line_description/__openerp__.py

  • Committer: Joel Grand-Guillaume
  • Author(s): Alex Comba
  • Date: 2013-11-15 15:26:51 UTC
  • mfrom: (19.3.7 adding_sale_line_description_7)
  • Revision ID: joel.grandguillaume@camptocamp.com-20131115152651-g1vokg105spgn3fo
[MRG] [ADD] module sale_line_description

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2013 Agile Business Group sagl
 
5
#    (<http://www.agilebg.com>)
 
6
#    @author Alex Comba <alex.comba@agilebg.com>
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU Affero General Public License as published
 
10
#    by the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU Affero General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU Affero General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
{
 
23
    'name': "Sale line description",
 
24
    'version': '0.1',
 
25
    'category': 'Sales Management',
 
26
    'description': """
 
27
This module allows to use only the product description on the sale order lines.
 
28
To do so, the user has to belong to group_use_product_description_per_so_line.
 
29
This is possible by selecting the related option in the following menu:
 
30
 
 
31
Settings --> Configuration --> Sale --> Sale Features
 
32
    """,
 
33
    'author': 'Agile Business Group',
 
34
    'website': 'http://www.agilebg.com',
 
35
    'license': 'AGPL-3',
 
36
    "depends": [
 
37
        'sale',
 
38
    ],
 
39
    "data": [
 
40
        'security/sale_security.xml',
 
41
        'res_config_view.xml',
 
42
    ],
 
43
    "active": False,
 
44
    "installable": True
 
45
}