oca-ocb-sale/odoo-bringout-oca-ocb-sale_timesheet/sale_timesheet/tests/test_sale_timesheet_dashboard.py
Ernad Husremovic 73afc09215 19.0 vanilla
2026-03-09 09:32:12 +01:00

76 lines
3.1 KiB
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo.tests import tagged
from odoo.addons.sale_project.tests.test_sale_project_dashboard import TestProjectDashboardCommon as Common
@tagged('-at_install', 'post_install')
class TestSaleTimesheetDashboard(Common):
@classmethod
def setUpClass(cls):
super().setUpClass()
cls.dashboard_product_delivery_timesheet = cls.env['product.product'].create({
'name': "Service delivered",
'standard_price': 11,
'list_price': 13,
'type': 'service',
'invoice_policy': 'delivery',
'uom_id': cls.uom_hour.id,
'default_code': 'SERV-DELI1',
'service_type': 'timesheet',
'service_tracking': 'no',
'project_id': False,
'taxes_id': False,
})
def test_get_sale_item_data_various_sol_with_timesheet_installed(self):
"""This test ensures that when the timesheet module is installed, the sols are computed and put into the new profitability sections."""
hour_uom_id = self.env.ref('uom.product_uom_hour').id
unit_uom_id = self.env.ref('uom.product_uom_unit').id
sols = self.dashboardSaleOrderLine.create([{
'product_id': self.product_milestone.id,
'product_uom_qty': 1,
}, {
'product_id': self.product_prepaid.id,
'product_uom_qty': 1,
}, {
'product_id': self.material_product.id,
'product_uom_qty': 1,
}, {
'product_id': self.dashboard_product_delivery_timesheet.id,
'product_uom_qty': 1,
}, {
'product_id': self.dashboard_product_delivery_service.id,
'product_uom_qty': 1,
}])
sale_item_data = self.dashboard_project.get_sale_items_data(with_action=False, limit=5, section_id='materials')
expected_dict = sols._read_format(
['display_name', 'product_uom_qty', 'qty_delivered', 'qty_invoiced', 'product_uom_id', 'product_id']
)
self.assertEqual(
sale_item_data['sol_items'][0],
expected_dict[2]
)
sale_item_data = self.dashboard_project.get_sale_items_data(with_action=False, limit=5, section_id='billable_fixed')
self.assertEqual(
sale_item_data['sol_items'][0],
expected_dict[1]
)
sale_item_data = self.dashboard_project.get_sale_items_data(with_action=False, limit=5, section_id='billable_milestones')
self.assertEqual(
sale_item_data['sol_items'][0],
expected_dict[0]
)
sale_item_data = self.dashboard_project.get_sale_items_data(with_action=False, limit=5, section_id='billable_time')
self.assertEqual(
sale_item_data['sol_items'][0],
expected_dict[3]
)
sale_item_data = self.dashboard_project.get_sale_items_data(with_action=False, limit=5, section_id='billable_manual')
self.assertEqual(
sale_item_data['sol_items'][0],
expected_dict[4]
)