~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to purchase_requisition_make_po/__openerp__.py

  • Committer: Jose Antonio
  • Date: 2012-06-13 22:24:45 UTC
  • mto: This revision was merged to the branch mainline in revision 312.
  • Revision ID: jose@vauxoo.com-20120613222445-ybndycdaaw2puqyz

[ADD] Add wizard to add incidences from xls field

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 ##############################################################################
2
 
#
3
 
#    OpenERP, Open Source Management Solution
4
 
#    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
5
 
#
6
 
#    This program is free software: you can redistribute it and/or modify
7
 
#    it under the terms of the GNU Affero General Public License as
8
 
#    published by the Free Software Foundation, either version 3 of the
9
 
#    License, or (at your option) any later version.
10
 
#
11
 
#    This program is distributed in the hope that it will be useful,
12
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
#    GNU Affero General Public License for more details.
15
 
#
16
 
#    You should have received a copy of the GNU Affero General Public License
17
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
 
#
19
 
##############################################################################
20
 
{
21
 
    'name': 'Purchase Requisitions Description',
22
 
    'version': '0.1',
23
 
    'author': 'Vauxoo',
24
 
    'category': 'Purchase Management',
25
 
    'website': 'http://www.vauxoo.com',
26
 
    'description': """
27
 
This module allows you to manage your Purchase Requisition.
28
 
===========================================================
29
 
Add description on product.
30
 
 
31
 
Add analytic account on purchase requisition line, so the purchase order takes
32
 
the account analytic value from the purchase requisition.
33
 
 
34
 
Technical warning
35
 
Add method override to def make_purchase_order from purchase_requisition
36
 
""",
37
 
    'depends' : ['purchase_requisition'],
38
 
    'data': [ 'purchase_requisition_view.xml',
39
 
            ],
40
 
    'auto_install': False,
41
 
    'installable': True,
42
 
}