~vauxoo/addons-vauxoo/7.0-user_story-rev4-kty

« back to all changes in this revision

Viewing changes to account_payment_approve_invoice/__openerp__.py

[MERGE] Merge from 7.0

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) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
 
6
#    d$
 
7
###############Credits######################################################
 
8
#    Coded by: Vauxoo C.A. (Maria Gabriela Quilarque)          
 
9
#    Planified by: Nhomar Hernandez
 
10
#    Audited by: Vauxoo C.A.
 
11
##############################################################################
 
12
#    This program is free software: you can redistribute it and/or modify
 
13
#    it under the terms of the GNU General Public License as published by
 
14
#    the Free Software Foundation, either version 3 of the License, or
 
15
#    (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 General Public License for more details.
 
21
#
 
22
#    You should have received a copy of the GNU General Public License
 
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
24
#
 
25
##############################################################################
 
26
 
 
27
{
 
28
    "name" : "Payment Approve",
 
29
    "version" : "0.1",
 
30
    "depends" : [
 
31
                 "base",
 
32
                 "account",
 
33
                 ],
 
34
    "author" : "Vauxoo",
 
35
    "description" : """
 
36
Purchase Manager Payment Approve 
 
37
================================                
 
38
 
 
39
This module, allows to Purchase Manager Approve or Disapproves the pay to one invoice, through two buttons added in the supplier invoice.
 
40
 
 
41
Added message to block the invoice messaging when the invoice is Approve to Pay or Disapproves to Pay.
 
42
 
 
43
Also added permissions to buttons.
 
44
 
 
45
The description of two buttons:
 
46
    
 
47
    * Approve to Pay: Mark boolean To Pay when is activated.
 
48
 
 
49
.. image:: account_payment_approve_invoice/static/src/demo/button_approve.png
 
50
.
 
51
    * Disapproves to Pay: Uncheck boolean To Pay when is activated.
 
52
 
 
53
.. image:: account_payment_approve_invoice/static/src/demo/button_disapproves.png
 
54
 
 
55
""",
 
56
    "website" : "http://vauxoo.com",
 
57
    "category" : "Generic Modules",
 
58
    "data" : [
 
59
        "view/account_invoice_view.xml",
 
60
        "security/account_security.xml",
 
61
        "security/ir.model.access.csv",
 
62
    ],
 
63
    "demo" : [
 
64
    ],
 
65
    "test" : [
 
66
    ],
 
67
    "active": False,
 
68
    "images": [],
 
69
    "installable": True,
 
70
}