~vauxoo/addons-vauxoo/8.0-import_tax_tariff-dev-yani-rev-2

« back to all changes in this revision

Viewing changes to picking_from_invoice/__openerp__.py

  • Committer: Jose Antonio
  • Date: 2012-05-13 03:02:20 UTC
  • mto: This revision was merged to the branch mainline in revision 251.
  • Revision ID: jose@vauxoo.com-20120513030220-xl0cxvnkt0ifs070

[ADD] Added new module to generate picking from a invoice previous create

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" : "Picking from invoice generator",
 
27
    "version" : "0.1",
 
28
    "depends" : ["account",'stock'],
 
29
    "author" : "Vauxoo",
 
30
    "description" : """
 
31
    Generate multiple picking in and picking out from invoices selected
 
32
    """,
 
33
    "website" : "http://vauxoo.com",
 
34
    "category" : "Generic Modules",
 
35
    "init_xml" : [],
 
36
    "demo_xml" : [],
 
37
    "test": [ ],
 
38
    "update_xml" : [
 
39
    'wizard/picking_from_invoice_view.xml',
 
40
    
 
41
    ],
 
42
    "active": False,
 
43
    "installable": True,
 
44
}