~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to contract_log_term_condition/__openerp__.py

  • Committer: Jose Morales
  • Date: 2014-07-28 20:00:11 UTC
  • mfrom: (543.7.551 7.0-addons-vauxoo)
  • Revision ID: jose@vauxoo.com-20140728200011-csytovehrzwp24lr
[FORWARD PORT] 7.0

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) 2004-2010 Tiny SPRL (<http://tiny.be>).
 
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' : 'Log of Terms and Conditions',
 
23
    'version' : '0.1',
 
24
    'author' : 'Vauxoo',
 
25
    'category' : '',
 
26
    'description' : """
 
27
Terms and Conditions Log
 
28
========================
 
29
- This module creates a log of all change in the Terms and Conditions fields
 
30
 in the Contract
 
31
    """,
 
32
    'website': 'http://www.vauxoo.com',
 
33
    'images' : [],
 
34
    'depends' : [
 
35
        'account_analytic_analysis',
 
36
    ],
 
37
    'data': [
 
38
    ],
 
39
    'js': [
 
40
    ],
 
41
    'qweb' : [
 
42
    ],
 
43
    'css':[
 
44
    ],
 
45
    'demo': [
 
46
    ],
 
47
    'test': [
 
48
    ],
 
49
    'installable': True,
 
50
    'auto_install': False,
 
51
}
 
52
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
53