[FIX] purchase : YML and __openerp__.py files corrected

bzr revid: ach@tinyerp.com-20100917072211-jx7waxcmzjgppj4b
This commit is contained in:
Anup (OpenERP) 2010-09-17 12:52:11 +05:30
parent 86803a81d4
commit f183f4863f
2 changed files with 9 additions and 0 deletions

View File

@ -60,6 +60,7 @@
'test/purchase_from_picking.yml',
'purchase_unit_test.xml',
'test/procurement_buy.yml',
'test/purchase_report.yml',
],
'demo': ['purchase_demo.xml'],
'installable': True,

View File

@ -6,3 +6,11 @@
(data, format) = netsvc.LocalService('report.purchase.quotation').create(cr, uid, [ref('purchase.order_purchase1'),ref('purchase.order_purchase2')], {}, {})
if tools.config['test_report_directory']:
file(os.path.join(tools.config['test_report_directory'], 'purchase-request_quotation'+format), 'wb+').write(data)
-
In order to test the PDF reports defined on a Purchase Order, we will print Purchase Order report
-
!python {model: purchase.order}: |
import netsvc, tools, os
(data, format) = netsvc.LocalService('report.purchase.order').create(cr, uid, [ref('purchase.order_purchase1'),ref('purchase.order_purchase2')], {}, {})
if tools.config['test_report_directory']:
file(os.path.join(tools.config['test_report_directory'], 'purchase-purchase_order_report'+format), 'wb+').write(data)