- I first fix the demo periods (7.0 only) see https://code.launchpad.net/~acsone-openerp/openobject-addons/7.0-bug-1281579-sbi/+merge/207311 which was merged in 8.0 - !python {model: account.period}: | import time if not self.search(cr, uid, [('special', '=', False), ('fiscalyear_id', '=', ref('account.data_fiscalyear')), ('company_id', '=', ref('base.main_company'))]): cur_year = time.strftime('%Y') self.create(cr, uid, { 'code': '00/' + cur_year, 'name': 'X 00/' + cur_year, 'special': True, 'fiscalyear_id': ref('account.data_fiscalyear'), 'date_start': cur_year + '-01-01', 'date_stop': cur_year + '-01-01', 'company_id': ref('base.main_company'), }) self.write(cr, uid, ref('account.period_1'), {'special': False}) self.write(cr, uid, ref('account.period_2'), {'special': False}) self.write(cr, uid, ref('account.period_3'), {'special': False}) self.write(cr, uid, ref('account.period_4'), {'special': False}) self.write(cr, uid, ref('account.period_5'), {'special': False}) self.write(cr, uid, ref('account.period_6'), {'special': False}) self.write(cr, uid, ref('account.period_7'), {'special': False}) self.write(cr, uid, ref('account.period_8'), {'special': False}) self.write(cr, uid, ref('account.period_9'), {'special': False}) self.write(cr, uid, ref('account.period_10'), {'special': False}) self.write(cr, uid, ref('account.period_11'), {'special': False}) self.write(cr, uid, ref('account.period_12'), {'special': False}) - In order to test the PDF General Ledger webkit wizard I will print report with default setting - !python {model: account.account}: | ctx={} data_dict = {'chart_account_id':ref('account.chart0')} ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) from tools import test_reports test_reports.try_report_action(cr, uid, 'action_account_general_ledger_menu_webkit',wiz_data=data_dict, context=ctx, our_module='account_financial_report_webkit') - In order to test the PDF General Ledger webkit wizard I will print report with posted move - !python {model: account.account}: | ctx={} data_dict = {'chart_account_id':ref('account.chart0'), 'target_move': 'posted'} ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) from tools import test_reports test_reports.try_report_action(cr, uid, 'action_account_general_ledger_menu_webkit',wiz_data=data_dict, context=ctx, our_module='account_financial_report_webkit') - In order to test the PDF General Ledger webkit wizard I will print report with transactions or non zero balance - !python {model: account.account}: | ctx={} data_dict = {'chart_account_id':ref('account.chart0'), 'display_account': 'bal_mix'} ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) from tools import test_reports test_reports.try_report_action(cr, uid, 'action_account_general_ledger_menu_webkit',wiz_data=data_dict, context=ctx, our_module='account_financial_report_webkit') - In order to test the PDF General Ledger webkit wizard I will print report with inital balance and currency ammount - !python {model: account.account}: | ctx={} data_dict = {'chart_account_id':ref('account.chart0'), 'amount_currency': 1} ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) from tools import test_reports test_reports.try_report_action(cr, uid, 'action_account_general_ledger_menu_webkit',wiz_data=data_dict, context=ctx, our_module='account_financial_report_webkit') #Filter by date - In order to test the PDF General Ledger webkit wizard I will print report with inital balance and currency ammount and I filter by date of the first tree month - !python {model: account.account}: | from datetime import datetime ctx={} data_dict = {'chart_account_id':ref('account.chart0'),'amount_currency': 1, 'chart_account_id': 1, 'date_from': '%s-01-01' %(datetime.now().year), 'date_to':'%s-04-01' %(datetime.now().year), 'display_account': 'bal_all', 'filter': 'filter_date',} ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) from tools import test_reports test_reports.try_report_action(cr, uid, 'action_account_general_ledger_menu_webkit',wiz_data=data_dict, context=ctx, our_module='account_financial_report_webkit') - In order to test the PDF General Ledger webkit wizard I will print report with inital balance and currency ammount and I filter by date of the first tree month - !python {model: account.account}: | from datetime import datetime ctx={} data_dict = {'chart_account_id':ref('account.chart0'),'amount_currency': 1, 'chart_account_id': 1, 'date_from': '%s-01-01' %(datetime.now().year), 'date_to':'%s-04-01' %(datetime.now().year), 'display_account': 'bal_all', 'filter': 'filter_date',} ctx.update({'model': 'account.account','active_ids':[ref('account.chart0')],'active_id':ref('account.chart0')}) from tools import test_reports test_reports.try_report_action(cr, uid, 'action_account_general_ledger_menu_webkit',wiz_data=data_dict, context=ctx, our_module='account_financial_report_webkit') # I still have to parse report content but for this I need accounting data on multiple exercises and faor all fiscal year