var globalSite = "HumanLabel"; var theSite = "H"; var serverName = "humanlabel.lu"; var pwrMich = false; var userID = 0; var NEW_Cookies = true; function apiAHM(xAkopi, xHumanLabel, xMaxevent, xSite) { var retu; if( !xSite ) return xHumanLabel; else switch( xSite ) { case "A": return xAkopi; case "H": return xHumanLabel default: return xMaxevent; } } function apiAHMI(xAkopi, xHumanLabel, xMaxevent, xInstaPrint, xSite) { var retu; if( !xSite ) return xHumanLabel; else switch( xSite ) { case "A": return xAkopi; case "H": return xHumanLabel; case "I": return xInstaPrint; default: return xMaxevent; } } function PwrFullName(pwrUserID) { if( typeof pwrUserID == "string" ) pwrUserID = pwrUserID.toNumber(); switch(pwrUserID) { case 0: return "Iedereen"; case 23892: return "Michele Aerts"; case 85822: return "Klant"; case 19870: return "Wim Houtmeyers"; case 24479: return "Koen Bernaers"; case 51585: return "Stephanie Meynendonckx"; case 56065: return "Wim Van Sweevelt"; case 57216: return "Stefaan Cannoodt"; case 60377: return "Stephanie Lommelen"; case 61817: return "Shari Bruynseels"; case 62972: return "Joyce Habraken"; case 71609: return "Lotte Machiels"; case 72898: return "Klant"; case 73384: return "Sien Michiels"; case 74408: return "Leen Leeten"; case 81022: return "Klant"; case 84870: return "Klant"; case 87380: return "Klant"; case 88280: return "Tinne Cornelis"; case 89567: return "Charlotte De Winter"; default: return "Klant"; } } function PwrEmail(pwrUserID, xSite) { switch(xSite) { case "M": switch(pwrUserID) { case 19870: return "Maxevent - Wim Houtmeyers "; case 23892: return "Maxevent - Michele "; case 51585: return "Maxevent - Stephanie Meynendonckx "; case 56065: return "Maxevent - Wim Van Sweevelt "; case 60377: return "Maxevent - Stephanie Lommelen "; case 61817: return "Maxevent - Shari "; case 62972: return "Maxevent - Joyce "; default: return "Maxevent "; } case "H": return "Humanlabel "; case "I": return "Instaprint "; default: return "Akopi "; } } function pwrAlert(text) { } function pwrLog(var1, var2, var3, var4, var5) { } var prevTimer; function pwrTimer(teller) { } $(function() { /* * -------------------------------------------------------------- * jQuery datepicker: defaults * -------------------------------------------------------------- */ if( typeof $.ui != "undefined" && typeof $.datepicker != "undefined" ) { $.datepicker.setDefaults( { showOn: 'both', buttonImageOnly: true, buttonImage: '/images/icon_calendar.gif', buttonText: 'Open kalender', duration: '', firstDay: 1, showWeek: true, dateFormat: 'D dd/mm/yy', dayNames: ['Zondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag'], dayNamesShort: ['Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za'], dayNamesMin: ['Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za'], monthNames: ['Januari', 'Februari', 'Maart', 'April', 'Mei', 'Juni', 'Juli', 'Augustus', 'September', 'Oktober', 'November', 'December'], monthNamesShort: ['Jan', 'Feb', 'Maa', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'], nextText: 'Volgende', prevText: 'Vorige', numberOfMonths: 1, altFormat: 'yy-mm-dd' }); } /* ------------------------------------------------------------*/ /* jQuery dialog: defaults */ /* ------------------------------------------------------------*/ if( typeof $.ui != "undefined" && typeof $.ui.dialog != "undefined" ) $.extend($.ui.dialog.defaults, { dialogClass: "" }); /* ------------------------------------------------------------*/ /* jQuery extension /* ------------------------------------------------------------*/ $.fn.extend( { apiSQLExec: function(settings) { var selector = this.selector; var options = { jump: 1, status: "icoon" }; $.extend(options, settings); this.each( function() { if( options.status == "icoon" ) { // statusicoon ervoor zetten $(this) .css("border-left-style", "none") .css("width", "40px") .css("float", "left") .before( '
' ) .after('
'); } $(this).keyup( function(event) { if( event.keyCode == 38 || event.keyCode == 40 || event.keyCode == 13 ) { // Naar beneden/boven gaan index = $(selector).index( $(this) ); if( event.keyCode == 38 ) index -= options.jump; else index += options.jump; if( event.keyCode == 38 || event.keyCode == 40) $(this).change(); $(selector).eq(index).select(); } }); $(this).change( function() { if( options.status == "bg" ) { elStatus = this; $(elStatus).css("background-color", "orange"); } else elStatus = $(this).prev(); sql = $(this).attr("sql"); val = $(this).val(); if( !val ) sql = $(this).attr("sql") .replace("[0.00]", 'null') .replace("[VAL.00]", 'null') .replace("[VAL]", 'null'); else sql = $(this).attr("sql") .replace("[0.00]", val.toNumber().toFixed(2)) .replace("[VAL.00]", val.toNumber().toFixed(2)) .replace("[VAL]", val.toNumber().toFixed(0)); jQuery.ajax( { type: "POST", url: "/Admin/SQLExec.asp", data: { SQL: sql }, success: function(data) { if( options.status == "bg" ) { // sql commando is gelukt: achtergrond lichtgroen, na 2 sec terug wit $(elStatus).css("background-color", "lightgreen"); setTimeout('$("input").eq(' + $("input").index(elStatus) + ').css("background-color", "");', 2000); } else { // sql commando is gelukt: icoon wijzigen naar vinkje $(elStatus) .removeClass("ui-icon-signal") .removeClass("ui-icon-close") .addClass("ui-icon-check"); } }, error: function(XMLHttpRequest, textStatus) { if( options.status == "bg" ) { // sql commando is mislukt: achtergrond rood maken $(elStatus).css("background-color", "red"); } else { // sql commando is mislukt: icoon wijzigen naar kruis $(elStatus) .removeClass("ui-icon-signal") .removeClass("ui-icon-check") .addClass("ui-icon-close"); } apiAlert("Er is een fout opgetreden bij het opslaan van deze waarde.
" + sql + "

" + XMLHttpRequest.responseText); } }); }); }); } }); }); function apiSQLExec(sql, onSuccess, onError) { if( typeof sql == "string" ) sql = { SQL: sql } $.ajax( { type: "POST", url: "/Admin/apiSQLExec.asp", data: sql, success: onSuccess, error: onError }); } /* * -------------------------------------------------------------- * Popup functies * -------------------------------------------------------------- */ /* apiMessage( { titel: "Even geduld a.u.b.", vraag: "Opslaan...", height: ($.browser.msie) ? 150 : 100 }); */ function apiMessage(settings) { var apiDialog, options; if( typeof settings === "string" ) { apiConfirm( settings, "dialogMessage" ); } else { options = { titel: "Even geduld a.u.b.", vraag: "Opslaan...", height: ($.browser.msie) ? 150 : 100 }; $.extend(options, settings); apiConfirm( { titel: options.titel, vraag: options.vraag, buttons: "", height: options.height, gecentreerd: true, loading: true, dialogID: "dialogMessage" }); } } function apiUniqueID(uniqueID) { var ext = ""; // Bestaat er al een "dialogAlert"? -> "dialogAlert2" while( $("#" + uniqueID + ext).length > 0) { if( ext ) ext ++; else ext = 2; } return uniqueID + ext; } function apiAlert(boodschap, titel) { if( !titel ) titel = "HumanLabel"; apiConfirm( { titel: titel, vraag: boodschap, buttons: "ok", gecentreerd: true, loading: false, dialogID: apiUniqueID("dialogAlert") }); } function apiPrompt(settings) { options = { titel: "HumanLabel", boodschap: "Bent u zeker?", defaultWaarde: "", msgEmpty: "Geen geldige waarde", onJa: null }; $.extend(options, settings); apiConfirm( { titel: options.titel, vraag: options.boodschap + '
', dialogID: apiUniqueID("dialogPrompt"), onJa: function() { var newWaarde = $("#dialogPrompt_txt").val(); if( !newWaarde ) apiAlert(options.msgEmpty); else options.onJa.apply(this, [newWaarde]); } }); } var arrViewerImg, arrViewerTitel, arrViewerExtra, arrViewerItem; function apiViewer(img, titel, extra) { var dialogID = apiUniqueID("dialogViewer"); if( typeof img == "object" ) { arrViewerImg = img; arrViewerTitel = titel; arrViewerExtra = extra; img = arrViewerImg[0]; titel = arrViewerTitel[0]; extra = arrViewerExtra[0]; } else { arrViewerImg = [img]; arrViewerTitel = [titel]; arrViewerExtra = [extra]; } arrViewerItem = 0; var theimg = $('') .attr("src", img) .load( function() { $('#' + dialogID).dialog('option', 'position', 'center'); }); var vraag = $('
').append( theimg ); if( arrViewerImg.length > 1 ) { $('') .click( function() { if( typeof btn == "object" ) btn[1].apply(this, btn[0]); else btn.apply(); }) .appendTo(htmlbody); }); } if( options.loading) $(htmlbody).append('
' + imgLoading); //options.vraag += '
' + imgLoading; if( options.gecentreerd ) $(htmlbody).wrap('
'); //options.vraag = '
' + options.vraag + '
'; apiDialog = $('
') .attr("id", options.dialogID) .attr("title", options.titel) .append(htmlbody) .appendTo(document.body); if( options.buttons == "janee" ) { arrButtons = { "Ja, ik ben zeker": function() { if( options.onJa ) { retu = options.onJa.apply(); if( retu || retu == undefined ) $("#" + options.dialogID).dialog('close'); } else $("#" + options.dialogID).dialog('close'); }, "Nee, toch maar niet": function() { if( options.onNee ) { options.onNee.apply(); } $("#" + options.dialogID).dialog('close'); } }; } else if( options.buttons == "ok" ) { arrButtons = { "Ok": function() { if( options.onOk ) { options.onOk.apply(); } $("#" + options.dialogID).dialog('close'); } }; } else if( typeof options.buttons == "object" ) { arrButtons = options.buttons; } else { arrButtons = {}; } $("#" + options.dialogID).dialog( { autoOpen: false, height: options.height, width: options.width, maxWidth: options.maxWidth, modal: true, resizable: options.resizable, buttons: arrButtons, dialogClass: "api-dialog-new", close: function() { if( options.onClose ) { options.onClose.apply(); } $("#" + options.dialogID).remove(); } }); $.tooltip.closeCurrent(); $("#" + options.dialogID).dialog('open'); } } } /* apiPrinter( $("#printThis").html() ); */ function apiPrinter(tekst, site, afterPrint) { var apiForm; // Form toevoegen aan body apiForm = $('
') .appendTo("body"); // input field toevoegen met inhoud die geprint moet worden $('') .val( tekst ) .appendTo(apiForm); // site $('') .val( (site ? site : apiAHM("A", "H", "M")) ) .appendTo(apiForm); if( afterPrint ) { // script uit te voeren wanneer print gedaan is $('') .val(afterPrint) .appendTo(apiForm); } // nieuw venster aanmaken, A4-formaat window.open("", "apiPrinter", "width=770, height=1122, scrollbars=yes"); document.printPage.submit(); // Form terug wegdoen $("#printPage").remove(); } /* apiEditor( { fieldID: "", sql: "", editField: "", value: "" }); */ function apiEditor(settings) { var apiDialog, options; options = { titel: "HTML Editor", fieldID: "", fieldAttr: "", sql: "", editField: "", getvalue: true, initValue: "", append: false, onSave: null, SQLExecOptions: {}, extraButtons: {} }; $.extend(options, settings); apiDialog = $('
') .attr("id", "dialogEditor") .attr("title", options.titel) .appendTo(document.body); $('') .val('Loading...') .keyup( function(event) { if( event.keyCode == 34 ) $("div[aria-labelledby=ui-dialog-title-dialogEditor] .ui-dialog-buttonpane button:eq(0)").click(); }) .appendTo(apiDialog); $('
[Pg Dn] -> Opslaan
') .appendTo(apiDialog); if( options.getvalue ) { $.post("/Admin/SQLExec.asp", { SQL: options.sql, RETURN: options.editField }, function(retu) { $("#waarde").val( retu.cleanHTML() ); }); } else if( options.initValue ) $("#waarde").val(options.initValue); else $("#waarde").val(""); arrButtons = { "Opslaan": function() { newVal = $("#waarde").val().clean(true); sqlExecOpties = { SQL: options.sql, ACTIE: (options.append ? "INSERT" : "UPDATE") }; sqlExecOpties["FLD_" + options.editField] = newVal; $.extend(sqlExecOpties, options.SQLExecOptions) jQuery.ajax( { type: "POST", url: "/Admin/apiSQLExec.asp", data: sqlExecOpties, success: function(data) { if( options.fieldID ) { if( options.fieldAttr ) $(options.fieldID).attr(options.fieldAttr, newVal); else $(options.fieldID).html(newVal); } if( options.onSave ) options.onSave.apply(this, [data, newVal]); $("#dialogEditor").dialog('close'); }, error: function(XMLHttpRequest, textStatus) { apiAlert(options.sql + "

" + XMLHttpRequest.responseText); } }); }, "Annuleren": function() { $("#dialogEditor").dialog('close'); } }; $.extend(arrButtons, options.extraButtons); $("#dialogEditor").dialog( { autoOpen: false, modal: true, width: 650, buttons: arrButtons, close: function() { $("#dialogEditor").remove() } }); $("#dialogEditor").dialog('open'); } function apiImgPopup(settings) { var holder, options; options = { titel: "Image viewer", subTitel: "Klik om venster te sluiten", img: "" }; $.extend(options, settings); // Achtergrond layer toevoegen $('
') .click( function() { $("#imgPopup_bg, #imgPopup_holder").remove(); }) .appendTo("body"); // Popup toevoegen var popup = $('
') .css( { "top": "20px", "left": "20px" }) .click( function() { $("#imgPopup_bg").click(); }) .appendTo("body"); // titel toevoegen $('
') .html(options.titel) .appendTo(popup); // subtitel toevoegen $('
') .html(options.subTitel) .appendTo(popup); // image toevoegen $('
') .html('') .appendTo(popup); // centreren var wnd = $(window), doc = $(document), pTop = doc.scrollTop(), pLeft = doc.scrollLeft(), minTop = pTop; pLeft += (wnd.width() - popup.outerWidth()) / 2; pTop += (wnd.height() - popup.outerHeight()) / 2; // prevent the dialog from being too high (make sure the titlebar is accessible) pTop = Math.max(pTop, minTop); popup.css({top: pTop, left: pLeft}); } /* --------------------------------------------------------------*/ /* Functies voor Date /* --------------------------------------------------------------*/ /* --------------------------------------------------------------*/ /* d 8 m 8 jj 09 /* dd 08 mm 08 jjjj 2009 /* D ma M aug JJ 09 /* DD maandag MM augustus JJJJ 2009 /* --------------------------------------------------------------*/ function dateToStringBE(datum, format) { var dayShort = ['Zo', 'Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za']; var dayLong = ['Zondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrijdag', 'Zaterdag']; var monthShort = ['Jan', 'Feb', 'Maa', 'Apr', 'Mei', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec']; var monthLong = ['Januari', 'Februari', 'Maart', 'April', 'Mei', 'Juni', 'Juli', 'Augustus', 'September', 'Oktober', 'November', 'December']; var retu = ""; var found; if( datum ) { if( !format ) format = "D d/m/jjjj"; for( i = 0; i < format.length; i++ ) { found = ""; // 4-cijferige codes vertalen switch( format.substring(i, i + 4) ) { case "jjjj": found = datum.getFullYear(); break; case "JJJJ": found = datum.getFullYear(); break; } if( found ) { i += 3; retu += found; } else { // 2-cijferige codes vertalen switch( format.substring(i, i + 2) ) { case "dd": found = ((datum.getDate() < 10) ? "0" : "") + datum.getDate(); break; case "DD": found = dayLong[datum.getDay()]; break; case "mm": found = ((datum.getMonth() < 9) ? "0" : "") + (datum.getMonth() + 1); break; case "MM": found = monthLong[datum.getMonth()]; break; case "jj": jaar = datum.getFullYear().toString(); found = jaar.substr(2); break; case "JJ": jaar = datum.getFullYear().toString(); found = jaar.substr(2); break; case "HH": case "hh": found = ((datum.getHours() < 10) ? "0" : "") + datum.getHours(); break; case "NN": case "nn": found = ((datum.getMinutes() < 10) ? "0" : "") + datum.getMinutes(); break; case "SS": case "ss": found = ((datum.getSeconds() < 10) ? "0" : "") + datum.getSeconds(); break; } if( found ) { i++; retu += found; } else { // 1-cijferige code vertalen switch( format.substring(i, i + 1) ) { case "d": found = datum.getDate(); break; case "D": found = dayShort[datum.getDay()]; break; case "m": found = datum.getMonth() + 1; break; case "M": found = monthShort[datum.getMonth()]; break; } if( found ) { retu += found; } } } if( !found ) { // geen code, character er bij plakken retu += format.substring(i, i + 1); } } } return retu; } var arrKalender = [ { ID: 1, Datum: new Date(2009, 4, 1), Omschrijving: "Feest van de Arbeid", LeverancierID: 0 } , { ID: 4, Datum: new Date(2009, 4, 21), Omschrijving: "O.H. Hemelvaart", LeverancierID: 0 } , { ID: 5, Datum: new Date(2009, 5, 1), Omschrijving: "Pinkstermaandag", LeverancierID: 0 } , { ID: 6, Datum: new Date(2009, 6, 21), Omschrijving: "Nationale Feestdag", LeverancierID: 0 } , { ID: 7, Datum: new Date(2009, 7, 15), Omschrijving: "Moederdag", LeverancierID: 0 } , { ID: 8, Datum: new Date(2009, 10, 1), Omschrijving: "Allerheiligen", LeverancierID: 0 } , { ID: 9, Datum: new Date(2009, 10, 11), Omschrijving: "Wapenstilstand", LeverancierID: 0 } , { ID: 10, Datum: new Date(2009, 11, 25), Omschrijving: "Kerstmis", LeverancierID: 0 } , { ID: 14, Datum: new Date(2009, 6, 20), Omschrijving: "Brugdag", LeverancierID: 0 } , { ID: 15, Datum: new Date(2009, 11, 21), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 16, Datum: new Date(2009, 11, 22), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 17, Datum: new Date(2009, 11, 23), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 18, Datum: new Date(2009, 11, 24), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 19, Datum: new Date(2009, 11, 25), Omschrijving: "Kerstdag", LeverancierID: 0 } , { ID: 20, Datum: new Date(2009, 11, 28), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 21, Datum: new Date(2009, 11, 29), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 22, Datum: new Date(2009, 11, 30), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 23, Datum: new Date(2009, 11, 31), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 24, Datum: new Date(2010, 0, 1), Omschrijving: "Nieuwjaar", LeverancierID: 0 } , { ID: 40, Datum: new Date(2010, 7, 16), Omschrijving: "Gesloten", LeverancierID: 0 } , { ID: 27, Datum: new Date(2010, 3, 4), Omschrijving: "Pasen", LeverancierID: 0 } , { ID: 28, Datum: new Date(2010, 3, 5), Omschrijving: "Paasmaandag", LeverancierID: 0 } , { ID: 29, Datum: new Date(2010, 4, 1), Omschrijving: "Feest van de arbeid", LeverancierID: 0 } , { ID: 30, Datum: new Date(2010, 4, 13), Omschrijving: "O.H. Hemelvaart", LeverancierID: 0 } , { ID: 31, Datum: new Date(2010, 4, 23), Omschrijving: "Pinksteren", LeverancierID: 0 } , { ID: 32, Datum: new Date(2010, 4, 24), Omschrijving: "Pinkstermaandag", LeverancierID: 0 } , { ID: 34, Datum: new Date(2010, 6, 21), Omschrijving: "Nationale Feestdag", LeverancierID: 0 } , { ID: 35, Datum: new Date(2010, 7, 15), Omschrijving: "Moederdag", LeverancierID: 0 } , { ID: 36, Datum: new Date(2010, 10, 1), Omschrijving: "Allerheiligen", LeverancierID: 0 } , { ID: 37, Datum: new Date(2010, 10, 11), Omschrijving: "Wapenstilstand", LeverancierID: 0 } , { ID: 38, Datum: new Date(2010, 11, 25), Omschrijving: "Kerstmis", LeverancierID: 0 } , { ID: 39, Datum: new Date(2011, 0, 1), Omschrijving: "Nieuwjaar", LeverancierID: 0 } , { ID: 41, Datum: new Date(2010, 11, 27), Omschrijving: "Jaarlijks verlof", LeverancierID: 0 } , { ID: 42, Datum: new Date(2010, 11, 28), Omschrijving: "Jaarlijks verlof", LeverancierID: 0 } , { ID: 46, Datum: new Date(2011, 5, 2), Omschrijving: "O.H. Hemelvaart", LeverancierID: 0 } , { ID: 47, Datum: new Date(2011, 5, 3), Omschrijving: "Brugdag O.H. Hemelvaart", LeverancierID: 0 } , { ID: 48, Datum: new Date(2011, 5, 13), Omschrijving: "Pinkstermaandag", LeverancierID: 0 } , { ID: 49, Datum: new Date(2011, 5, 12), Omschrijving: "Pinksteren", LeverancierID: 0 } , { ID: 50, Datum: new Date(2011, 6, 21), Omschrijving: "Nationale feestdag", LeverancierID: 0 } , { ID: 51, Datum: new Date(2011, 7, 15), Omschrijving: "Moederdag", LeverancierID: 0 } , { ID: 52, Datum: new Date(2011, 10, 1), Omschrijving: "Allerheiligen", LeverancierID: 0 } , { ID: 53, Datum: new Date(2011, 10, 11), Omschrijving: "Wapenstilstand", LeverancierID: 0 } , { ID: 54, Datum: new Date(2011, 11, 25), Omschrijving: "Kerstmis", LeverancierID: 0 } , { ID: 55, Datum: new Date(2012, 0, 1), Omschrijving: "Nieuwjaar", LeverancierID: 0 } , { ID: 56, Datum: new Date(2011, 6, 18), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 57, Datum: new Date(2011, 6, 19), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 58, Datum: new Date(2011, 6, 20), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 66, Datum: new Date(2011, 11, 26), Omschrijving: "Jaarlijkse sluiting", LeverancierID: 0 } , { ID: 60, Datum: new Date(2011, 6, 22), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 61, Datum: new Date(2011, 6, 25), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 62, Datum: new Date(2011, 6, 26), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 63, Datum: new Date(2011, 6, 27), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 64, Datum: new Date(2011, 6, 28), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 65, Datum: new Date(2011, 6, 29), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 67, Datum: new Date(2011, 11, 27), Omschrijving: "Jaarlijkse sluiting", LeverancierID: 0 } , { ID: 68, Datum: new Date(2011, 11, 28), Omschrijving: "Jaarlijkse sluiting", LeverancierID: 0 } , { ID: 70, Datum: new Date(2011, 11, 30), Omschrijving: "Jaarlijkse sluiting", LeverancierID: 0 } , { ID: 71, Datum: new Date(2012, 0, 2), Omschrijving: "Jaarlijkse sluiting", LeverancierID: 0 } , { ID: 72, Datum: new Date(2012, 3, 8), Omschrijving: "Pasen", LeverancierID: 0 } , { ID: 73, Datum: new Date(2012, 3, 9), Omschrijving: "Paasmaandag", LeverancierID: 0 } , { ID: 74, Datum: new Date(2012, 4, 1), Omschrijving: "Feest van de Arbeid", LeverancierID: 0 } , { ID: 75, Datum: new Date(2012, 4, 17), Omschrijving: "O.H. Hemelvaart", LeverancierID: 0 } , { ID: 76, Datum: new Date(2012, 4, 27), Omschrijving: "Pinksteren", LeverancierID: 0 } , { ID: 77, Datum: new Date(2012, 4, 28), Omschrijving: "Pinkstermaandag", LeverancierID: 0 } , { ID: 78, Datum: new Date(2012, 6, 21), Omschrijving: "Nationale Feestdag", LeverancierID: 0 } , { ID: 79, Datum: new Date(2012, 7, 15), Omschrijving: "Moederdag", LeverancierID: 0 } , { ID: 80, Datum: new Date(2012, 10, 1), Omschrijving: "Allerheiligen", LeverancierID: 0 } , { ID: 81, Datum: new Date(2012, 10, 11), Omschrijving: "Wapenstilstand", LeverancierID: 0 } , { ID: 141, Datum: new Date(2012, 9, 3), Omschrijving: "Afdeling drukwerk op Teambuilding", LeverancierID: 6 } , { ID: 85, Datum: new Date(2012, 11, 25), Omschrijving: "Kerstmis", LeverancierID: 0 } , { ID: 89, Datum: new Date(2012, 4, 18), Omschrijving: "Brugdag", LeverancierID: 0 } , { ID: 90, Datum: new Date(2012, 6, 16), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 91, Datum: new Date(2012, 6, 17), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 92, Datum: new Date(2012, 6, 18), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 93, Datum: new Date(2012, 6, 19), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 95, Datum: new Date(2012, 6, 23), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 96, Datum: new Date(2012, 6, 24), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 97, Datum: new Date(2012, 6, 25), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 98, Datum: new Date(2012, 6, 26), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 99, Datum: new Date(2012, 6, 27), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 116, Datum: new Date(2012, 10, 2), Omschrijving: "Brugdag", LeverancierID: 0 } , { ID: 119, Datum: new Date(2013, 3, 1), Omschrijving: "Paasmaandag", LeverancierID: 0 } , { ID: 120, Datum: new Date(2013, 4, 1), Omschrijving: "Feest van de Arbeid", LeverancierID: 0 } , { ID: 121, Datum: new Date(2013, 4, 9), Omschrijving: "O.H. Hemelvaart", LeverancierID: 0 } , { ID: 122, Datum: new Date(2013, 4, 19), Omschrijving: "Pinksteren", LeverancierID: 0 } , { ID: 123, Datum: new Date(2013, 4, 20), Omschrijving: "Pinkstermaandag", LeverancierID: 0 } , { ID: 124, Datum: new Date(2013, 6, 21), Omschrijving: "Nationale Feestdag", LeverancierID: 0 } , { ID: 125, Datum: new Date(2013, 7, 15), Omschrijving: "O.L.V. Hemelvaart", LeverancierID: 0 } , { ID: 127, Datum: new Date(2013, 10, 11), Omschrijving: "Wapenstilstand", LeverancierID: 0 } , { ID: 143, Datum: new Date(2012, 11, 26), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 144, Datum: new Date(2012, 11, 27), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 145, Datum: new Date(2012, 11, 28), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 146, Datum: new Date(2012, 11, 31), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 147, Datum: new Date(2013, 0, 2), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 148, Datum: new Date(2013, 0, 3), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 149, Datum: new Date(2013, 0, 4), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 150, Datum: new Date(2012, 11, 24), Omschrijving: "Kerstavond", LeverancierID: 0 } , { ID: 152, Datum: new Date(2012, 11, 24), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 153, Datum: new Date(2012, 11, 26), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 154, Datum: new Date(2012, 11, 27), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 155, Datum: new Date(2012, 11, 28), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 159, Datum: new Date(2013, 0, 4), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 160, Datum: new Date(2014, 0, 1), Omschrijving: "Nieuwjaar", LeverancierID: 0 } , { ID: 161, Datum: new Date(2014, 3, 20), Omschrijving: "Pasen", LeverancierID: 0 } , { ID: 162, Datum: new Date(2014, 3, 21), Omschrijving: "Paasmaandag", LeverancierID: 0 } , { ID: 165, Datum: new Date(2014, 5, 8), Omschrijving: "Pinksteren", LeverancierID: 0 } , { ID: 168, Datum: new Date(2014, 7, 15), Omschrijving: "O.L.V. Hemelvaart", LeverancierID: 0 } , { ID: 170, Datum: new Date(2014, 10, 11), Omschrijving: "Wapenstilstand", LeverancierID: 0 } , { ID: 171, Datum: new Date(2014, 11, 25), Omschrijving: "Kerstmis", LeverancierID: 0 } , { ID: 172, Datum: new Date(2013, 1, 8), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 2 } , { ID: 173, Datum: new Date(2013, 1, 11), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 2 } , { ID: 175, Datum: new Date(2013, 1, 12), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 2 } , { ID: 176, Datum: new Date(2013, 1, 12), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 49 } , { ID: 177, Datum: new Date(2013, 1, 13), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 2 } , { ID: 178, Datum: new Date(2013, 1, 13), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 49 } , { ID: 180, Datum: new Date(2013, 1, 14), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 49 } , { ID: 181, Datum: new Date(2013, 1, 15), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 2 } , { ID: 183, Datum: new Date(2013, 1, 8), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 49 } , { ID: 187, Datum: new Date(2013, 6, 16), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 189, Datum: new Date(2013, 6, 18), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 191, Datum: new Date(2013, 6, 22), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 192, Datum: new Date(2013, 6, 23), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 196, Datum: new Date(2013, 3, 4), Omschrijving: "Afdeling gesloten", LeverancierID: 2 } , { ID: 200, Datum: new Date(2013, 5, 10), Omschrijving: "Afdeling gesloten", LeverancierID: 2 } , { ID: 201, Datum: new Date(2013, 5, 11), Omschrijving: "Afdeling gesloten", LeverancierID: 2 } , { ID: 203, Datum: new Date(2013, 6, 22), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 204, Datum: new Date(2013, 6, 23), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 212, Datum: new Date(2013, 7, 2), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 215, Datum: new Date(2013, 7, 7), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 220, Datum: new Date(2013, 6, 24), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 225, Datum: new Date(2013, 6, 31), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 228, Datum: new Date(2013, 6, 22), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 229, Datum: new Date(2013, 6, 23), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 230, Datum: new Date(2013, 6, 24), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 231, Datum: new Date(2013, 6, 25), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 232, Datum: new Date(2013, 6, 26), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 233, Datum: new Date(2013, 6, 29), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 234, Datum: new Date(2013, 6, 30), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 235, Datum: new Date(2013, 6, 31), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 236, Datum: new Date(2013, 7, 1), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 237, Datum: new Date(2013, 7, 2), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 239, Datum: new Date(2013, 7, 6), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 240, Datum: new Date(2013, 7, 7), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 241, Datum: new Date(2013, 8, 30), Omschrijving: "Verlof", LeverancierID: 2 } , { ID: 242, Datum: new Date(2013, 9, 1), Omschrijving: "Verlof", LeverancierID: 2 } , { ID: 243, Datum: new Date(2013, 9, 2), Omschrijving: "Verlof", LeverancierID: 2 } , { ID: 244, Datum: new Date(2013, 9, 3), Omschrijving: "Verlof", LeverancierID: 2 } , { ID: 245, Datum: new Date(2013, 9, 4), Omschrijving: "Verlof", LeverancierID: 2 } , { ID: 248, Datum: new Date(2013, 11, 23), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 249, Datum: new Date(2013, 11, 24), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 250, Datum: new Date(2013, 11, 26), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 251, Datum: new Date(2013, 11, 27), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 252, Datum: new Date(2013, 11, 30), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 255, Datum: new Date(2014, 0, 3), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 280, Datum: new Date(2014, 3, 18), Omschrijving: "Karfreitag", LeverancierID: 6 } , { ID: 282, Datum: new Date(2014, 9, 3), Omschrijving: "Tag der Deutschen Einheit", LeverancierID: 6 } , { ID: 285, Datum: new Date(2014, 3, 25), Omschrijving: "verhuis", LeverancierID: 1 } , { ID: 287, Datum: new Date(2014, 4, 30), Omschrijving: "Sluiting textiel afdeling", LeverancierID: 9 } , { ID: 292, Datum: new Date(2014, 6, 28), Omschrijving: "Veflof Textiel afdeling", LeverancierID: 9 } , { ID: 294, Datum: new Date(2014, 6, 30), Omschrijving: "Veflof Textiel afdeling", LeverancierID: 9 } , { ID: 295, Datum: new Date(2014, 6, 31), Omschrijving: "Veflof Textiel afdeling", LeverancierID: 9 } , { ID: 43, Datum: new Date(2010, 11, 29), Omschrijving: "Jaarlijks verlof", LeverancierID: 0 } , { ID: 45, Datum: new Date(2010, 11, 31), Omschrijving: "Jaarlijks verlof", LeverancierID: 0 } , { ID: 163, Datum: new Date(2014, 4, 1), Omschrijving: "O.H. Hemelvaart", LeverancierID: 0 } , { ID: 174, Datum: new Date(2013, 1, 11), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 49 } , { ID: 205, Datum: new Date(2013, 6, 24), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 208, Datum: new Date(2013, 6, 29), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 213, Datum: new Date(2013, 7, 5), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 214, Datum: new Date(2013, 7, 6), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 219, Datum: new Date(2013, 6, 23), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 223, Datum: new Date(2013, 6, 29), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 226, Datum: new Date(2013, 7, 1), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 238, Datum: new Date(2013, 7, 5), Omschrijving: "Verlof", LeverancierID: 35 } , { ID: 246, Datum: new Date(2013, 9, 3), Omschrijving: "feestdag Duitsland", LeverancierID: 6 } , { ID: 254, Datum: new Date(2014, 0, 2), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 281, Datum: new Date(2014, 5, 19), Omschrijving: "Fronleichnam", LeverancierID: 6 } , { ID: 283, Datum: new Date(2014, 11, 26), Omschrijving: "tweede kerstdag", LeverancierID: 0 } , { ID: 286, Datum: new Date(2014, 4, 2), Omschrijving: "Internation Labor Day", LeverancierID: 2 } , { ID: 288, Datum: new Date(2014, 6, 22), Omschrijving: "Veflof Textiel afdeling", LeverancierID: 9 } , { ID: 291, Datum: new Date(2014, 6, 25), Omschrijving: "Veflof Textiel afdeling", LeverancierID: 9 } , { ID: 297, Datum: new Date(2014, 6, 22), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 300, Datum: new Date(2014, 6, 25), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 301, Datum: new Date(2014, 6, 28), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 302, Datum: new Date(2014, 6, 29), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 303, Datum: new Date(2014, 6, 30), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 305, Datum: new Date(2014, 7, 1), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 310, Datum: new Date(2014, 6, 28), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 311, Datum: new Date(2014, 6, 29), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 312, Datum: new Date(2014, 6, 30), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 313, Datum: new Date(2014, 6, 31), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 314, Datum: new Date(2014, 7, 1), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 319, Datum: new Date(2014, 6, 24), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 324, Datum: new Date(2014, 6, 31), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 325, Datum: new Date(2014, 7, 1), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 326, Datum: new Date(2014, 7, 4), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 327, Datum: new Date(2014, 7, 5), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 328, Datum: new Date(2014, 7, 6), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 331, Datum: new Date(2014, 9, 1), Omschrijving: "Nationale feestdag", LeverancierID: 2 } , { ID: 334, Datum: new Date(2014, 9, 6), Omschrijving: "Nationale feestdag", LeverancierID: 2 } , { ID: 336, Datum: new Date(2014, 11, 22), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 337, Datum: new Date(2014, 11, 23), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 338, Datum: new Date(2014, 11, 24), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 339, Datum: new Date(2014, 11, 29), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 340, Datum: new Date(2014, 11, 30), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 341, Datum: new Date(2014, 11, 31), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 342, Datum: new Date(2015, 0, 1), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 343, Datum: new Date(2015, 0, 2), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 344, Datum: new Date(2014, 11, 24), Omschrijving: "Kerstsluiting", LeverancierID: 1 } , { ID: 345, Datum: new Date(2014, 11, 26), Omschrijving: "Kerstsluiting", LeverancierID: 1 } , { ID: 347, Datum: new Date(2014, 11, 29), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 348, Datum: new Date(2014, 11, 30), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 349, Datum: new Date(2014, 11, 31), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 350, Datum: new Date(2015, 0, 1), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 351, Datum: new Date(2015, 0, 2), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 361, Datum: new Date(2015, 1, 9), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 363, Datum: new Date(2015, 1, 11), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 365, Datum: new Date(2015, 1, 13), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 367, Datum: new Date(2015, 1, 17), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 368, Datum: new Date(2015, 1, 18), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 369, Datum: new Date(2015, 1, 19), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 386, Datum: new Date(2015, 3, 6), Omschrijving: "Paasmaandag", LeverancierID: 0 } , { ID: 417, Datum: new Date(2015, 6, 21), Omschrijving: "Nationale Feestdag", LeverancierID: 0 } , { ID: 389, Datum: new Date(2015, 4, 15), Omschrijving: "Brugdag", LeverancierID: 9 } , { ID: 393, Datum: new Date(2015, 6, 21), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 394, Datum: new Date(2015, 6, 22), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 395, Datum: new Date(2015, 6, 23), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 396, Datum: new Date(2015, 6, 24), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 397, Datum: new Date(2015, 6, 27), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 398, Datum: new Date(2015, 6, 28), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 400, Datum: new Date(2015, 6, 30), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 402, Datum: new Date(2015, 11, 23), Omschrijving: "Collectief verlof", LeverancierID: 0 } , { ID: 409, Datum: new Date(2015, 1, 23), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 414, Datum: new Date(2015, 3, 3), Omschrijving: "Feestdag Duitsland", LeverancierID: 6 } , { ID: 415, Datum: new Date(2015, 4, 1), Omschrijving: "Feest van de arbeid", LeverancierID: 0 } , { ID: 416, Datum: new Date(2015, 4, 14), Omschrijving: "OLH Hemelvaart", LeverancierID: 0 } , { ID: 442, Datum: new Date(2015, 6, 20), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 443, Datum: new Date(2015, 6, 21), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 444, Datum: new Date(2015, 6, 22), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 445, Datum: new Date(2015, 6, 23), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 446, Datum: new Date(2015, 6, 24), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 447, Datum: new Date(2015, 6, 27), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 448, Datum: new Date(2015, 6, 28), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 449, Datum: new Date(2015, 6, 29), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 450, Datum: new Date(2015, 6, 30), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 451, Datum: new Date(2015, 6, 31), Omschrijving: "vakantie", LeverancierID: 35 } , { ID: 452, Datum: new Date(2015, 5, 22), Omschrijving: "Dragon Boat Festival", LeverancierID: 2 } , { ID: 453, Datum: new Date(2015, 6, 17), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 455, Datum: new Date(2015, 6, 21), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 456, Datum: new Date(2015, 6, 22), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 457, Datum: new Date(2015, 6, 23), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 458, Datum: new Date(2015, 6, 24), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 459, Datum: new Date(2015, 6, 27), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 461, Datum: new Date(2015, 6, 29), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 463, Datum: new Date(2015, 6, 31), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 464, Datum: new Date(2015, 6, 20), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 465, Datum: new Date(2015, 6, 22), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 466, Datum: new Date(2015, 6, 23), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 467, Datum: new Date(2015, 6, 24), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 468, Datum: new Date(2015, 6, 27), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 469, Datum: new Date(2015, 6, 28), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 470, Datum: new Date(2015, 6, 29), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 471, Datum: new Date(2015, 6, 30), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 472, Datum: new Date(2015, 6, 31), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 473, Datum: new Date(2015, 7, 3), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 474, Datum: new Date(2015, 7, 4), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 475, Datum: new Date(2015, 7, 5), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 476, Datum: new Date(2015, 7, 6), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 477, Datum: new Date(2015, 7, 7), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 483, Datum: new Date(2015, 6, 22), Omschrijving: "de man die de cliché maakt is in verlof tot 27/7", LeverancierID: 332 } , { ID: 485, Datum: new Date(2015, 6, 24), Omschrijving: "de man die de cliché maakt is in verlof tot 27/7", LeverancierID: 332 } , { ID: 495, Datum: new Date(2015, 6, 20), Omschrijving: "jaarlijkse vakantie", LeverancierID: 21 } , { ID: 496, Datum: new Date(2015, 6, 22), Omschrijving: "jaarlijkse vakantie", LeverancierID: 21 } , { ID: 497, Datum: new Date(2015, 6, 23), Omschrijving: "jaarlijkse vakantie", LeverancierID: 21 } , { ID: 498, Datum: new Date(2015, 6, 24), Omschrijving: "jaarlijkse vakantie", LeverancierID: 21 } , { ID: 499, Datum: new Date(2015, 6, 27), Omschrijving: "jaarlijkse vakantie", LeverancierID: 21 } , { ID: 500, Datum: new Date(2015, 6, 28), Omschrijving: "jaarlijkse vakantie", LeverancierID: 21 } , { ID: 502, Datum: new Date(2015, 6, 30), Omschrijving: "jaarlijkse vakantie", LeverancierID: 21 } , { ID: 504, Datum: new Date(2015, 8, 3), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 505, Datum: new Date(2015, 8, 4), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 512, Datum: new Date(2015, 9, 1), Omschrijving: "feestdag China", LeverancierID: 340 } , { ID: 518, Datum: new Date(2015, 10, 2), Omschrijving: "tijl gesloten", LeverancierID: 21 } , { ID: 519, Datum: new Date(2015, 11, 25), Omschrijving: "tijl gesloten", LeverancierID: 21 } , { ID: 520, Datum: new Date(2015, 11, 28), Omschrijving: "tijl gesloten", LeverancierID: 21 } , { ID: 521, Datum: new Date(2015, 11, 29), Omschrijving: "tijl gesloten", LeverancierID: 21 } , { ID: 522, Datum: new Date(2015, 11, 30), Omschrijving: "tijl gesloten", LeverancierID: 21 } , { ID: 523, Datum: new Date(2015, 11, 31), Omschrijving: "tijl gesloten", LeverancierID: 21 } , { ID: 524, Datum: new Date(2016, 0, 1), Omschrijving: "tijl gesloten", LeverancierID: 21 } , { ID: 527, Datum: new Date(2015, 11, 23), Omschrijving: "screenex verlof", LeverancierID: 0 } , { ID: 531, Datum: new Date(2015, 11, 29), Omschrijving: "screenex verlof", LeverancierID: 5 } , { ID: 533, Datum: new Date(2015, 11, 31), Omschrijving: "screenex verlof", LeverancierID: 5 } , { ID: 535, Datum: new Date(2015, 11, 25), Omschrijving: "The Box and Beermat Company gesloten ", LeverancierID: 35 } , { ID: 537, Datum: new Date(2015, 11, 29), Omschrijving: "The Box and Beermat Company gesloten ", LeverancierID: 35 } , { ID: 539, Datum: new Date(2015, 11, 31), Omschrijving: "The Box and Beermat Company gesloten ", LeverancierID: 35 } , { ID: 550, Datum: new Date(2015, 11, 24), Omschrijving: "sluiting monsterprint", LeverancierID: 326 } , { ID: 551, Datum: new Date(2015, 11, 25), Omschrijving: "sluiting monsterprint", LeverancierID: 326 } , { ID: 552, Datum: new Date(2015, 11, 31), Omschrijving: "sluiting monsterprint", LeverancierID: 326 } , { ID: 553, Datum: new Date(2016, 0, 1), Omschrijving: "sluiting monsterprint", LeverancierID: 326 } , { ID: 554, Datum: new Date(2016, 1, 5), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 555, Datum: new Date(2016, 1, 8), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 556, Datum: new Date(2016, 1, 9), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 557, Datum: new Date(2016, 1, 10), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 558, Datum: new Date(2016, 1, 11), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 559, Datum: new Date(2016, 1, 12), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 560, Datum: new Date(2016, 1, 15), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 574, Datum: new Date(2016, 1, 3), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 588, Datum: new Date(2016, 0, 29), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 589, Datum: new Date(2016, 0, 28), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 590, Datum: new Date(2016, 0, 27), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 591, Datum: new Date(2016, 0, 26), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 593, Datum: new Date(2016, 1, 22), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 594, Datum: new Date(2016, 4, 2), Omschrijving: "recup 1 mei", LeverancierID: 71 } , { ID: 595, Datum: new Date(2016, 4, 6), Omschrijving: "Brug", LeverancierID: 71 } , { ID: 596, Datum: new Date(2016, 4, 3), Omschrijving: "Feestdag", LeverancierID: 326 } , { ID: 600, Datum: new Date(2016, 4, 26), Omschrijving: "Poolse feestdag", LeverancierID: 326 } , { ID: 601, Datum: new Date(2016, 5, 9), Omschrijving: "Dragon boat festival", LeverancierID: 2 } , { ID: 602, Datum: new Date(2016, 5, 10), Omschrijving: "Dragon boat festival", LeverancierID: 2 } , { ID: 603, Datum: new Date(2016, 6, 18), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 604, Datum: new Date(2016, 6, 19), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 605, Datum: new Date(2016, 6, 20), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 607, Datum: new Date(2016, 6, 21), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 609, Datum: new Date(2016, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 611, Datum: new Date(2016, 6, 28), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 44, Datum: new Date(2010, 11, 30), Omschrijving: "Jaarlijks verlof", LeverancierID: 0 } , { ID: 126, Datum: new Date(2013, 10, 1), Omschrijving: "Allerheiligen", LeverancierID: 0 } , { ID: 306, Datum: new Date(2014, 6, 22), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 307, Datum: new Date(2014, 6, 23), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 308, Datum: new Date(2014, 6, 24), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 309, Datum: new Date(2014, 6, 25), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 352, Datum: new Date(2014, 11, 22), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 353, Datum: new Date(2014, 11, 23), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 354, Datum: new Date(2014, 11, 24), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 357, Datum: new Date(2014, 11, 30), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 359, Datum: new Date(2015, 0, 1), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 360, Datum: new Date(2015, 0, 2), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 424, Datum: new Date(2016, 0, 1), Omschrijving: "Feestdag: Nieuwjaar", LeverancierID: 0 } , { ID: 419, Datum: new Date(2015, 11, 24), Omschrijving: "collectief verlof", LeverancierID: 0 } , { ID: 421, Datum: new Date(2015, 11, 29), Omschrijving: "collectief verlof", LeverancierID: 0 } , { ID: 423, Datum: new Date(2015, 11, 31), Omschrijving: "collectief verlof", LeverancierID: 0 } , { ID: 430, Datum: new Date(2016, 10, 1), Omschrijving: "Feestdag: Allerheiligen", LeverancierID: 0 } , { ID: 432, Datum: new Date(2017, 0, 1), Omschrijving: "Feestdag: Nieuwjaar", LeverancierID: 0 } , { ID: 454, Datum: new Date(2015, 6, 20), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 525, Datum: new Date(2015, 11, 21), Omschrijving: "screenex verlof", LeverancierID: 5 } , { ID: 613, Datum: new Date(2016, 7, 1), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 615, Datum: new Date(2016, 7, 3), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 617, Datum: new Date(2016, 7, 5), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 654, Datum: new Date(2016, 6, 18), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 655, Datum: new Date(2016, 6, 19), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 656, Datum: new Date(2016, 6, 20), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 657, Datum: new Date(2016, 6, 21), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 658, Datum: new Date(2016, 6, 22), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 659, Datum: new Date(2016, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 660, Datum: new Date(2016, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 661, Datum: new Date(2016, 6, 27), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 662, Datum: new Date(2016, 6, 28), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 663, Datum: new Date(2016, 6, 29), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 664, Datum: new Date(2016, 6, 15), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 665, Datum: new Date(2016, 6, 18), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 666, Datum: new Date(2016, 6, 19), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 667, Datum: new Date(2016, 6, 20), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 668, Datum: new Date(2016, 6, 21), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 669, Datum: new Date(2016, 6, 22), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 670, Datum: new Date(2016, 6, 25), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 671, Datum: new Date(2016, 6, 26), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 672, Datum: new Date(2016, 6, 27), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 673, Datum: new Date(2016, 6, 28), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 674, Datum: new Date(2016, 6, 29), Omschrijving: "zomersluiting", LeverancierID: 71 } , { ID: 675, Datum: new Date(2016, 6, 18), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 676, Datum: new Date(2016, 6, 19), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 677, Datum: new Date(2016, 6, 20), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 678, Datum: new Date(2016, 6, 21), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 679, Datum: new Date(2016, 6, 22), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 680, Datum: new Date(2016, 6, 25), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 681, Datum: new Date(2016, 6, 26), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 682, Datum: new Date(2016, 6, 27), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 683, Datum: new Date(2016, 6, 28), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 684, Datum: new Date(2016, 6, 29), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 685, Datum: new Date(2016, 9, 1), Omschrijving: "Feestdag", LeverancierID: 2 } , { ID: 686, Datum: new Date(2016, 9, 1), Omschrijving: "National day", LeverancierID: 340 } , { ID: 689, Datum: new Date(2016, 9, 2), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 690, Datum: new Date(2016, 9, 2), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 691, Datum: new Date(2016, 9, 3), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 692, Datum: new Date(2016, 9, 3), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 693, Datum: new Date(2016, 9, 4), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 694, Datum: new Date(2016, 9, 4), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 695, Datum: new Date(2016, 9, 5), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 696, Datum: new Date(2016, 9, 5), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 697, Datum: new Date(2016, 9, 6), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 698, Datum: new Date(2016, 9, 6), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 699, Datum: new Date(2016, 11, 23), Omschrijving: "Vakantie", LeverancierID: 9 } , { ID: 701, Datum: new Date(2016, 11, 27), Omschrijving: "Vakantie", LeverancierID: 9 } , { ID: 703, Datum: new Date(2016, 11, 29), Omschrijving: "Vakantie", LeverancierID: 9 } , { ID: 705, Datum: new Date(2017, 0, 2), Omschrijving: "Vakantie", LeverancierID: 9 } , { ID: 706, Datum: new Date(2016, 11, 26), Omschrijving: "Kerst", LeverancierID: 5 } , { ID: 707, Datum: new Date(2016, 11, 27), Omschrijving: "Kerst", LeverancierID: 5 } , { ID: 708, Datum: new Date(2016, 11, 27), Omschrijving: "Kerst", LeverancierID: 21 } , { ID: 709, Datum: new Date(2016, 11, 26), Omschrijving: "Kerst", LeverancierID: 21 } , { ID: 710, Datum: new Date(2016, 11, 28), Omschrijving: "Kerst", LeverancierID: 5 } , { ID: 711, Datum: new Date(2016, 11, 28), Omschrijving: "Kerst", LeverancierID: 21 } , { ID: 712, Datum: new Date(2016, 11, 29), Omschrijving: "Kerst", LeverancierID: 5 } , { ID: 713, Datum: new Date(2016, 11, 29), Omschrijving: "Kerst", LeverancierID: 21 } , { ID: 714, Datum: new Date(2016, 11, 30), Omschrijving: "Kerst", LeverancierID: 5 } , { ID: 715, Datum: new Date(2016, 11, 30), Omschrijving: "Kerst", LeverancierID: 21 } , { ID: 726, Datum: new Date(2017, 0, 2), Omschrijving: "Vakantie", LeverancierID: 5 } , { ID: 729, Datum: new Date(2017, 0, 5), Omschrijving: "Vakantie", LeverancierID: 5 } , { ID: 731, Datum: new Date(2017, 0, 9), Omschrijving: "Vakantie drukker", LeverancierID: 5 } , { ID: 733, Datum: new Date(2017, 0, 11), Omschrijving: "Vakantie drukker", LeverancierID: 5 } , { ID: 735, Datum: new Date(2017, 0, 13), Omschrijving: "Vakantie drukker", LeverancierID: 5 } , { ID: 738, Datum: new Date(2016, 11, 28), Omschrijving: "Vakantie", LeverancierID: 35 } , { ID: 748, Datum: new Date(2016, 11, 23), Omschrijving: "Kerstsluiting", LeverancierID: 397 } , { ID: 747, Datum: new Date(2017, 0, 2), Omschrijving: "Kerstsluiting", LeverancierID: 1 } , { ID: 750, Datum: new Date(2016, 11, 28), Omschrijving: "Kerstsluiting", LeverancierID: 397 } , { ID: 751, Datum: new Date(2016, 11, 22), Omschrijving: "Vakantie", LeverancierID: 71 } , { ID: 752, Datum: new Date(2016, 11, 29), Omschrijving: "Kerstsluiting", LeverancierID: 397 } , { ID: 753, Datum: new Date(2016, 11, 23), Omschrijving: "Vakantie", LeverancierID: 71 } , { ID: 754, Datum: new Date(2016, 11, 30), Omschrijving: "Kerstsluiting", LeverancierID: 397 } , { ID: 755, Datum: new Date(2016, 11, 26), Omschrijving: "Vakantie", LeverancierID: 71 } , { ID: 756, Datum: new Date(2016, 11, 27), Omschrijving: "Vakantie", LeverancierID: 71 } , { ID: 757, Datum: new Date(2016, 11, 28), Omschrijving: "Vakantie", LeverancierID: 71 } , { ID: 758, Datum: new Date(2016, 11, 29), Omschrijving: "Vakantie", LeverancierID: 71 } , { ID: 759, Datum: new Date(2016, 11, 30), Omschrijving: "Vakantie", LeverancierID: 71 } , { ID: 760, Datum: new Date(2017, 0, 2), Omschrijving: "Vakantie", LeverancierID: 71 } , { ID: 761, Datum: new Date(2017, 0, 26), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 763, Datum: new Date(2017, 0, 29), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 765, Datum: new Date(2017, 0, 30), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 767, Datum: new Date(2017, 1, 1), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 769, Datum: new Date(2017, 1, 3), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 795, Datum: new Date(2017, 4, 3), Omschrijving: "Feestdag Polen", LeverancierID: 385 } , { ID: 797, Datum: new Date(2017, 3, 28), Omschrijving: "Koningsdag", LeverancierID: 15 } , { ID: 799, Datum: new Date(2017, 4, 26), Omschrijving: "Brugdag", LeverancierID: 15 } , { ID: 800, Datum: new Date(2017, 4, 25), Omschrijving: "OH Hemelvaart", LeverancierID: 15 } , { ID: 801, Datum: new Date(2017, 4, 29), Omschrijving: "Dragon Boat Festival", LeverancierID: 2 } , { ID: 802, Datum: new Date(2017, 4, 30), Omschrijving: "Dragon Boat Festival", LeverancierID: 2 } , { ID: 833, Datum: new Date(2017, 6, 21), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 837, Datum: new Date(2017, 6, 27), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 839, Datum: new Date(2017, 6, 31), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 841, Datum: new Date(2017, 7, 2), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 867, Datum: new Date(2017, 6, 17), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 868, Datum: new Date(2017, 6, 18), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 869, Datum: new Date(2017, 6, 19), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 870, Datum: new Date(2017, 6, 20), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 871, Datum: new Date(2017, 6, 21), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 812, Datum: new Date(2017, 7, 14), Omschrijving: "Zomerverlof", LeverancierID: 9 } , { ID: 813, Datum: new Date(2017, 6, 17), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 814, Datum: new Date(2017, 6, 18), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 815, Datum: new Date(2017, 6, 19), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 816, Datum: new Date(2017, 6, 20), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 817, Datum: new Date(2017, 6, 21), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 818, Datum: new Date(2017, 6, 24), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 819, Datum: new Date(2017, 6, 25), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 820, Datum: new Date(2017, 6, 26), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 821, Datum: new Date(2017, 6, 27), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 822, Datum: new Date(2017, 6, 28), Omschrijving: "Zomerverlof", LeverancierID: 21 } , { ID: 872, Datum: new Date(2017, 6, 24), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 873, Datum: new Date(2017, 6, 25), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 874, Datum: new Date(2017, 6, 26), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 875, Datum: new Date(2017, 6, 27), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 876, Datum: new Date(2017, 6, 28), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 877, Datum: new Date(2017, 6, 31), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 878, Datum: new Date(2017, 7, 1), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 879, Datum: new Date(2017, 7, 2), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 880, Datum: new Date(2017, 7, 3), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 881, Datum: new Date(2017, 7, 4), Omschrijving: "Zomerverlof", LeverancierID: 5 } , { ID: 882, Datum: new Date(2017, 6, 24), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 884, Datum: new Date(2017, 6, 26), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 886, Datum: new Date(2017, 6, 28), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 888, Datum: new Date(2017, 7, 1), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 890, Datum: new Date(2017, 7, 3), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 892, Datum: new Date(2017, 9, 2), Omschrijving: "nationale feestdagen China", LeverancierID: 2 } , { ID: 894, Datum: new Date(2017, 9, 4), Omschrijving: "nationale feestdagen China", LeverancierID: 2 } , { ID: 899, Datum: new Date(2018, 4, 31), Omschrijving: "Sacramentsdag", LeverancierID: 6 } , { ID: 900, Datum: new Date(2018, 9, 3), Omschrijving: "Dag v/d Duitse eenheid", LeverancierID: 6 } , { ID: 901, Datum: new Date(2018, 10, 21), Omschrijving: "Buß- und Bettag", LeverancierID: 6 } , { ID: 960, Datum: new Date(2018, 4, 10), Omschrijving: "Onze Lieve Heer Hemelvaart", LeverancierID: 0 } , { ID: 904, Datum: new Date(2017, 11, 28), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 961, Datum: new Date(2018, 4, 20), Omschrijving: "Pinksteren", LeverancierID: 0 } , { ID: 962, Datum: new Date(2018, 4, 21), Omschrijving: "Pinkstermaandag", LeverancierID: 0 } , { ID: 963, Datum: new Date(2018, 6, 21), Omschrijving: "Nationale feestdag ", LeverancierID: 0 } , { ID: 964, Datum: new Date(2018, 7, 15), Omschrijving: " Onze Lieve Vrouw Hemelvaart", LeverancierID: 0 } , { ID: 965, Datum: new Date(2018, 10, 1), Omschrijving: "Allerheiligen", LeverancierID: 0 } , { ID: 966, Datum: new Date(2018, 10, 11), Omschrijving: "Wapenstilstand", LeverancierID: 0 } , { ID: 967, Datum: new Date(2018, 11, 24), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 968, Datum: new Date(2018, 11, 25), Omschrijving: "Kerstmis", LeverancierID: 0 } , { ID: 969, Datum: new Date(2018, 11, 26), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 69, Datum: new Date(2011, 11, 29), Omschrijving: "Jaarlijkse sluiting", LeverancierID: 0 } , { ID: 117, Datum: new Date(2013, 0, 1), Omschrijving: "Nieuwjaar", LeverancierID: 0 } , { ID: 118, Datum: new Date(2013, 2, 31), Omschrijving: "Pasen", LeverancierID: 0 } , { ID: 128, Datum: new Date(2013, 11, 25), Omschrijving: "Kerstmis", LeverancierID: 0 } , { ID: 185, Datum: new Date(2013, 4, 10), Omschrijving: "Brugdag", LeverancierID: 0 } , { ID: 188, Datum: new Date(2013, 6, 17), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 190, Datum: new Date(2013, 6, 19), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 197, Datum: new Date(2013, 3, 5), Omschrijving: "Afdeling gesloten", LeverancierID: 2 } , { ID: 198, Datum: new Date(2013, 3, 4), Omschrijving: "Afdeling gesloten", LeverancierID: 49 } , { ID: 199, Datum: new Date(2013, 3, 5), Omschrijving: "Afdeling gesloten", LeverancierID: 49 } , { ID: 316, Datum: new Date(2014, 7, 4), Omschrijving: "Jaarlijks verlof", LeverancierID: 21 } , { ID: 355, Datum: new Date(2014, 11, 26), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 370, Datum: new Date(2015, 1, 20), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 426, Datum: new Date(2016, 4, 5), Omschrijving: "Feestdag: O.H. Hemelvaart", LeverancierID: 0 } , { ID: 427, Datum: new Date(2016, 4, 16), Omschrijving: "Feestdag: Pinkstermaandag", LeverancierID: 0 } , { ID: 428, Datum: new Date(2016, 6, 21), Omschrijving: "Feestdag: Nationale feestdag", LeverancierID: 0 } , { ID: 429, Datum: new Date(2016, 7, 15), Omschrijving: "Feestdag: OLV Hemelvaart", LeverancierID: 0 } , { ID: 431, Datum: new Date(2016, 10, 11), Omschrijving: "Feestdag: Wapenstilstand", LeverancierID: 0 } , { ID: 433, Datum: new Date(2017, 3, 17), Omschrijving: "Feestdag: Paasmaandag", LeverancierID: 0 } , { ID: 434, Datum: new Date(2017, 4, 1), Omschrijving: "Feestdag: Feest van de Arbeid", LeverancierID: 0 } , { ID: 435, Datum: new Date(2017, 4, 25), Omschrijving: "Feestdag: OH Hemelvaart", LeverancierID: 0 } , { ID: 436, Datum: new Date(2017, 5, 5), Omschrijving: "Feestdag: Pinkstermaandag", LeverancierID: 0 } , { ID: 437, Datum: new Date(2017, 6, 21), Omschrijving: "Feestdag: Nationale Feestdag", LeverancierID: 0 } , { ID: 438, Datum: new Date(2017, 7, 15), Omschrijving: "Feestdag: OLV Hemelvaart", LeverancierID: 0 } , { ID: 440, Datum: new Date(2017, 10, 11), Omschrijving: "Feestdag: Wapenstilstand", LeverancierID: 0 } , { ID: 484, Datum: new Date(2015, 6, 23), Omschrijving: "de man die de cliché maakt is in verlof tot 27/7", LeverancierID: 332 } , { ID: 606, Datum: new Date(2016, 6, 22), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 608, Datum: new Date(2016, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 610, Datum: new Date(2016, 6, 27), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 612, Datum: new Date(2016, 6, 29), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 614, Datum: new Date(2016, 7, 2), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 616, Datum: new Date(2016, 7, 4), Omschrijving: "Zomersluiting", LeverancierID: 332 } , { ID: 622, Datum: new Date(2016, 6, 21), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 624, Datum: new Date(2016, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 626, Datum: new Date(2016, 6, 27), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 628, Datum: new Date(2016, 6, 29), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 727, Datum: new Date(2017, 0, 3), Omschrijving: "Vakantie", LeverancierID: 5 } , { ID: 728, Datum: new Date(2017, 0, 4), Omschrijving: "Vakantie", LeverancierID: 5 } , { ID: 730, Datum: new Date(2017, 0, 6), Omschrijving: "Vakantie", LeverancierID: 5 } , { ID: 732, Datum: new Date(2017, 0, 10), Omschrijving: "Vakantie drukker", LeverancierID: 5 } , { ID: 734, Datum: new Date(2017, 0, 12), Omschrijving: "Vakantie drukker", LeverancierID: 5 } , { ID: 749, Datum: new Date(2016, 11, 27), Omschrijving: "Kerstsluiting", LeverancierID: 397 } , { ID: 835, Datum: new Date(2017, 6, 25), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 897, Datum: new Date(2017, 10, 22), Omschrijving: "Buß- und Bettag", LeverancierID: 6 } , { ID: 898, Datum: new Date(2018, 2, 30), Omschrijving: "Goede vrijdag", LeverancierID: 6 } , { ID: 906, Datum: new Date(2018, 0, 1), Omschrijving: "Nieuwjaarsdag", LeverancierID: 0 } , { ID: 942, Datum: new Date(2018, 1, 19), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 943, Datum: new Date(2018, 1, 20), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 944, Datum: new Date(2018, 1, 21), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 945, Datum: new Date(2018, 1, 23), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 946, Datum: new Date(2018, 1, 26), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 947, Datum: new Date(2018, 1, 27), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 948, Datum: new Date(2018, 1, 28), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 949, Datum: new Date(2018, 2, 1), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 950, Datum: new Date(2018, 2, 2), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 951, Datum: new Date(2018, 1, 12), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 952, Datum: new Date(2018, 1, 13), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 953, Datum: new Date(2018, 1, 14), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 954, Datum: new Date(2018, 1, 15), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 955, Datum: new Date(2018, 1, 16), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 957, Datum: new Date(2018, 4, 1), Omschrijving: "Dag van de Arbeid", LeverancierID: 0 } , { ID: 958, Datum: new Date(2018, 3, 1), Omschrijving: "Pasen", LeverancierID: 0 } , { ID: 959, Datum: new Date(2018, 3, 2), Omschrijving: "Paasmaandag", LeverancierID: 0 } , { ID: 971, Datum: new Date(2018, 11, 28), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 973, Datum: new Date(2018, 3, 30), Omschrijving: "Brugdag 1 mei", LeverancierID: 0 } , { ID: 974, Datum: new Date(2018, 4, 2), Omschrijving: "national holidays", LeverancierID: 385 } , { ID: 975, Datum: new Date(2018, 4, 2), Omschrijving: "national holidays", LeverancierID: 326 } , { ID: 976, Datum: new Date(2018, 4, 3), Omschrijving: "national holidays", LeverancierID: 385 } , { ID: 978, Datum: new Date(2018, 4, 31), Omschrijving: "Feestdag Polen", LeverancierID: 385 } , { ID: 979, Datum: new Date(2018, 6, 16), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 980, Datum: new Date(2018, 6, 17), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 981, Datum: new Date(2018, 6, 18), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 982, Datum: new Date(2018, 6, 19), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 994, Datum: new Date(2018, 6, 30), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 996, Datum: new Date(2018, 7, 1), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 998, Datum: new Date(2018, 7, 3), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 999, Datum: new Date(2018, 6, 16), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1000, Datum: new Date(2018, 6, 17), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1001, Datum: new Date(2018, 6, 18), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1002, Datum: new Date(2018, 6, 19), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1003, Datum: new Date(2018, 6, 20), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1004, Datum: new Date(2018, 6, 23), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1005, Datum: new Date(2018, 6, 24), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1006, Datum: new Date(2018, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1007, Datum: new Date(2018, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1008, Datum: new Date(2018, 6, 27), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1009, Datum: new Date(2018, 6, 30), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1011, Datum: new Date(2018, 7, 1), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1013, Datum: new Date(2018, 7, 3), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1014, Datum: new Date(2018, 11, 31), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1017, Datum: new Date(2018, 9, 3), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 1019, Datum: new Date(2018, 9, 5), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 1021, Datum: new Date(2018, 9, 1), Omschrijving: "National Day", LeverancierID: 439 } , { ID: 1022, Datum: new Date(2018, 9, 1), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 1023, Datum: new Date(2018, 9, 2), Omschrijving: "National Day", LeverancierID: 439 } , { ID: 1024, Datum: new Date(2018, 9, 2), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 1025, Datum: new Date(2018, 9, 3), Omschrijving: "National Day", LeverancierID: 439 } , { ID: 1026, Datum: new Date(2018, 9, 3), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 1028, Datum: new Date(2018, 9, 4), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 1029, Datum: new Date(2018, 9, 5), Omschrijving: "National Day", LeverancierID: 439 } , { ID: 1030, Datum: new Date(2018, 9, 5), Omschrijving: "National Day", LeverancierID: 340 } , { ID: 1033, Datum: new Date(2018, 9, 15), Omschrijving: "Machine uit", LeverancierID: 5 } , { ID: 1052, Datum: new Date(2018, 11, 26), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1054, Datum: new Date(2018, 11, 28), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1055, Datum: new Date(2018, 11, 31), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1056, Datum: new Date(2019, 0, 1), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1057, Datum: new Date(2019, 0, 2), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1058, Datum: new Date(2019, 0, 3), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1059, Datum: new Date(2019, 0, 4), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1060, Datum: new Date(2019, 0, 7), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1061, Datum: new Date(2019, 0, 8), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1062, Datum: new Date(2019, 0, 9), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1063, Datum: new Date(2019, 1, 4), Omschrijving: "Chinese spring festival", LeverancierID: 2 } , { ID: 1064, Datum: new Date(2019, 1, 4), Omschrijving: "Chinese spring festival", LeverancierID: 439 } , { ID: 1065, Datum: new Date(2019, 1, 4), Omschrijving: "Chinese spring festival", LeverancierID: 340 } , { ID: 1066, Datum: new Date(2019, 1, 5), Omschrijving: "Chinese spring festival", LeverancierID: 2 } , { ID: 1067, Datum: new Date(2019, 1, 5), Omschrijving: "Chinese spring festival", LeverancierID: 439 } , { ID: 1068, Datum: new Date(2019, 1, 5), Omschrijving: "Chinese spring festival", LeverancierID: 340 } , { ID: 1069, Datum: new Date(2019, 1, 6), Omschrijving: "Chinese spring festival", LeverancierID: 2 } , { ID: 1070, Datum: new Date(2019, 1, 6), Omschrijving: "Chinese spring festival", LeverancierID: 439 } , { ID: 1071, Datum: new Date(2019, 1, 6), Omschrijving: "Chinese spring festival", LeverancierID: 340 } , { ID: 1072, Datum: new Date(2019, 1, 7), Omschrijving: "Chinese spring festival", LeverancierID: 2 } , { ID: 1073, Datum: new Date(2019, 1, 7), Omschrijving: "Chinese spring festival", LeverancierID: 439 } , { ID: 1074, Datum: new Date(2019, 1, 7), Omschrijving: "Chinese spring festival", LeverancierID: 340 } , { ID: 1075, Datum: new Date(2019, 1, 8), Omschrijving: "Chinese spring festival", LeverancierID: 2 } , { ID: 1076, Datum: new Date(2019, 1, 8), Omschrijving: "Chinese spring festival", LeverancierID: 439 } , { ID: 1077, Datum: new Date(2019, 1, 8), Omschrijving: "Chinese spring festival", LeverancierID: 340 } , { ID: 1078, Datum: new Date(2019, 1, 11), Omschrijving: "Chinese spring festival", LeverancierID: 2 } , { ID: 1079, Datum: new Date(2019, 1, 11), Omschrijving: "Chinese spring festival", LeverancierID: 439 } , { ID: 1080, Datum: new Date(2019, 1, 11), Omschrijving: "Chinese spring festival", LeverancierID: 340 } , { ID: 1081, Datum: new Date(2019, 1, 12), Omschrijving: "Chinese Spring Festival", LeverancierID: 2 } , { ID: 1082, Datum: new Date(2019, 1, 12), Omschrijving: "Chinese Spring Festival", LeverancierID: 439 } , { ID: 1083, Datum: new Date(2019, 1, 12), Omschrijving: "Chinese Spring Festival", LeverancierID: 340 } , { ID: 1084, Datum: new Date(2019, 1, 13), Omschrijving: "Chinese Spring Festival", LeverancierID: 2 } , { ID: 1085, Datum: new Date(2019, 1, 13), Omschrijving: "Chinese Spring Festival", LeverancierID: 439 } , { ID: 1090, Datum: new Date(2019, 4, 1), Omschrijving: "1 Mei", LeverancierID: 0 } , { ID: 1091, Datum: new Date(2019, 3, 22), Omschrijving: "Paasmaandag", LeverancierID: 0 } , { ID: 1094, Datum: new Date(2019, 5, 10), Omschrijving: "Pinkstermaandag", LeverancierID: 0 } , { ID: 1095, Datum: new Date(2019, 7, 15), Omschrijving: "O.L.V. hemelvaart", LeverancierID: 0 } , { ID: 1096, Datum: new Date(2019, 10, 1), Omschrijving: "Allerheiligen", LeverancierID: 0 } , { ID: 1097, Datum: new Date(2019, 10, 11), Omschrijving: "Wapenstilstand", LeverancierID: 0 } , { ID: 1098, Datum: new Date(2019, 11, 25), Omschrijving: "Kerstmis", LeverancierID: 0 } , { ID: 1099, Datum: new Date(2019, 10, 22), Omschrijving: "test", LeverancierID: 0 } , { ID: 1100, Datum: new Date(2019, 3, 5), Omschrijving: "Gravenfeest", LeverancierID: 2 } , { ID: 1101, Datum: new Date(2019, 3, 5), Omschrijving: "Gravenfeest", LeverancierID: 439 } , { ID: 1104, Datum: new Date(2019, 4, 1), Omschrijving: "Dag van de arbeid", LeverancierID: 439 } , { ID: 1105, Datum: new Date(2019, 4, 1), Omschrijving: "Dag van de arbeid", LeverancierID: 340 } , { ID: 1106, Datum: new Date(2019, 4, 2), Omschrijving: "Dag van de arbeid", LeverancierID: 2 } , { ID: 1107, Datum: new Date(2019, 4, 2), Omschrijving: "Dag van de arbeid", LeverancierID: 439 } , { ID: 1108, Datum: new Date(2019, 4, 2), Omschrijving: "Dag van de arbeid", LeverancierID: 340 } , { ID: 1109, Datum: new Date(2019, 4, 3), Omschrijving: "Dag van de arbeid", LeverancierID: 2 } , { ID: 1110, Datum: new Date(2019, 4, 3), Omschrijving: "Dag van de arbeid", LeverancierID: 439 } , { ID: 1111, Datum: new Date(2019, 4, 3), Omschrijving: "Dag van de arbeid", LeverancierID: 340 } , { ID: 1112, Datum: new Date(2019, 4, 4), Omschrijving: "Dag van de arbeid", LeverancierID: 2 } , { ID: 1113, Datum: new Date(2019, 4, 4), Omschrijving: "Dag van de arbeid", LeverancierID: 439 } , { ID: 1114, Datum: new Date(2019, 4, 4), Omschrijving: "Dag van de arbeid", LeverancierID: 340 } , { ID: 1115, Datum: new Date(2019, 5, 7), Omschrijving: "Dragen boat festival ", LeverancierID: 2 } , { ID: 86, Datum: new Date(2012, 0, 3), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 87, Datum: new Date(2012, 0, 4), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 129, Datum: new Date(2012, 9, 1), Omschrijving: "Afdeling 'Stoffen en siliconen bandjes' gesloten", LeverancierID: 2 } , { ID: 130, Datum: new Date(2012, 9, 2), Omschrijving: "Afdeling 'Stoffen en siliconen bandjes' gesloten", LeverancierID: 2 } , { ID: 131, Datum: new Date(2012, 9, 3), Omschrijving: "Afdeling 'Stoffen en siliconen bandjes' gesloten", LeverancierID: 2 } , { ID: 132, Datum: new Date(2012, 9, 4), Omschrijving: "Afdeling 'Stoffen en siliconen bandjes' gesloten", LeverancierID: 2 } , { ID: 133, Datum: new Date(2012, 9, 5), Omschrijving: "Afdeling 'Stoffen en siliconen bandjes' gesloten", LeverancierID: 2 } , { ID: 227, Datum: new Date(2013, 7, 2), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 289, Datum: new Date(2014, 6, 23), Omschrijving: "Veflof Textiel afdeling", LeverancierID: 9 } , { ID: 290, Datum: new Date(2014, 6, 24), Omschrijving: "Veflof Textiel afdeling", LeverancierID: 9 } , { ID: 296, Datum: new Date(2014, 7, 1), Omschrijving: "Veflof Textiel afdeling", LeverancierID: 9 } , { ID: 401, Datum: new Date(2015, 6, 31), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 407, Datum: new Date(2015, 11, 30), Omschrijving: "Collectief verlof", LeverancierID: 0 } , { ID: 420, Datum: new Date(2015, 11, 28), Omschrijving: "collectief verlof", LeverancierID: 0 } , { ID: 422, Datum: new Date(2015, 11, 30), Omschrijving: "collectief verlof", LeverancierID: 0 } , { ID: 425, Datum: new Date(2016, 2, 28), Omschrijving: "Feestdag: Paasmaandag", LeverancierID: 0 } , { ID: 460, Datum: new Date(2015, 6, 28), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 462, Datum: new Date(2015, 6, 30), Omschrijving: "jaarlijks verlof", LeverancierID: 13 } , { ID: 506, Datum: new Date(2015, 9, 1), Omschrijving: "Feestdag China", LeverancierID: 2 } , { ID: 507, Datum: new Date(2015, 9, 2), Omschrijving: "Feestdag China", LeverancierID: 2 } , { ID: 509, Datum: new Date(2015, 9, 5), Omschrijving: "Feestdag China", LeverancierID: 2 } , { ID: 511, Datum: new Date(2015, 9, 7), Omschrijving: "Feestdag China", LeverancierID: 2 } , { ID: 514, Datum: new Date(2015, 9, 5), Omschrijving: "feestdag China", LeverancierID: 340 } , { ID: 516, Datum: new Date(2015, 9, 7), Omschrijving: "feestdag China", LeverancierID: 340 } , { ID: 568, Datum: new Date(2016, 1, 1), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 569, Datum: new Date(2016, 1, 2), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 570, Datum: new Date(2016, 1, 3), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 571, Datum: new Date(2016, 1, 4), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 572, Datum: new Date(2016, 1, 1), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 573, Datum: new Date(2016, 1, 2), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 576, Datum: new Date(2016, 1, 16), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 577, Datum: new Date(2016, 1, 16), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 578, Datum: new Date(2016, 1, 17), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 579, Datum: new Date(2016, 1, 17), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 580, Datum: new Date(2016, 1, 18), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 581, Datum: new Date(2016, 1, 18), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 582, Datum: new Date(2016, 1, 19), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 583, Datum: new Date(2016, 1, 19), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 700, Datum: new Date(2016, 11, 26), Omschrijving: "Vakantie", LeverancierID: 9 } , { ID: 702, Datum: new Date(2016, 11, 28), Omschrijving: "Vakantie", LeverancierID: 9 } , { ID: 704, Datum: new Date(2016, 11, 30), Omschrijving: "Vakantie", LeverancierID: 9 } , { ID: 740, Datum: new Date(2016, 11, 30), Omschrijving: "Vakantie", LeverancierID: 35 } , { ID: 823, Datum: new Date(2017, 6, 6), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 824, Datum: new Date(2017, 6, 7), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 825, Datum: new Date(2017, 6, 10), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 826, Datum: new Date(2017, 6, 11), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 827, Datum: new Date(2017, 6, 12), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 828, Datum: new Date(2017, 6, 13), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 829, Datum: new Date(2017, 6, 14), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 830, Datum: new Date(2017, 6, 17), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 831, Datum: new Date(2017, 6, 18), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 832, Datum: new Date(2017, 7, 14), Omschrijving: "Brugdag", LeverancierID: 332 } , { ID: 1034, Datum: new Date(2018, 9, 16), Omschrijving: "Machine uit", LeverancierID: 5 } , { ID: 905, Datum: new Date(2017, 11, 29), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1035, Datum: new Date(2018, 9, 17), Omschrijving: "Machine uit", LeverancierID: 5 } , { ID: 1036, Datum: new Date(2018, 9, 18), Omschrijving: "Machine uit", LeverancierID: 5 } , { ID: 1037, Datum: new Date(2018, 9, 19), Omschrijving: "Machine uit", LeverancierID: 5 } , { ID: 1040, Datum: new Date(2018, 10, 2), Omschrijving: "Brugdag", LeverancierID: 0 } , { ID: 1053, Datum: new Date(2018, 11, 27), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1092, Datum: new Date(2019, 4, 30), Omschrijving: "OH Hemelvaart", LeverancierID: 0 } , { ID: 1093, Datum: new Date(2019, 4, 30), Omschrijving: "O.H. Hemelvaart", LeverancierID: 0 } , { ID: 1102, Datum: new Date(2019, 3, 5), Omschrijving: "Gravenfeest", LeverancierID: 340 } , { ID: 1103, Datum: new Date(2019, 4, 1), Omschrijving: "Dag van de arbeid", LeverancierID: 2 } , { ID: 1116, Datum: new Date(2019, 5, 7), Omschrijving: "The Dragon Boat Festival", LeverancierID: 2 } , { ID: 1117, Datum: new Date(2019, 5, 7), Omschrijving: "The Dragon Boat Festival", LeverancierID: 439 } , { ID: 1119, Datum: new Date(2019, 5, 8), Omschrijving: "The Dragon Boat Festival", LeverancierID: 2 } , { ID: 1120, Datum: new Date(2019, 5, 8), Omschrijving: "The Dragon Boat Festival", LeverancierID: 439 } , { ID: 1122, Datum: new Date(2019, 5, 9), Omschrijving: "The Dragon Boat Festival", LeverancierID: 2 } , { ID: 1123, Datum: new Date(2019, 5, 9), Omschrijving: "The Dragon Boat Festival", LeverancierID: 439 } , { ID: 1124, Datum: new Date(2019, 5, 9), Omschrijving: "The Dragon Boat Festival", LeverancierID: 340 } , { ID: 1125, Datum: new Date(2019, 6, 22), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1126, Datum: new Date(2019, 6, 23), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1127, Datum: new Date(2019, 6, 24), Omschrijving: "Zomersluiting", LeverancierID: 0 } , { ID: 1128, Datum: new Date(2019, 6, 24), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1129, Datum: new Date(2019, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1130, Datum: new Date(2019, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1131, Datum: new Date(2019, 6, 29), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1132, Datum: new Date(2019, 6, 30), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1133, Datum: new Date(2019, 6, 31), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1134, Datum: new Date(2019, 7, 1), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1135, Datum: new Date(2019, 7, 2), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 1136, Datum: new Date(2019, 6, 22), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1137, Datum: new Date(2019, 6, 23), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1138, Datum: new Date(2019, 6, 24), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1139, Datum: new Date(2019, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1141, Datum: new Date(2019, 6, 29), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1142, Datum: new Date(2019, 6, 30), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1143, Datum: new Date(2019, 6, 31), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1148, Datum: new Date(2019, 6, 17), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1149, Datum: new Date(2019, 6, 18), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1150, Datum: new Date(2019, 6, 19), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1151, Datum: new Date(2019, 6, 22), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1152, Datum: new Date(2019, 6, 22), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1153, Datum: new Date(2019, 6, 23), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1154, Datum: new Date(2019, 6, 23), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1155, Datum: new Date(2019, 6, 24), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1156, Datum: new Date(2019, 6, 24), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1157, Datum: new Date(2019, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1158, Datum: new Date(2019, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1159, Datum: new Date(2019, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1160, Datum: new Date(2019, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1161, Datum: new Date(2019, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1162, Datum: new Date(2019, 6, 29), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1163, Datum: new Date(2019, 6, 29), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1164, Datum: new Date(2019, 6, 30), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1165, Datum: new Date(2019, 6, 30), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1166, Datum: new Date(2019, 6, 31), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1167, Datum: new Date(2019, 6, 31), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1168, Datum: new Date(2019, 7, 1), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1169, Datum: new Date(2019, 7, 1), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1170, Datum: new Date(2019, 7, 2), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1171, Datum: new Date(2019, 7, 2), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1172, Datum: new Date(2019, 9, 1), Omschrijving: "Gouden Week", LeverancierID: 2 } , { ID: 1175, Datum: new Date(2019, 9, 2), Omschrijving: "Gouden Week", LeverancierID: 2 } , { ID: 1176, Datum: new Date(2019, 9, 2), Omschrijving: "Gouden Week", LeverancierID: 439 } , { ID: 1178, Datum: new Date(2019, 9, 3), Omschrijving: "Gouden Week", LeverancierID: 2 } , { ID: 1182, Datum: new Date(2019, 9, 4), Omschrijving: "Gouden Week", LeverancierID: 439 } , { ID: 1183, Datum: new Date(2019, 9, 4), Omschrijving: "Gouden Week", LeverancierID: 340 } , { ID: 1188, Datum: new Date(2019, 9, 6), Omschrijving: "Gouden Week", LeverancierID: 439 } , { ID: 1191, Datum: new Date(2019, 9, 7), Omschrijving: "Gouden Week", LeverancierID: 439 } , { ID: 1192, Datum: new Date(2019, 9, 7), Omschrijving: "Gouden Week", LeverancierID: 340 } , { ID: 1193, Datum: new Date(2019, 9, 8), Omschrijving: "Gouden Week", LeverancierID: 2 } , { ID: 1195, Datum: new Date(2019, 9, 8), Omschrijving: "Gouden Week", LeverancierID: 340 } , { ID: 1196, Datum: new Date(2020, 0, 24), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1197, Datum: new Date(2020, 0, 27), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1202, Datum: new Date(2020, 0, 1), Omschrijving: "Nieuwjaar", LeverancierID: 0 } , { ID: 1203, Datum: new Date(2020, 4, 1), Omschrijving: "Feest vd Arbeid", LeverancierID: 0 } , { ID: 1204, Datum: new Date(2019, 11, 26), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1207, Datum: new Date(2019, 11, 29), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1208, Datum: new Date(2019, 11, 30), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1214, Datum: new Date(2020, 1, 3), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1216, Datum: new Date(2020, 0, 24), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1221, Datum: new Date(2020, 0, 28), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1222, Datum: new Date(2020, 0, 29), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1223, Datum: new Date(2020, 0, 30), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1224, Datum: new Date(2020, 0, 31), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1225, Datum: new Date(2020, 1, 3), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1226, Datum: new Date(2020, 1, 10), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1227, Datum: new Date(2020, 1, 10), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1228, Datum: new Date(2020, 1, 10), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1229, Datum: new Date(2020, 1, 4), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1230, Datum: new Date(2020, 1, 5), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1231, Datum: new Date(2020, 1, 6), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 1233, Datum: new Date(2020, 1, 7), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1234, Datum: new Date(2020, 1, 6), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1235, Datum: new Date(2020, 1, 5), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1236, Datum: new Date(2020, 1, 4), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1237, Datum: new Date(2020, 1, 3), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1238, Datum: new Date(2020, 0, 31), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1239, Datum: new Date(2020, 0, 30), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1240, Datum: new Date(2020, 0, 29), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1241, Datum: new Date(2020, 0, 28), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 1242, Datum: new Date(2020, 0, 27), Omschrijving: "Chinees nieuwjaar", LeverancierID: 340 } , { ID: 94, Datum: new Date(2012, 6, 20), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 100, Datum: new Date(2012, 6, 30), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 158, Datum: new Date(2013, 0, 3), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 186, Datum: new Date(2013, 6, 15), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 193, Datum: new Date(2013, 6, 24), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 194, Datum: new Date(2013, 6, 25), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 195, Datum: new Date(2013, 6, 26), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 202, Datum: new Date(2013, 5, 12), Omschrijving: "Afdeling gesloten", LeverancierID: 2 } , { ID: 222, Datum: new Date(2013, 6, 26), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 253, Datum: new Date(2013, 11, 31), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 256, Datum: new Date(2013, 11, 26), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 258, Datum: new Date(2013, 11, 30), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 259, Datum: new Date(2013, 11, 31), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 332, Datum: new Date(2014, 9, 2), Omschrijving: "Nationale feestdag", LeverancierID: 2 } , { ID: 366, Datum: new Date(2015, 1, 16), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 439, Datum: new Date(2017, 10, 1), Omschrijving: "Feestdag: Allerheiligen", LeverancierID: 0 } , { ID: 441, Datum: new Date(2017, 11, 25), Omschrijving: "Feestdag: Kerstmis", LeverancierID: 0 } , { ID: 716, Datum: new Date(2016, 11, 26), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 542, Datum: new Date(2015, 11, 23), Omschrijving: "Textiel gesloten", LeverancierID: 9 } , { ID: 717, Datum: new Date(2016, 11, 27), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 718, Datum: new Date(2016, 11, 28), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 719, Datum: new Date(2016, 11, 29), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 720, Datum: new Date(2016, 11, 30), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 721, Datum: new Date(2017, 0, 2), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 722, Datum: new Date(2017, 0, 3), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 723, Datum: new Date(2017, 0, 4), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 724, Datum: new Date(2017, 0, 5), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 725, Datum: new Date(2017, 0, 6), Omschrijving: "Vakantie", LeverancierID: 332 } , { ID: 736, Datum: new Date(2016, 11, 26), Omschrijving: "Vakantie", LeverancierID: 35 } , { ID: 737, Datum: new Date(2016, 11, 27), Omschrijving: "Vakantie", LeverancierID: 35 } , { ID: 739, Datum: new Date(2016, 11, 29), Omschrijving: "Vakantie", LeverancierID: 35 } , { ID: 741, Datum: new Date(2017, 0, 2), Omschrijving: "Vakantie", LeverancierID: 35 } , { ID: 762, Datum: new Date(2017, 0, 27), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 771, Datum: new Date(2017, 0, 26), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 772, Datum: new Date(2017, 0, 27), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 773, Datum: new Date(2017, 0, 28), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 774, Datum: new Date(2017, 0, 29), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 775, Datum: new Date(2017, 0, 30), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 776, Datum: new Date(2017, 0, 31), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 777, Datum: new Date(2017, 1, 1), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 778, Datum: new Date(2017, 1, 2), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 779, Datum: new Date(2017, 1, 3), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 780, Datum: new Date(2017, 1, 4), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 781, Datum: new Date(2017, 1, 6), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 782, Datum: new Date(2017, 1, 6), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 783, Datum: new Date(2017, 1, 7), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 784, Datum: new Date(2017, 1, 7), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 785, Datum: new Date(2017, 1, 8), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 786, Datum: new Date(2017, 1, 8), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 787, Datum: new Date(2017, 1, 9), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 788, Datum: new Date(2017, 1, 9), Omschrijving: "Chinese New Year", LeverancierID: 340 } , { ID: 941, Datum: new Date(2018, 1, 22), Omschrijving: "CNY", LeverancierID: 439 } , { ID: 1016, Datum: new Date(2018, 9, 1), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 1018, Datum: new Date(2018, 9, 4), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 1046, Datum: new Date(2019, 0, 2), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1180, Datum: new Date(2019, 9, 3), Omschrijving: "Gouden Week", LeverancierID: 340 } , { ID: 1194, Datum: new Date(2019, 9, 8), Omschrijving: "Gouden Week", LeverancierID: 439 } , { ID: 1205, Datum: new Date(2019, 11, 27), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1210, Datum: new Date(2020, 0, 2), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1211, Datum: new Date(2020, 0, 3), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1232, Datum: new Date(2020, 1, 7), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 142, Datum: new Date(2012, 11, 24), Omschrijving: "Textiel afdeling gesloten", LeverancierID: 9 } , { ID: 164, Datum: new Date(2014, 4, 29), Omschrijving: "O.H Hemelvaart", LeverancierID: 0 } , { ID: 166, Datum: new Date(2014, 5, 9), Omschrijving: "Pinkstermaandag", LeverancierID: 0 } , { ID: 167, Datum: new Date(2014, 6, 21), Omschrijving: "Nationale Feestdag", LeverancierID: 0 } , { ID: 169, Datum: new Date(2014, 10, 1), Omschrijving: "Allerheiligen", LeverancierID: 0 } , { ID: 257, Datum: new Date(2013, 11, 27), Omschrijving: "Kerstvakantie", LeverancierID: 0 } , { ID: 293, Datum: new Date(2014, 6, 29), Omschrijving: "Veflof Textiel afdeling", LeverancierID: 9 } , { ID: 298, Datum: new Date(2014, 6, 23), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 299, Datum: new Date(2014, 6, 24), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 304, Datum: new Date(2014, 6, 31), Omschrijving: "jaarlijks verlof", LeverancierID: 21 } , { ID: 335, Datum: new Date(2014, 9, 7), Omschrijving: "Nationale feestdag", LeverancierID: 2 } , { ID: 372, Datum: new Date(2015, 1, 10), Omschrijving: "chinees nieuwjaa", LeverancierID: 2 } , { ID: 374, Datum: new Date(2015, 1, 12), Omschrijving: "chinees nieuwjaa", LeverancierID: 2 } , { ID: 375, Datum: new Date(2015, 1, 13), Omschrijving: "chinees nieuwjaa", LeverancierID: 2 } , { ID: 376, Datum: new Date(2015, 1, 16), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 377, Datum: new Date(2015, 1, 17), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 379, Datum: new Date(2015, 1, 19), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 380, Datum: new Date(2015, 1, 20), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 382, Datum: new Date(2015, 1, 24), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 390, Datum: new Date(2015, 4, 25), Omschrijving: "Pinkstermaandag", LeverancierID: 0 } , { ID: 391, Datum: new Date(2015, 10, 11), Omschrijving: "Wapenstilstand", LeverancierID: 0 } , { ID: 392, Datum: new Date(2015, 6, 20), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 399, Datum: new Date(2015, 6, 29), Omschrijving: "Collectief verlof", LeverancierID: 9 } , { ID: 403, Datum: new Date(2015, 11, 24), Omschrijving: "Collectief verlof", LeverancierID: 0 } , { ID: 404, Datum: new Date(2015, 11, 25), Omschrijving: "Feestdag: Kerstmis", LeverancierID: 0 } , { ID: 405, Datum: new Date(2015, 11, 28), Omschrijving: "Collectief verlof", LeverancierID: 0 } , { ID: 406, Datum: new Date(2015, 11, 29), Omschrijving: "Collectief verlof", LeverancierID: 0 } , { ID: 408, Datum: new Date(2015, 11, 31), Omschrijving: "Collectief verlof", LeverancierID: 0 } , { ID: 510, Datum: new Date(2015, 9, 6), Omschrijving: "Feestdag China", LeverancierID: 2 } , { ID: 536, Datum: new Date(2015, 11, 28), Omschrijving: "The Box and Beermat Company gesloten ", LeverancierID: 35 } , { ID: 538, Datum: new Date(2015, 11, 30), Omschrijving: "The Box and Beermat Company gesloten ", LeverancierID: 35 } , { ID: 575, Datum: new Date(2016, 1, 4), Omschrijving: "holiday", LeverancierID: 2 } , { ID: 798, Datum: new Date(2017, 4, 2), Omschrijving: "Feestdag Polen", LeverancierID: 385 } , { ID: 866, Datum: new Date(2017, 6, 11), Omschrijving: "power cut", LeverancierID: 385 } , { ID: 896, Datum: new Date(2017, 9, 6), Omschrijving: "nationale feestdagen China", LeverancierID: 2 } , { ID: 970, Datum: new Date(2018, 11, 27), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 972, Datum: new Date(2019, 0, 1), Omschrijving: "Nieuwjaar", LeverancierID: 0 } , { ID: 1212, Datum: new Date(2019, 11, 20), Omschrijving: "Sluiting", LeverancierID: 408 } , { ID: 1217, Datum: new Date(2020, 1, 5), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1218, Datum: new Date(2020, 1, 6), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1220, Datum: new Date(2020, 0, 27), Omschrijving: "Chinees nieuwjaar", LeverancierID: 439 } , { ID: 151, Datum: new Date(2012, 11, 31), Omschrijving: "Oudejaarsavond", LeverancierID: 0 } , { ID: 156, Datum: new Date(2012, 11, 31), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 157, Datum: new Date(2013, 0, 2), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 206, Datum: new Date(2013, 6, 25), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 207, Datum: new Date(2013, 6, 26), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 209, Datum: new Date(2013, 6, 30), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 210, Datum: new Date(2013, 6, 31), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 211, Datum: new Date(2013, 7, 1), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 216, Datum: new Date(2013, 7, 8), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 217, Datum: new Date(2013, 7, 9), Omschrijving: "Verlof", LeverancierID: 5 } , { ID: 218, Datum: new Date(2013, 6, 22), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 221, Datum: new Date(2013, 6, 25), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 224, Datum: new Date(2013, 6, 30), Omschrijving: "verlof", LeverancierID: 67 } , { ID: 247, Datum: new Date(2014, 0, 6), Omschrijving: "feestdag Duitsland", LeverancierID: 6 } , { ID: 373, Datum: new Date(2015, 1, 11), Omschrijving: "chinees nieuwjaa", LeverancierID: 2 } , { ID: 378, Datum: new Date(2015, 1, 18), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 381, Datum: new Date(2015, 1, 23), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 383, Datum: new Date(2015, 1, 25), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 384, Datum: new Date(2015, 1, 26), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 385, Datum: new Date(2015, 1, 27), Omschrijving: "chinees nieuwjaar", LeverancierID: 2 } , { ID: 478, Datum: new Date(2015, 6, 15), Omschrijving: "de man die de cliché maakt is in verlof tot 27/7", LeverancierID: 332 } , { ID: 479, Datum: new Date(2015, 6, 16), Omschrijving: "de man die de cliché maakt is in verlof tot 27/7", LeverancierID: 332 } , { ID: 480, Datum: new Date(2015, 6, 17), Omschrijving: "de man die de cliché maakt is in verlof tot 27/7", LeverancierID: 332 } , { ID: 481, Datum: new Date(2015, 6, 20), Omschrijving: "de man die de cliché maakt is in verlof tot 27/7", LeverancierID: 332 } , { ID: 482, Datum: new Date(2015, 6, 21), Omschrijving: "de man die de cliché maakt is in verlof tot 27/7", LeverancierID: 332 } , { ID: 513, Datum: new Date(2015, 9, 2), Omschrijving: "feestdag China", LeverancierID: 340 } , { ID: 515, Datum: new Date(2015, 9, 6), Omschrijving: "feestdag China", LeverancierID: 340 } , { ID: 566, Datum: new Date(2016, 1, 11), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 745, Datum: new Date(2016, 11, 26), Omschrijving: "2e Kerstdag", LeverancierID: 1 } , { ID: 791, Datum: new Date(2017, 3, 3), Omschrijving: "Public holiday", LeverancierID: 2 } , { ID: 793, Datum: new Date(2017, 3, 4), Omschrijving: "Public Holiday", LeverancierID: 2 } , { ID: 796, Datum: new Date(2017, 3, 27), Omschrijving: "Koningsdag", LeverancierID: 15 } , { ID: 883, Datum: new Date(2017, 6, 25), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 885, Datum: new Date(2017, 6, 27), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 887, Datum: new Date(2017, 6, 31), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 889, Datum: new Date(2017, 7, 2), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 891, Datum: new Date(2017, 7, 4), Omschrijving: "Zomerverlof", LeverancierID: 35 } , { ID: 907, Datum: new Date(2017, 11, 26), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 908, Datum: new Date(2017, 11, 27), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1198, Datum: new Date(2020, 0, 28), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1199, Datum: new Date(2020, 0, 29), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1200, Datum: new Date(2020, 0, 30), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1201, Datum: new Date(2020, 0, 31), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1213, Datum: new Date(2020, 0, 6), Omschrijving: "Levering vandaag niet mogelijk", LeverancierID: 0 } , { ID: 179, Datum: new Date(2013, 1, 14), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 2 } , { ID: 182, Datum: new Date(2013, 1, 15), Omschrijving: "Chinees Nieuwjaar", LeverancierID: 49 } , { ID: 318, Datum: new Date(2014, 6, 23), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 322, Datum: new Date(2014, 6, 29), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 323, Datum: new Date(2014, 6, 30), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 329, Datum: new Date(2014, 7, 7), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 268, Datum: new Date(2014, 0, 24), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 269, Datum: new Date(2014, 0, 27), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 270, Datum: new Date(2014, 0, 28), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 271, Datum: new Date(2014, 0, 29), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 272, Datum: new Date(2014, 0, 30), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 273, Datum: new Date(2014, 0, 31), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 274, Datum: new Date(2014, 1, 3), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 275, Datum: new Date(2014, 1, 4), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 276, Datum: new Date(2014, 1, 5), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 277, Datum: new Date(2014, 1, 6), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 278, Datum: new Date(2014, 1, 7), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 279, Datum: new Date(2014, 1, 10), Omschrijving: "Afdeling verlof", LeverancierID: 2 } , { ID: 333, Datum: new Date(2014, 9, 3), Omschrijving: "Nationale feestdag", LeverancierID: 2 } , { ID: 356, Datum: new Date(2014, 11, 29), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 358, Datum: new Date(2014, 11, 31), Omschrijving: "Zeefdruk afdeling gesloten", LeverancierID: 5 } , { ID: 362, Datum: new Date(2015, 1, 10), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 364, Datum: new Date(2015, 1, 12), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 371, Datum: new Date(2015, 1, 9), Omschrijving: "chinees nieuwjaa", LeverancierID: 2 } , { ID: 486, Datum: new Date(2015, 6, 20), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 410, Datum: new Date(2015, 1, 24), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 411, Datum: new Date(2015, 1, 25), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 487, Datum: new Date(2015, 6, 22), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 488, Datum: new Date(2015, 6, 23), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 489, Datum: new Date(2015, 6, 24), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 490, Datum: new Date(2015, 6, 27), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 491, Datum: new Date(2015, 6, 28), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 492, Datum: new Date(2015, 6, 29), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 493, Datum: new Date(2015, 6, 30), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 494, Datum: new Date(2015, 6, 31), Omschrijving: "jaarlijks verlof", LeverancierID: 71 } , { ID: 517, Datum: new Date(2015, 9, 2), Omschrijving: "openbedrijvendag voorbereiding", LeverancierID: 1 } , { ID: 526, Datum: new Date(2015, 11, 22), Omschrijving: "screenex verlof", LeverancierID: 5 } , { ID: 528, Datum: new Date(2015, 11, 24), Omschrijving: "screenex verlof", LeverancierID: 5 } , { ID: 529, Datum: new Date(2015, 11, 25), Omschrijving: "screenex verlof", LeverancierID: 5 } , { ID: 530, Datum: new Date(2015, 11, 28), Omschrijving: "screenex verlof", LeverancierID: 5 } , { ID: 532, Datum: new Date(2015, 11, 30), Omschrijving: "screenex verlof", LeverancierID: 5 } , { ID: 534, Datum: new Date(2016, 0, 1), Omschrijving: "screenex verlof", LeverancierID: 5 } , { ID: 543, Datum: new Date(2015, 11, 24), Omschrijving: "Textiel gesloten", LeverancierID: 9 } , { ID: 544, Datum: new Date(2015, 11, 26), Omschrijving: "Textiel gesloten", LeverancierID: 9 } , { ID: 545, Datum: new Date(2015, 11, 27), Omschrijving: "Textiel gesloten", LeverancierID: 9 } , { ID: 546, Datum: new Date(2015, 11, 28), Omschrijving: "Textiel gesloten", LeverancierID: 9 } , { ID: 547, Datum: new Date(2015, 11, 29), Omschrijving: "Textiel gesloten", LeverancierID: 9 } , { ID: 548, Datum: new Date(2015, 11, 30), Omschrijving: "Textiel gesloten", LeverancierID: 9 } , { ID: 549, Datum: new Date(2015, 11, 31), Omschrijving: "Textiel gesloten", LeverancierID: 9 } , { ID: 893, Datum: new Date(2017, 9, 3), Omschrijving: "nationale feestdagen China", LeverancierID: 2 } , { ID: 895, Datum: new Date(2017, 9, 5), Omschrijving: "nationale feestdagen China", LeverancierID: 2 } , { ID: 936, Datum: new Date(2018, 1, 22), Omschrijving: "CNY", LeverancierID: 340 } , { ID: 937, Datum: new Date(2018, 1, 23), Omschrijving: "CNY", LeverancierID: 340 } , { ID: 938, Datum: new Date(2018, 1, 26), Omschrijving: "CNY", LeverancierID: 340 } , { ID: 939, Datum: new Date(2018, 1, 27), Omschrijving: "CNY", LeverancierID: 340 } , { ID: 940, Datum: new Date(2018, 1, 28), Omschrijving: "CNY", LeverancierID: 340 } , { ID: 1118, Datum: new Date(2019, 5, 7), Omschrijving: "The Dragon Boat Festival", LeverancierID: 340 } , { ID: 1121, Datum: new Date(2019, 5, 8), Omschrijving: "The Dragon Boat Festival", LeverancierID: 340 } , { ID: 1173, Datum: new Date(2019, 9, 1), Omschrijving: "Gouden Week", LeverancierID: 439 } , { ID: 1174, Datum: new Date(2019, 9, 1), Omschrijving: "Gouden Week", LeverancierID: 340 } , { ID: 1179, Datum: new Date(2019, 9, 3), Omschrijving: "Gouden Week", LeverancierID: 439 } , { ID: 1181, Datum: new Date(2019, 9, 4), Omschrijving: "Gouden Week", LeverancierID: 2 } , { ID: 1185, Datum: new Date(2019, 9, 5), Omschrijving: "Gouden Week", LeverancierID: 439 } , { ID: 1186, Datum: new Date(2019, 9, 5), Omschrijving: "Gouden Week", LeverancierID: 340 } , { ID: 1190, Datum: new Date(2019, 9, 7), Omschrijving: "Gouden Week", LeverancierID: 2 } , { ID: 1219, Datum: new Date(2020, 1, 7), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 317, Datum: new Date(2014, 6, 22), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 320, Datum: new Date(2014, 6, 25), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 321, Datum: new Date(2014, 6, 28), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 330, Datum: new Date(2014, 7, 8), Omschrijving: "jaarlijks verlof", LeverancierID: 5 } , { ID: 412, Datum: new Date(2015, 1, 26), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 413, Datum: new Date(2015, 1, 27), Omschrijving: "chinees nieuwjaar", LeverancierID: 340 } , { ID: 501, Datum: new Date(2015, 6, 29), Omschrijving: "jaarlijkse vakantie", LeverancierID: 21 } , { ID: 503, Datum: new Date(2015, 6, 31), Omschrijving: "jaarlijkse vakantie", LeverancierID: 21 } , { ID: 562, Datum: new Date(2016, 1, 5), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 563, Datum: new Date(2016, 1, 8), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 564, Datum: new Date(2016, 1, 9), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 565, Datum: new Date(2016, 1, 10), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 567, Datum: new Date(2016, 1, 12), Omschrijving: "holiday", LeverancierID: 340 } , { ID: 597, Datum: new Date(2016, 4, 6), Omschrijving: "brugdag", LeverancierID: 5 } , { ID: 598, Datum: new Date(2016, 4, 5), Omschrijving: "Hemelvaartsdag ", LeverancierID: 15 } , { ID: 599, Datum: new Date(2016, 4, 6), Omschrijving: "Hemelvaartsdag ", LeverancierID: 15 } , { ID: 630, Datum: new Date(2016, 6, 19), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 632, Datum: new Date(2016, 6, 21), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 634, Datum: new Date(2016, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 636, Datum: new Date(2016, 6, 27), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 638, Datum: new Date(2016, 6, 29), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 640, Datum: new Date(2016, 7, 2), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 642, Datum: new Date(2016, 7, 4), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 764, Datum: new Date(2017, 0, 28), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 766, Datum: new Date(2017, 0, 31), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 768, Datum: new Date(2017, 1, 2), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 770, Datum: new Date(2017, 1, 4), Omschrijving: "Chinese New Year", LeverancierID: 2 } , { ID: 792, Datum: new Date(2017, 3, 3), Omschrijving: "Public Holiday", LeverancierID: 340 } , { ID: 794, Datum: new Date(2017, 3, 4), Omschrijving: "Public holiday", LeverancierID: 340 } , { ID: 1010, Datum: new Date(2018, 6, 31), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1012, Datum: new Date(2018, 7, 2), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1020, Datum: new Date(2018, 9, 2), Omschrijving: "National Day", LeverancierID: 2 } , { ID: 1145, Datum: new Date(2019, 7, 2), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1206, Datum: new Date(2019, 11, 28), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 1209, Datum: new Date(2019, 11, 31), Omschrijving: "Kerstsluiting", LeverancierID: 0 } , { ID: 618, Datum: new Date(2016, 6, 15), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 619, Datum: new Date(2016, 6, 18), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 620, Datum: new Date(2016, 6, 19), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 621, Datum: new Date(2016, 6, 20), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 623, Datum: new Date(2016, 6, 22), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 625, Datum: new Date(2016, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 627, Datum: new Date(2016, 6, 28), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 629, Datum: new Date(2016, 6, 18), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 631, Datum: new Date(2016, 6, 20), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 633, Datum: new Date(2016, 6, 22), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 635, Datum: new Date(2016, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 637, Datum: new Date(2016, 6, 28), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 639, Datum: new Date(2016, 7, 1), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 641, Datum: new Date(2016, 7, 3), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 643, Datum: new Date(2016, 7, 5), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 834, Datum: new Date(2017, 6, 24), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 836, Datum: new Date(2017, 6, 26), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 838, Datum: new Date(2017, 6, 28), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 840, Datum: new Date(2017, 7, 1), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 842, Datum: new Date(2017, 7, 3), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 844, Datum: new Date(2017, 7, 4), Omschrijving: "Zomerverlof", LeverancierID: 13 } , { ID: 845, Datum: new Date(2017, 6, 19), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 846, Datum: new Date(2017, 6, 20), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 847, Datum: new Date(2017, 6, 21), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 848, Datum: new Date(2017, 6, 24), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 849, Datum: new Date(2017, 6, 25), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 850, Datum: new Date(2017, 6, 26), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 851, Datum: new Date(2017, 6, 27), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 852, Datum: new Date(2017, 6, 28), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 853, Datum: new Date(2017, 6, 31), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 854, Datum: new Date(2017, 7, 1), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 855, Datum: new Date(2017, 7, 2), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 856, Datum: new Date(2017, 7, 3), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 857, Datum: new Date(2017, 7, 4), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 858, Datum: new Date(2017, 7, 7), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 859, Datum: new Date(2017, 7, 8), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 860, Datum: new Date(2017, 7, 9), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 861, Datum: new Date(2017, 7, 10), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 862, Datum: new Date(2017, 7, 11), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 863, Datum: new Date(2017, 7, 16), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 864, Datum: new Date(2017, 7, 17), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 865, Datum: new Date(2017, 7, 18), Omschrijving: "onderaannemer voor de cliché’s in verlof", LeverancierID: 332 } , { ID: 909, Datum: new Date(2017, 11, 19), Omschrijving: "jaarwissel", LeverancierID: 5 } , { ID: 910, Datum: new Date(2017, 11, 20), Omschrijving: "jaarwissel", LeverancierID: 5 } , { ID: 911, Datum: new Date(2017, 11, 21), Omschrijving: "jaarwissel", LeverancierID: 5 } , { ID: 912, Datum: new Date(2017, 11, 22), Omschrijving: "jaarwissel", LeverancierID: 5 } , { ID: 914, Datum: new Date(2018, 0, 2), Omschrijving: "jaarwissel", LeverancierID: 5 } , { ID: 915, Datum: new Date(2018, 0, 3), Omschrijving: "jaarwissel", LeverancierID: 21 } , { ID: 916, Datum: new Date(2018, 0, 4), Omschrijving: "jaarwissel", LeverancierID: 5 } , { ID: 917, Datum: new Date(2018, 0, 5), Omschrijving: "jaarwissel", LeverancierID: 5 } , { ID: 918, Datum: new Date(2018, 0, 8), Omschrijving: "jaarwissel", LeverancierID: 5 } , { ID: 977, Datum: new Date(2018, 4, 3), Omschrijving: "national holidays", LeverancierID: 326 } , { ID: 989, Datum: new Date(2018, 6, 23), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 990, Datum: new Date(2018, 6, 24), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 991, Datum: new Date(2018, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 929, Datum: new Date(2018, 1, 22), Omschrijving: "CNY", LeverancierID: 2 } , { ID: 930, Datum: new Date(2018, 1, 23), Omschrijving: "CNY", LeverancierID: 2 } , { ID: 931, Datum: new Date(2018, 1, 26), Omschrijving: "CNY", LeverancierID: 2 } , { ID: 932, Datum: new Date(2018, 1, 27), Omschrijving: "CNY", LeverancierID: 2 } , { ID: 933, Datum: new Date(2018, 1, 28), Omschrijving: "CNY", LeverancierID: 2 } , { ID: 934, Datum: new Date(2018, 2, 1), Omschrijving: "CNY", LeverancierID: 2 } , { ID: 935, Datum: new Date(2018, 2, 2), Omschrijving: "CNY", LeverancierID: 2 } , { ID: 992, Datum: new Date(2018, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 993, Datum: new Date(2018, 6, 27), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 995, Datum: new Date(2018, 6, 31), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 997, Datum: new Date(2018, 7, 2), Omschrijving: "Zomersluiting", LeverancierID: 13 } , { ID: 1047, Datum: new Date(2018, 11, 19), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1048, Datum: new Date(2018, 11, 20), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1049, Datum: new Date(2018, 11, 21), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1050, Datum: new Date(2018, 11, 24), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1051, Datum: new Date(2018, 11, 25), Omschrijving: "Kerstsluiting", LeverancierID: 5 } , { ID: 1086, Datum: new Date(2019, 1, 13), Omschrijving: "Chinese Spring Festival", LeverancierID: 340 } , { ID: 1087, Datum: new Date(2019, 1, 14), Omschrijving: "Chinese Spring Festival", LeverancierID: 2 } , { ID: 1088, Datum: new Date(2019, 1, 14), Omschrijving: "Chinese Spring Festival", LeverancierID: 439 } , { ID: 1089, Datum: new Date(2019, 1, 14), Omschrijving: "Chinese Spring Festival", LeverancierID: 340 } , { ID: 1146, Datum: new Date(2019, 6, 15), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1184, Datum: new Date(2019, 9, 5), Omschrijving: "Gouden Week", LeverancierID: 2 } , { ID: 1187, Datum: new Date(2019, 9, 6), Omschrijving: "Gouden Week", LeverancierID: 2 } , { ID: 1215, Datum: new Date(2020, 1, 4), Omschrijving: "Chinees nieuwjaar", LeverancierID: 2 } , { ID: 1027, Datum: new Date(2018, 9, 4), Omschrijving: "National Day", LeverancierID: 439 } , { ID: 1189, Datum: new Date(2019, 9, 6), Omschrijving: "Gouden Week", LeverancierID: 340 } , { ID: 1140, Datum: new Date(2019, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1144, Datum: new Date(2019, 7, 1), Omschrijving: "Zomersluiting", LeverancierID: 21 } , { ID: 1147, Datum: new Date(2019, 6, 16), Omschrijving: "Zomersluiting", LeverancierID: 5 } , { ID: 1177, Datum: new Date(2019, 9, 2), Omschrijving: "Gouden Week", LeverancierID: 340 } , { ID: 983, Datum: new Date(2018, 6, 20), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 984, Datum: new Date(2018, 6, 23), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 985, Datum: new Date(2018, 6, 24), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 986, Datum: new Date(2018, 6, 25), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 987, Datum: new Date(2018, 6, 26), Omschrijving: "Zomersluiting", LeverancierID: 35 } , { ID: 988, Datum: new Date(2018, 6, 27), Omschrijving: "Zomersluiting", LeverancierID: 35 } ]; function addWerkdagen(datum, aantal, levID) { return addWerkdagen_Info(datum, aantal, levID).datum; } function addWerkdagen_Info(datum, aantal, levID) { var newDatum = new Date(datum.getTime()); var verlof = 0; if( !levID ) levID = 0; ff = 0; while(ff < aantal) { newDatum.setDate(newDatum.getDate() + 1); // Controleren of deze dag een weekdag is if( newDatum.getDay() != 0 && newDatum.getDay() != 6 ) { // Controleren of deze dag geen feestdag is if( $.grep(arrKalender, function(feestdag){return (feestdag.LeverancierID == 0 || feestdag.LeverancierID == levID) && feestdag.Datum.toDateString() == newDatum.toDateString();}).length == 0 ) ff++; else verlof++; } } return { datum: newDatum, verlof: verlof }; } function telWerkdagen(datumVan, datumTot, levID) { var newDatum = new Date(datumVan.getTime()); if( !levID ) levID = 0; ff = 0; while(newDatum < datumTot) { newDatum.setDate(newDatum.getDate() + 1); // Controleren of deze dag een weekdag is if( newDatum.getDay() != 0 && newDatum.getDay() != 6 ) { // Controleren of deze dag geen feestdag is if( $.grep(arrKalender, function(feestdag){return (feestdag.LeverancierID == 0 || feestdag.LeverancierID == levID) && feestdag.Datum.toDateString() == newDatum.toDateString();}).length == 0 ) { ff++; } } } return ff; } /* -------------------------------------------------------------- */ /* Adres leesbaar maken /* type = "POST" --> Adres /* type = "F" --> Adres + btwnr /* type = "L" --> Adres + telnr /* type = "A" --> Adres + email + telnr + btwnr /* -------------------------------------------------------------- */ function formatAdres(adres, type) { var retu; if( !adres.voornaam || adres.id == 0 ) { retu = "Account nog niet volledig

"; if( type == "A" ) retu += '' + adres.email + '
'; } else { retu = (adres.firmanaam ? (adres.firmanaam + "
T.a.v. ") : "") + adres.voornaam + " " + adres.achternaam + "
" + adres.adres + "
" + (adres.adres2 ? (adres.adres2 + "
") : "") + adres.postcode + " " + adres.woonplaats + "
" + (adres.land_ISO != "BE" ? adres.land.toUpperCase() + "
" : "") ; if( !type || type == "A" ) retu += "
"; if( type == "A" ) retu += adres.email + "
"; if( adres.telefoonnummer && (!type || type == "L" || type == "A") ) retu += "Tel: " + adres.telefoonnummer + "
"; if( adres.btwnr && (!type || type == "F" || type == "A") ) retu += "Btw: " + adres.btwnr + "
" } return retu; } function apiLng(lngID) { switch (lngID) { case 656: return "Afhalen in Mol"; break; case 657: return "Levering UPS"; break; case 658: return "Levering UPS Rembours"; break; case 659: return "Levering UPS Rembours"; break; case 754: return "Aan huis geleverd"; break; case 755: return "Aan huis geleverd Rembours"; break; case 660: return "Cash/Bancontact"; break; case 661: return "Overschrijving op voorhand"; break; case 662: return "Cash bij levering"; break; case 759: return "Online betalen (VISA, MC, BC, KBC, iDEAL)"; break; case 1712: return "Betalen na levering"; break; case 585: return "Vooraan"; break; case 586: return "Achteraan"; break; case 587: return "Linkermouw"; break; case 588: return "Rechtermouw"; break; case 579: return "Eigen ontwerp"; break; case 581: return "Zelfde opdruk"; break; case 617: return "Namen"; break; case 618: return "Nummers"; break; } }