Zeiterfassungscript

"TMA Script"

Versione datata 14/08/2018. Vedi la nuova versione l'ultima versione.

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     Zeiterfassungscript
// @version  2
// @grant    GM.xmlHttpRequest
// @include https://mytma.fe.hhi.de/*
// @description "TMA Script"

// @namespace https://greasyfork.org/users/149650
// ==/UserScript==
        let title = document.querySelector('#formularNameDiv').innerText;
    window.setInterval(() => {
if (title.search('Startseite') > -1) {



        let netto;
        let total;
        let next = false;
        document.querySelectorAll('#ajaxZeitstatusDiv td').forEach((td, index, all) => {
            let match = td.innerHTML.match(/(\d+:\d+) Std\. \(Nettozeit ohne Pausen\)/i);
            if (match !== null) {
                netto = match[1];
            }

            match = td.innerHTML.match(/heute/i);
            if (match !== null) {
                total = all[index + 1].innerHTML.match(/(\d+:\d+)/)[1];
                console.log(td.innerHTML, all[index + 1].innerHTML);

            }


        });
        GM.xmlHttpRequest({
            method: "POST",
            url: "http://localhost:1234/post.php",
            data: JSON.stringify({netto, total}),
            headers: {
                "Content-Type": "application/x-www-form-urlencoded"
            }
        });
    
    window.setTimeout(() => {
document.querySelector('#nANABWES').click(');
        //window.location.reload();
    }, 10000);
} else if (title.search('Abwesenheit') > -1 ) {
   

        let colleagues = [];
        let next = false;
        document.querySelectorAll('.rundrumZelleMA').forEach((td, index, all) => {
            console.log(td);
            let match = td.innerHTML.match(/[a-z ]+, [a-z ]+/i);
            if (match !== null) {
                colleagues.push({
                    name: match[0].trim(),
                    present: td.title.search('gekommen') > -1
                });
            }


        });
                        console.log(colleagues);

        GM.xmlHttpRequest({
            method: "POST",
            url: "http://localhost:1234/post.php",
            data: JSON.stringify({colleagues}),
            headers: {
                "Content-Type": "application/x-www-form-urlencoded"
            }
        });

    window.setTimeout(() => {
document.querySelector('#nSTART').click(');
        //window.location.reload();
    }, 10000);
}
},  20000);