You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.5 KiB
67 lines
2.5 KiB
# Copyright 2018 Eficent Business and IT Consulting Services S.L.
|
|
# (http://www.eficent.com)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo.tests.common import TransactionCase
|
|
|
|
|
|
class TestCustomerActivityStatement(TransactionCase):
|
|
"""
|
|
Tests for Customer Activity Statement.
|
|
"""
|
|
def setUp(self):
|
|
super(TestCustomerActivityStatement, self).setUp()
|
|
|
|
self.res_users_model = self.env['res.users']
|
|
self.company = self.env.ref('base.main_company')
|
|
self.partner1 = self.env.ref('base.res_partner_1')
|
|
self.partner2 = self.env.ref('base.res_partner_2')
|
|
self.g_account_user = self.env.ref('account.group_account_user')
|
|
|
|
self.user = self._create_user('user_1', [self.g_account_user],
|
|
self.company).id
|
|
|
|
self.statement_model = \
|
|
self.env['report.customer_activity_statement.statement']
|
|
self.wiz = self.env['customer.activity.statement.wizard']
|
|
self.report_name = 'customer_activity_statement.statement'
|
|
self.report_title = 'Customer Activity Statement'
|
|
|
|
def _create_user(self, login, groups, company):
|
|
group_ids = [group.id for group in groups]
|
|
user = self.res_users_model.create({
|
|
'name': login,
|
|
'login': login,
|
|
'password': 'demo',
|
|
'email': 'example@yourcompany.com',
|
|
'company_id': company.id,
|
|
'company_ids': [(4, company.id)],
|
|
'groups_id': [(6, 0, group_ids)]
|
|
})
|
|
return user
|
|
|
|
def test_customer_activity_statement(self):
|
|
|
|
wiz_id = self.wiz.with_context(
|
|
active_ids=[self.partner1.id, self.partner2.id],
|
|
).create({})
|
|
|
|
statement = wiz_id.button_export_pdf()
|
|
|
|
self.assertDictContainsSubset(
|
|
{
|
|
'type': 'ir.actions.report',
|
|
'report_name': self.report_name,
|
|
'report_type': 'qweb-pdf',
|
|
},
|
|
statement,
|
|
'There was an error and the PDF report was not generated.'
|
|
)
|
|
|
|
data = wiz_id._prepare_activity_statement()
|
|
docids = data['partner_ids']
|
|
report = self.statement_model.get_report_values(docids, data)
|
|
self.assertIsInstance(report, dict,
|
|
"There was an error while compiling the report.")
|
|
self.assertIn("Show_Buckets", report,
|
|
"There was an error while compiling the report.")
|