diff options
Diffstat (limited to 'addons/account/tests/test_account_onboarding.py')
| -rw-r--r-- | addons/account/tests/test_account_onboarding.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/addons/account/tests/test_account_onboarding.py b/addons/account/tests/test_account_onboarding.py new file mode 100644 index 00000000..c2b9c472 --- /dev/null +++ b/addons/account/tests/test_account_onboarding.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo.addons.account.tests.common import AccountTestInvoicingHttpCommon +from odoo.tests.common import tagged + + +@tagged('post_install', '-at_install') +class TestTourRenderInvoiceReport(AccountTestInvoicingHttpCommon): + + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + + cls.env.user.write({ + 'groups_id': [ + (6, 0, (cls.env.ref('account.group_account_invoice') + cls.env.ref('base.group_system')).ids), + ], + }) + + cls.out_invoice = cls.env['account.move'].create({ + 'move_type': 'out_invoice', + 'partner_id': cls.partner_a.id, + 'invoice_date': '2019-05-01', + 'date': '2019-05-01', + 'invoice_line_ids': [ + (0, 0, {'name': 'line1', 'price_unit': 100.0}), + ], + }) + cls.out_invoice.action_post() + + report_layout = cls.env.ref('web.report_layout_standard') + + cls.company_data['company'].write({ + 'primary_color': '#123456', + 'secondary_color': '#789101', + 'external_report_layout_id': report_layout.view_id.id, + }) + + cls.env.ref('account.account_invoices_without_payment').report_type = 'qweb-html' + + def test_render_account_document_layout(self): + self.start_tour('/web', 'account_render_report', login=self.env.user.login, timeout=200) |
