mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-26 05:12:02 +02:00
Initial commit: Hr packages
This commit is contained in:
commit
62531cd146
2820 changed files with 1432848 additions and 0 deletions
|
|
@ -0,0 +1,83 @@
|
|||
odoo.define('hr_expense.tests.tours', function (require) {
|
||||
"use strict";
|
||||
|
||||
var tour = require('web_tour.tour');
|
||||
|
||||
tour.register('hr_expense_test_tour', {
|
||||
test: true,
|
||||
url: "/web",
|
||||
}, [tour.stepUtils.showAppsMenuItem(),
|
||||
{
|
||||
content: "Go to Expense",
|
||||
trigger: '.o_app[data-menu-xmlid="hr_expense.menu_hr_expense_root"]',
|
||||
},
|
||||
{
|
||||
content: "Check Upload Button",
|
||||
trigger: '.o_button_upload_expense',
|
||||
run() {
|
||||
const button = document.querySelector('.o_button_upload_expense');
|
||||
if(!button) {
|
||||
console.error('Missing Upload button in My Expenses to Report > List View');
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
content: "Check Create Report Button, but not click on it",
|
||||
trigger: "button.o_switch_view.o_list.active",
|
||||
run() {
|
||||
const button = Array.from(document.querySelectorAll('.btn-secondary'))
|
||||
.filter(element => element.textContent.includes('Create Report'));
|
||||
if(!button) {
|
||||
console.error('Missing Create Report button in My Expenses to Report > List View');
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
content: "Go to kanban view",
|
||||
trigger: "button.o_switch_view.o_kanban",
|
||||
},
|
||||
{
|
||||
content: "Check Upload Button",
|
||||
trigger: "button.o_switch_view.o_kanban.active",
|
||||
run() {
|
||||
const button = document.querySelector('.o_button_upload_expense');
|
||||
if(!button) {
|
||||
console.error('Missing Upload button in My Expenses to Report > Kanban View');
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
content: "Check Create Report Button, but not click on it",
|
||||
trigger: "button.o_switch_view.o_kanban.active",
|
||||
run() {
|
||||
const button = Array.from(document.querySelectorAll('.btn-secondary'))
|
||||
.filter(element => element.textContent.includes('Create Report'));
|
||||
if(!button) {
|
||||
console.error('Missing Create Report button in My Expenses to Report > Kanban View');
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
content: "Go to Reporting",
|
||||
trigger: 'button[data-menu-xmlid="hr_expense.menu_hr_expense_reports"]',
|
||||
},
|
||||
{
|
||||
content: "Go to Expenses Analysis",
|
||||
trigger: 'a[data-menu-xmlid="hr_expense.menu_hr_expense_all_expenses"]',
|
||||
},
|
||||
{
|
||||
content: "Go to list view",
|
||||
trigger: "button.o_switch_view.o_list",
|
||||
},
|
||||
{
|
||||
content: "Check Upload Button",
|
||||
trigger: "button.o_switch_view.o_list.active",
|
||||
run() {
|
||||
const button = document.querySelector('.o_button_upload_expense');
|
||||
if(!button) {
|
||||
console.error('Missing Upload button in Expenses Analysis > List View');
|
||||
}
|
||||
}
|
||||
},
|
||||
]);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue