2018-01-16 06:58:15 +01:00
|
|
|
-
|
|
|
|
In order to test the PDF reports defined on a l10n_fr, we will print an Account Move Line Report for l10n_fr
|
|
|
|
-
|
|
|
|
!python {model: account.move.line, id: False}: |
|
|
|
|
import os
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import tools
|
2018-01-16 06:58:15 +01:00
|
|
|
data, format = self.env.ref('l10n_fr.report_l10nfrbilan').render([], data={'model':'account.move.line', 'form':{'fiscalyear_id': ref('account.data_fiscalyear')}})
|
|
|
|
if tools.config['test_report_directory']:
|
|
|
|
open(os.path.join(tools.config['test_report_directory'], 'l10n_fr-bilan_report.'+format), 'wb+').write(data)
|
|
|
|
|
|
|
|
-
|
|
|
|
In order to test the PDF reports defined on a l10n_fr, we will print a Compute Resultant Report for l10n_fr
|
|
|
|
-
|
|
|
|
!python {model: account.move.line}: |
|
|
|
|
import os
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import tools
|
2018-01-16 06:58:15 +01:00
|
|
|
data, format = self.env.ref('l10n_fr.report_l10nfrresultat').render([], data={'model':'account.move.line', 'form':{'fiscalyear_id': ref('account.data_fiscalyear')}})
|
|
|
|
if tools.config['test_report_directory']:
|
|
|
|
open(os.path.join(tools.config['test_report_directory'], 'l10n_fr-compute_resultant_report.'+format), 'wb+').write(data)
|