[FIX] l10n_ch : YML for report test corrected

bzr revid: ach@tinyerp.com-20100917140447-boby81bpcvhfg1cr
This commit is contained in:
Anup (OpenERP) 2010-09-17 19:34:47 +05:30
parent 98aeaf06ed
commit 8cfba5e4ab
1 changed files with 4 additions and 4 deletions

View File

@ -1,17 +1,17 @@
-
In order to test the PDF reports defined on a l10n_ch, we will print a bvr_report
In order to test the PDF reports defined on a l10n_ch, we will print BVR Report
-
!python {model: account.invoice}: |
import netsvc, tools, os
(data, format) = netsvc.LocalService('report.l10n_ch.bvr').create(cr, uid, [ref('account.test_invoice_1')], {}, {})
if tools.config['test_report_directory']:
file(os.path.join(tools.config['test_report_directory'], 'l10ch-bvr_order.'+format), 'wb+').write(data)
file(os.path.join(tools.config['test_report_directory'], 'l10ch-bvr_report.'+format), 'wb+').write(data)
-
In order to test the PDF reports defined on a l10n_ch, we will print a bvr_invoice_report
In order to test the PDF reports defined on a l10n_ch, we will print a BVR Invoice Report
-
!python {model: account.invoice}: |
import netsvc, tools, os
(data, format) = netsvc.LocalService('report.l10n_ch.invoice.bvr').create(cr, uid, [ref('account.test_invoice_1')], {}, {})
if tools.config['test_report_directory']:
file(os.path.join(tools.config['test_report_directory'], 'l10ch-bvr_invoice.'+format), 'wb+').write(data)
file(os.path.join(tools.config['test_report_directory'], 'l10ch-bvr_invoice_report.'+format), 'wb+').write(data)