help for labs

Подсказки для лабораторий

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name        help for labs
// @description Подсказки для лабораторий
// @namespace   virta
// @include     http://virtonomica.*/*/main/unit/view/*
// @include     http://virtonomica.*/*/main/company/view/*/unit_list
// @version     1.000001
// @grant       none
// ==/UserScript==
var win = (typeof(unsafeWindow) != 'undefined' ? unsafeWindow : top.window);
$ = win.$;
var arr_razmer={"10":"4","30":"8","100":"13","300":"19","700":"25","1000":"бесконечности"};
var arr_razmer2={"1":"4","2":"8","3":"13","4":"19","5":"25","6":"бесконечности"};
if((/(?:company)/.test(location.href))){
//для общего списка
$('table.unit-list-2014 tr td[class][title*="Лаборатория"]').each(function(){
var razmer=$('span',this).text().replace(/[^\d]/g,'');
var info="до "+arr_razmer2[razmer]+'\n'+"6-8 техна - 1 размер предприятия"+'\n'+"9-14 техна - 2 размер предприятия"+'\n'+"15-19 техна - 3 размер предприятия"+'\n'+"20-25 техна - 4 размер предприятия"+'\n'+"26 и выше техна - 5 размер предприятия";
$(this).prop('title',info);})
//прячем отпускников
$('table.unit-list-2014 tr').each(function(){
if($('td.prod>img[title*="отпуск"]',this).length){$(this).css({opacity:0.3})}});
}
else {
//для страницы конкретной лаборатории
if((/(?:лаборатор)/.test($('table.infoblock td:eq(0)').prop("textContent")))){
var razmer=$('table.infoblock td:eq(1)').prop('textContent').match(/\d+/);
var info="до "+arr_razmer[razmer]+'\n'+"6-8 техна - 1 размер предприятия"+'\n'+"9-14 техна - 2 размер предприятия"+'\n'+"15-19 техна - 3 размер предприятия"+'\n'+"20-25 техна - 4 размер предприятия"+'\n'+"26 и выше техна - 5 размер предприятия";
$('table.infoblock tr:eq(0)').mouseover().prop('title',info);}}