mirror of
https://github.com/bringout/oca-ocb-pos.git
synced 2026-04-22 06:22:01 +02:00
Initial commit: Pos packages
This commit is contained in:
commit
95dfb9edb0
1301 changed files with 264148 additions and 0 deletions
63
odoo-bringout-oca-ocb-pos_hr/pos_hr/tests/test_frontend.py
Normal file
63
odoo-bringout-oca-ocb-pos_hr/pos_hr/tests/test_frontend.py
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import Command
|
||||
from odoo.tests import tagged, new_test_user
|
||||
from odoo.addons.point_of_sale.tests.test_frontend import TestPointOfSaleHttpCommon
|
||||
|
||||
|
||||
class TestPosHrHttpCommon(TestPointOfSaleHttpCommon):
|
||||
@classmethod
|
||||
def setUpClass(cls, chart_template_ref=None):
|
||||
super().setUpClass(chart_template_ref=chart_template_ref)
|
||||
|
||||
cls.env.user.groups_id += cls.env.ref('hr.group_hr_user')
|
||||
|
||||
cls.main_pos_config.write({"module_pos_hr": True})
|
||||
|
||||
# Admin employee
|
||||
admin = cls.env.ref("hr.employee_admin").sudo().copy({
|
||||
"company_id": cls.env.company.id,
|
||||
"user_id": cls.env.user.id,
|
||||
"name": "Mitchell Admin",
|
||||
"pin": False,
|
||||
})
|
||||
|
||||
# User employee
|
||||
emp1 = cls.env['hr.employee'].create({
|
||||
'name': 'Test Employee 1',
|
||||
"company_id": cls.env.company.id,
|
||||
})
|
||||
emp1_user = new_test_user(
|
||||
cls.env,
|
||||
login="emp1_user",
|
||||
groups="base.group_user",
|
||||
name="Pos Employee1",
|
||||
email="emp1_user@pos.com",
|
||||
)
|
||||
emp1.write({"name": "Pos Employee1", "pin": "2580", "user_id": emp1_user.id})
|
||||
|
||||
# Non-user employee
|
||||
emp2 = cls.env['hr.employee'].create({
|
||||
'name': 'Test Employee 2',
|
||||
"company_id": cls.env.company.id,
|
||||
})
|
||||
emp2.write({"name": "Pos Employee2", "pin": "1234"})
|
||||
(admin + emp1 + emp2).company_id = cls.env.company
|
||||
|
||||
cls.main_pos_config.write({
|
||||
'employee_ids': [Command.link(emp1.id), Command.link(emp2.id)]
|
||||
})
|
||||
|
||||
|
||||
@tagged("post_install", "-at_install")
|
||||
class TestUi(TestPosHrHttpCommon):
|
||||
def test_01_pos_hr_tour(self):
|
||||
# open a session, the /pos/ui controller will redirect to it
|
||||
self.main_pos_config.open_ui()
|
||||
|
||||
self.start_tour(
|
||||
"/pos/ui?config_id=%d" % self.main_pos_config.id,
|
||||
"PosHrTour",
|
||||
login="accountman",
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue