~vauxoo/addons-vauxoo/7.0-changes-in-openerp-alan

648.1.1 by Fernando.rangel
[ADD][invoice_date_ref]add field date ref
1
# -*- encoding: utf-8 -*-
648.1.2 by Fernando.rangel
[IMP][invoice_date_ref]autopep8 in files
2
#
648.1.1 by Fernando.rangel
[ADD][invoice_date_ref]add field date ref
3
#    Module Writen to OpenERP, Open Source Management Solution
4
#
648.1.2 by Fernando.rangel
[IMP][invoice_date_ref]autopep8 in files
5
#    Copyright (c) 2013 Vauxoo - http://www.vauxoo.com/
648.1.1 by Fernando.rangel
[ADD][invoice_date_ref]add field date ref
6
#    All Rights Reserved.
7
#    info Vauxoo (info@vauxoo.com)
648.1.2 by Fernando.rangel
[IMP][invoice_date_ref]autopep8 in files
8
#
9
#    Coded by: Rangel (fernando.rangel@vauxoo.com)
10
#
648.1.1 by Fernando.rangel
[ADD][invoice_date_ref]add field date ref
11
#
12
#    This program is free software: you can redistribute it and/or modify
13
#    it under the terms of the GNU Affero General Public License as
14
#    published by the Free Software Foundation, either version 3 of the
15
#    License, or (at your option) any later version.
16
#
17
#    This program is distributed in the hope that it will be useful,
18
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
19
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
#    GNU Affero General Public License for more details.
21
#
22
#    You should have received a copy of the GNU Affero General Public License
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
#
648.1.2 by Fernando.rangel
[IMP][invoice_date_ref]autopep8 in files
25
#
648.1.1 by Fernando.rangel
[ADD][invoice_date_ref]add field date ref
26
{
1143 by alan guzman
[IMP] changes in files __openerp__.py on modules
27
    "name": "Invoice Data", 
28
    "version": "1.0", 
29
    "author": "Vauxoo", 
30
    "category": "Generic Modules", 
31
    "description": """ 
648.1.5 by Fernando.rangel
[IMP][invoice_date_ref]addes description in __openerp__.py
32
    The module invoice_date_ref adds the field  date_info in invoice,
33
    this fields is informative only
1143 by alan guzman
[IMP] changes in files __openerp__.py on modules
34
    """, 
35
    "website": "http://www.vauxoo.com/", 
36
    "license": "AGPL-3", 
648.1.2 by Fernando.rangel
[IMP][invoice_date_ref]autopep8 in files
37
    "depends": [
1143 by alan guzman
[IMP] changes in files __openerp__.py on modules
38
        "account"
39
    ], 
40
    "demo": [], 
648.1.6 by Luis Ernesto García Medina
[REF][invoice_date_ref] add field "date_info" to search view and change string of fields "date_info" & "date_invoice"
41
    "data": [
1143 by alan guzman
[IMP] changes in files __openerp__.py on modules
42
        "invoice_date.xml"
43
    ], 
44
    "test": [], 
45
    "js": [], 
46
    "css": [], 
47
    "qweb": [], 
48
    "installable": True, 
49
    "auto_install": False
648.1.1 by Fernando.rangel
[ADD][invoice_date_ref]add field date ref
50
}
1143 by alan guzman
[IMP] changes in files __openerp__.py on modules
51
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: