~argilsoft/+junk/argil_invoice_payment_ext

« back to all changes in this revision

Viewing changes to __openerp__.py

  • Committer: Israel CA
  • Date: 2015-04-07 20:16:19 UTC
  • Revision ID: israel.cruz.argil@gmail.com-20150407201619-4m1hl2xxhvpjjod6
Importacion Inicial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
###########################################################################
 
3
#    Module Writen to OpenERP, Open Source Management Solution
 
4
#
 
5
#    Copyright (c) 2014 Argil Consulting - http://www.argil.mx
 
6
############################################################################
 
7
#    Coded by: Israel Cruz Argil (israel.cruz@argil.mx)
 
8
############################################################################
 
9
#
 
10
#    This program is free software: you can redistribute it and/or modify
 
11
#    it under the terms of the GNU Affero General Public License as
 
12
#    published by the Free Software Foundation, either version 3 of the
 
13
#    License, or (at your option) any later version.
 
14
#
 
15
#    This program is distributed in the hope that it will be useful,
 
16
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
#    GNU Affero General Public License for more details.
 
19
#
 
20
#    You should have received a copy of the GNU Affero General Public License
 
21
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
22
#
 
23
##############################################################################
 
24
 
 
25
{   
 
26
    "name" : "Account Invoice Payment Extension",
 
27
    "version" : "1.0",
 
28
    "category" : "Account",
 
29
    'complexity': "Easy",
 
30
    "author" : "Argil Consulting",
 
31
    "website": "http://www.argil.mx",
 
32
    "depends" : ["account"],
 
33
    "description": """
 
34
Account Invoice Payment Extension
 
35
=================================
 
36
 
 
37
This module adds wizard to Customer / Supplier Invoices List View to create Payment for several Invoices.
 
38
""",
 
39
    "data" : ["account_invoice_payment_view.xml"],
 
40
    'installable': True,
 
41
    'auto_install': False,
 
42
}
 
43
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
44