~savoirfairelinux-openerp/openerp-usa/openerp-usa

« back to all changes in this revision

Viewing changes to account_cash_discount_us/account_cash_discount_us/__openerp__.py

  • Committer: Sinoj Sebastian
  • Date: 2011-12-20 08:13:31 UTC
  • Revision ID: ssebastian@novapointgroup.com-20111220081331-10la9pb56q41n8rd
Updated all modules with latest versions

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) 2011 NovaPoint Group LLC (<http://www.novapointgroup.com>)
6
 
#    Copyright (C) 2004-2010 OpenERP SA (<http://www.openerp.com>)
7
 
#
8
 
#    This program is free software: you can redistribute it and/or modify
9
 
#    it under the terms of the GNU General Public License as published by
10
 
#    the Free Software Foundation, either version 3 of the License, or
11
 
#    (at your option) any later version.
12
 
#
13
 
#    This program is distributed in the hope that it will be useful,
14
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
#    GNU General Public License for more details.
17
 
#
18
 
#    You should have received a copy of the GNU General Public License
19
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>
20
 
#
21
 
##############################################################################
22
 
 
23
 
 
24
 
{
25
 
    "name" : "Payment Term with Cash Discount",
26
 
    "version" : "1.08",
27
 
    "depends" : ["account","account_voucher_credits_us","account_cash_discount"],
28
 
    "author" : "Tiny and NovaPoint Group LLC",
29
 
    "description" : "Cash discounts, based on payment terms",
30
 
    "website" : "http://www.novapointgroup.com/",
31
 
    "category" : "Generic Modules/Accounting",
32
 
    "description": """
33
 
    This module adds cash discounts on payment terms. Cash discounts
34
 
    for a payment term can be configured with:
35
 
        * A number of days,
36
 
        * A discount (%),
37
 
        * A debit and a credit account
38
 
        * Sales and Purchase discounts are added to product and invoice line
39
 
    """,
40
 
    "init_xml" : [
41
 
    ],
42
 
    "demo_xml" : [
43
 
    ],
44
 
    "update_xml" : [
45
 
        "account_cash_discount_view.xml",
46
 
        "product_view.xml",
47
 
        "security/ir.model.access.csv",
48
 
    ],
49
 
    "active": False,
50
 
    "installable": True,
51
 
 
52
 
}
53
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
54