26 lines
946 B
Python
26 lines
946 B
Python
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
{
|
||
|
'name': 'Purchase Requisitions',
|
||
|
'version': '0.1',
|
||
|
'category': 'Purchases',
|
||
|
'website': 'https://www.odoo.com/page/purchase',
|
||
|
'description': """
|
||
|
This module allows you to manage your Purchase Requisition.
|
||
|
===========================================================
|
||
|
|
||
|
When a purchase order is created, you now have the opportunity to save the
|
||
|
related requisition. This new object will regroup and will allow you to easily
|
||
|
keep track and order all your purchase orders.
|
||
|
""",
|
||
|
'depends' : ['purchase'],
|
||
|
'demo': ['data/purchase_requisition_demo.xml'],
|
||
|
'data': [
|
||
|
'security/purchase_tender.xml',
|
||
|
'security/ir.model.access.csv',
|
||
|
'data/purchase_requisition_data.xml',
|
||
|
'views/purchase_requisition_views.xml',
|
||
|
'report/purchase_requisition_report.xml',
|
||
|
'report/report_purchaserequisition.xml',
|
||
|
],
|
||
|
}
|