~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to account_move_cancel/__openerp__.py

  • Committer: Jose Antonio
  • Author(s): Vauxoo
  • Date: 2012-03-27 19:17:09 UTC
  • mto: This revision was merged to the branch mainline in revision 186.
  • Revision ID: jose@vauxoo.com-20120327191709-j5out2jdy19a5yxv

[ADD] Added module to add date and time in the invoice for compute products costs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
# -*- encoding: utf-8 -*-
3
 
###########################################################################
4
 
#    Module Writen to OpenERP, Open Source Management Solution
5
 
#    Copyright (C) Vauxoo (<http://vauxoo.com>).
6
 
#    All Rights Reserved
7
 
###############Credits######################################################
8
 
#    Coded by: Vauxoo C.A.           
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 Affero 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 Affero General Public License for more details.
21
 
#
22
 
#    You should have received a copy of the GNU Affero General Public License
23
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
 
################################################################################
25
 
{
26
 
    "name" : "Account Move Cancel",
27
 
    "version" : "0.1",
28
 
    "depends" : ["account",'account_cancel'],
29
 
    "author" : "Vauxoo",
30
 
    "description" : """
31
 
    Cancels multiple invoices from a wizard and is called from other modules for direct 
32
 
    billing cancellations and cancel your withholding, withholding automatically validating 
33
 
    and maintaining the seat number that generated in its initial stage
34
 
    """,
35
 
    "website" : "http://vauxoo.com",
36
 
    "category" : "Generic Modules",
37
 
    "init_xml" : [],
38
 
    "demo_xml" : [],
39
 
    "test": [ ],
40
 
    "update_xml" : [
41
 
    'security/invoice_cancel_security.xml',
42
 
    'security/ir.model.access.csv',
43
 
    'wizard/account_move_cancel_view.xml',
44
 
    'view/invoice_view.xml', 
45
 
    
46
 
    
47
 
    
48
 
    ],
49
 
    "active": False,
50
 
    "installable": True,
51
 
}