~vauxoo/addons-vauxoo/7.0_test_hr_expense_dev_jorge

« back to all changes in this revision

Viewing changes to account_wizard_vouchers_invoice/__openerp__.py

  • Committer: Jorge Angel Naranjo Rogel
  • Date: 2013-07-23 23:59:51 UTC
  • mto: This revision was merged to the branch mainline in revision 768.
  • Revision ID: jorge_nr@vauxoo.com-20130723235951-lwrug239c5lx1qwn
[IMP][account_vouchers_invoice_wizard] Added description in this module account_vouchers_invoice_wizard and applied format autopep8 in files .py

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- encoding: utf-8 -*-
2
 
###########################################################################
 
2
#
3
3
#    Module Writen to OpenERP, Open Source Management Solution
4
4
#
5
5
#    Copyright (c) 2010 Vauxoo - http://www.vauxoo.com/
6
6
#    All Rights Reserved.
7
7
#    info Vauxoo (info@vauxoo.com)
8
 
############################################################################
 
8
#
9
9
#    Coded by: Luis Torres (luis_t@vauxoo.com)
10
 
############################################################################
 
10
#
11
11
#
12
12
#    This program is free software: you can redistribute it and/or modify
13
13
#    it under the terms of the GNU Affero General Public License as
22
22
#    You should have received a copy of the GNU Affero General Public License
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
24
#
25
 
##############################################################################
 
25
#
26
26
{
27
 
    "name" : "Wizard Vouchers Partner Invoice",
28
 
    "author" : "Vauxoo",
29
 
    "version" : "1.0",
30
 
    "category" : "Generic Modules",
31
 
    "depends" : [
 
27
    "name": "Wizard Vouchers Partner Invoice",
 
28
    "author": "Vauxoo",
 
29
    "version": "1.0",
 
30
    "category": "Generic Modules",
 
31
    "description" : """
 
32
Wizard Vouchers Partner Invoice
 
33
===============================
 
34
 
 
35
This wizard is used when you make advances to suppliers,
 
36
without even the invoice issued. With this wizard you can
 
37
relate the payments that have already been made ​​to the
 
38
bill to which must belong, in turn making reconciliation of
 
39
payment with invoice
 
40
""",
 
41
    "depends": [
32
42
        "account_voucher",
33
 
        ],
34
 
    "demo" : [],
35
 
    "data" : [
 
43
    ],
 
44
    "demo": [],
 
45
    "data": [
36
46
        #~ "account_voucher_view.xml",
37
47
        "wizard/vouchers_partner_invoice.xml",
38
 
        ],
 
48
    ],
39
49
    'js': [],
40
 
    'qweb' : [],
41
 
    'css':[],
 
50
    'qweb': [],
 
51
    'css': [],
42
52
    'test': [],
43
53
    "active": False,
44
54
    "installable": True
45
55
}
46
56
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
47