Zeiterfassung neues Feature:

* Auswertungen nicht bebuchter Arbeitstage
This commit is contained in:
Daniel Spitzer
2025-03-03 14:52:25 +01:00
parent f35df781a5
commit 5ddca45820
4 changed files with 178 additions and 40 deletions

View File

@@ -142,6 +142,12 @@
$('body').on('click', '#bmd-export-nlz', function () {
window.open('<?= self::getUrl("TimerecordingBilling", "api", ['do' => 'generatebmdexportnlz']) ?>&month=' + $('#month').data('month'), '_blank');
});
$('body').on('click', '#open-workdays', function () {
window.open('<?= self::getUrl("TimerecordingBilling", "api", ['do' => 'generateopenworkdays']) ?>&month=' + $('#month').data('month'), '_blank');
});
$('body').on('click', '#month-complete', function () {
if (confirm('Monat ' + $('#month').data('month') + ' wirklich abschließen?')) {
$('#datatable_wrapper').hide();