~pedro-q/account-payment/account-payment-sepa-7.0

« back to all changes in this revision

Viewing changes to purchase_payment/__openerp__.py

  • Committer: Borja L.S.
  • Date: 2010-07-12 16:41:14 UTC
  • Revision ID: borjals@pexego.es-20100712164114-2fly2xfqbcj9wwkm
[ADD] purchase_payment: New module that adds payment info to the purchases.
  
  Features:
  
  - Adds payment type, terms, and bank account to the  
    purchase orders.
  
  - Allows to set different default payment terms for purchases (the partners
    will have payment terms and supplier payment terms).
  
  - The payment terms, payment type and bank account default values for the
    purchase will be taken from the partner.
  
  - Invoices created from purchase orders, or from pickings related to purchase
    orders, will inherit this payment info from the payment order.
(lp:openobject-addons/extra-trunk rev 4686)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (c) 2010 Pexego S.L. (http://www.pexego.es) All Rights Reserved.
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU General Public License as published by
 
9
#    the Free Software Foundation, either version 3 of the License, or
 
10
#    (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 General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
{
 
22
    "name" : "Purchase Payment Type and Terms",
 
23
    "version" : "1.0",
 
24
    "author" : "Pexego",
 
25
    "website": "www.pexego.es",
 
26
    "license" : "GPL-3",
 
27
    "category" : 'Generic Modules/Sales & Purchases',
 
28
    "description": """Adds payment info to the purchase process.
 
29
 
 
30
Adds payment type, terms, and bank account to the purchase orders.
 
31
 
 
32
Allows to set different default payment terms for purchases (the partners
 
33
will have payment terms and supplier payment terms).
 
34
 
 
35
The payment terms, payment type and bank account default values for the
 
36
purchase will be taken from the partner.
 
37
 
 
38
Invoices created from purchase orders, or from pickings related to purchase
 
39
orders, will inherit this payment info from the payment order.
 
40
""",
 
41
    "depends" : [
 
42
            "account_payment",
 
43
            "account_payment_extension",
 
44
            "purchase",
 
45
            "stock",
 
46
        ],
 
47
    "init_xml" : [],
 
48
    "demo_xml" : [],
 
49
    "update_xml" : [
 
50
            "purchase_payment_view.xml",
 
51
        ],
 
52
    "active": False,
 
53
    "installable": True
 
54
}