diff --git a/APPL/AUT/Login.inc b/APPL/AUT/Login.inc
index 3f4e859dbd..93cd49d74f 100644
--- a/APPL/AUT/Login.inc
+++ b/APPL/AUT/Login.inc
@@ -1085,6 +1085,12 @@ function jwt_decode(token)
try
{
// base64 decode and parse JSON
+
+ // FSN#39763 SLNKDWF.DLL v4.16 heeft nog een bug in het decoderen van
+ // url-safe encoded teksten. Daarom hier voor-corrigeren
+ result.headerSeg = result.headerSeg.replace(/\-/g, "+").replace(/\_/g, "/");
+ result.payloadSeg = result.payloadSeg.replace(/\-/g, "+").replace(/\_/g, "/");
+
result.header = JSON.parse(oCrypto.base64_decode(result.headerSeg));
result.payload = JSON.parse(oCrypto.base64_decode(result.payloadSeg));
}
diff --git a/APPL/BES/bes_bestelling.js b/APPL/BES/bes_bestelling.js
index af8ce08b38..81cc12e87c 100644
--- a/APPL/BES/bes_bestelling.js
+++ b/APPL/BES/bes_bestelling.js
@@ -113,14 +113,14 @@ function show_item_details(bes_item_info)
$("#photo").show();
bes_supAddress = bes_item_info.prs_bedrijf_details_loc;
}
- imgObj.onclick = navigateToSupplier;
+ $("#fa_img").attr("onclick", "navigateToSupplier()");
}
else
{
$("#faicon").toggleClass("fa-question fa-file-pdf-o").hide();
+ $("#fa_img").attr("onclick", "");
imgObj.src = "../Pictures/no_photo.gif";
$("#photo").show();
- imgObj.onclick = null;
}
$("#srtgroep_text").html(bes_item_info.srtgroup_text);
diff --git a/APPL/FIN/fin_list.inc b/APPL/FIN/fin_list.inc
index 90144c9146..a3d12df256 100644
--- a/APPL/FIN/fin_list.inc
+++ b/APPL/FIN/fin_list.inc
@@ -721,21 +721,18 @@ function fin_list (params)
var eApprove = !embedded &&
(canapprove &&
oRs("fin_factuur_statuses_key").Value == 2 &&
- oRs("opdrachtnr").Value != " " &&
- budgethouder > 0) &&
+ oRs("opdrachtnr").Value != " ") &&
!deleted;
var eUnapprove = !embedded &&
(canapprove &&
oRs("fin_factuur_statuses_key").Value == 6 &&
- oRs("opdrachtnr").Value != " " &&
- budgethouder > 0) &&
+ oRs("opdrachtnr").Value != " ") &&
!deleted;
var eRejectApprove = eApprove;
var eUnreject = !embedded &&
(eApprove &&
oRs("fin_factuur_statuses_key").Value == 1 &&
- oRs("opdrachtnr").Value != " " &&
- budgethouder > 0) &&
+ oRs("opdrachtnr").Value != " ") &&
!deleted;
var eGoedkeur =!embedded &&
diff --git a/APPL/RES/res.css b/APPL/RES/res.css
index 87dab2d741..b7360b1e00 100644
--- a/APPL/RES/res.css
+++ b/APPL/RES/res.css
@@ -295,12 +295,14 @@ input[type=text].button.required.res_fatal
@media print
{ /* in print-mode doe we de kleuren als border. Daarmee geeft cleaning wel rare 'punten'. Het zij zo. */
- div.res_optie { height:0px!important; border-top:7px solid #31398C; border-bottom:7px solid #31398C; } /* Optie: blauw */
- div.res_definitief { height:0px!important; border-top:7px solid #990000; border-bottom:7px solid #990000; } /* Definitief: rood */
- div.res_blok { height:0px!important; border-top:7px solid #000000; border-bottom:7px solid #000000; } /* Blokkade: zwart */
- div.res_vervallen { height:0px!important; border-top:7px solid #990099; border-bottom:7px solid #990099; } /* Vervallen: paars */
- div.res_nietvrij { height:0px!important; border-top:7px solid #D6D80E; border-bottom:7px solid #D6D80E; } /* Niet beschikbaar: geel */
+ div.res_optie_eigen { height:0px!important; border-top:7px solid #E37B00; border-bottom:7px solid #E37B00; } /* Optie eigen reservering: lichtblauw */
+ div.res_definitief_eigen { height:0px!important; border-top:7px solid #009979; border-bottom:7px solid #009979; } /* Definitief eigen reservering: lichtrood */
+ div.res_optie { height:0px!important; border-top:7px solid rgb(238,176,102); border-bottom:7px solid rgb(238,176,102); } /* Optie: blauw ORANJE */
+ div.res_definitief { height:0px!important; border-top:7px solid #66C2AF; border-bottom:7px solid #66C2AF; } /* Definitief: rood */
+ div.res_blok { height:0px!important; border-top:7px solid #747578; border-bottom:7px solid #747578; } /* Blokkade: zwart GRIJS*/
+ div.res_vervallen { height:0px!important; border-top:7px solid #AB1455; border-bottom:7px solid #AB1455; } /* Vervallen: paars */
+ div.res_nietvrij { height:0px!important; border-top:7px solid #B1B3B4; border-bottom:7px solid #B1B3B4; } /* Niet beschikbaar: oranje LICHTGROEN */
+
table.planbord td.reserv { border:1px solid #888;}
.plancad { display: none; }
}
-
diff --git a/APPL/RES/res_edit_rsv_ruimte.asp b/APPL/RES/res_edit_rsv_ruimte.asp
index f24bdbf46d..8941612ede 100644
--- a/APPL/RES/res_edit_rsv_ruimte.asp
+++ b/APPL/RES/res_edit_rsv_ruimte.asp
@@ -919,8 +919,8 @@ FCLTHeader.Requires({plugins: ["jQuery", "kenmerk"],
}
else
{
- var oms_verplicht = $("#sel_activity").attr("res_activiteit_omsverplicht")
- var bez_verplicht = $("#sel_activity").attr("res_activiteit_aantalverplicht")
+ var oms_verplicht = $("#sel_activity").attr("res_activiteit_omsverplicht");
+ var bez_verplicht = $("#sel_activity").attr("res_activiteit_aantalverplicht");
}
$("#descript").toggleClass("required", oms_verplicht == "1");
$("#bezoekers").toggleClass("required", bez_verplicht == 1);
@@ -1141,9 +1141,9 @@ FCLTHeader.Requires({plugins: ["jQuery", "kenmerk"],
"
res_activiteit_duur="<%=safe.jsfloat(resDuur)%>"
- res_activiteit_omsverplicht="<%=rrr.descript_required%>"
- res_activiteit_aantalverplicht="<%=rrr.aantal_verplicht%>"
- res_activiteit_meteindtijd="<%=rrr.met_eindtijd ? 1 : 0%>">
+ res_activiteit_omsverplicht="<%=rrr.descript_required? 1 : 0%>"
+ res_activiteit_aantalverplicht="<%=rrr.aantal_verplicht? 1 : 0%>"
+ res_activiteit_meteindtijd="<%=rrr.met_eindtijd? 1 : 0%>">
<%
}
if (result.justone)
diff --git a/APPL/Shared/Suggest/stdmeldingFilter.inc b/APPL/Shared/Suggest/stdmeldingFilter.inc
index 157a83d71a..f19f64e8cc 100644
--- a/APPL/Shared/Suggest/stdmeldingFilter.inc
+++ b/APPL/Shared/Suggest/stdmeldingFilter.inc
@@ -53,7 +53,17 @@ function getFiltClauseStdmelding(pfiltcode, params, init)
lfiltClause.where += " AND di.ins_srtdiscipline_key = " + params.srtdisc_key;
}
- if (params.autfunctionKey > -1) // Efficiente versie van FAC_V_MY_PR**S_AFDELINGEN_WRITE
+ // params.autfunctionKey kan een key of een array met keys zijn. Maak hier altijd een array van.
+ var autfunctionkeys = [];
+ if (typeof params.autfunctionKey === "object")
+ autfunctionkeys = params.autfunctionKey;
+ else
+ {
+ if (params.autfunctionKey != -1)
+ autfunctionkeys.push(params.autfunctionKey);
+ }
+
+ if (autfunctionkeys.length)
{
if (user_key == params.perslidKey)
var same_level = 9;
@@ -66,7 +76,7 @@ function getFiltClauseStdmelding(pfiltcode, params, init)
}
lfiltClause.where += " AND di.ins_discipline_key IN"
+ " (SELECT ins_discipline_key FROM fac_v_webgebruiker fw"
- + " WHERE fac_functie_key = " + params.autfunctionKey
+ + " WHERE fac_functie_key IN (" + autfunctionkeys.join(",") + ")"
+ " AND fac_gebruiker_prs_level_write <= " + same_level
+ " AND fac_gebruiker_alg_level_write < 9" // extra: Vooral voor MLDUSE gebruikers met alleen PRS-leesrechten
+ " AND prs_perslid_key = " + user_key
diff --git a/APPL/Shared/User.inc b/APPL/Shared/User.inc
index e86fee9d22..3f2e32346f 100644
--- a/APPL/Shared/User.inc
+++ b/APPL/Shared/User.inc
@@ -1723,6 +1723,7 @@ function Werkplek(wpKey)
+ " , w.prs_werkplek_volgnr"
+ " , w.alg_ruimte_aanduiding"
+ " , w.prs_werkplek_aanduiding"
+ + " , w.alg_locatie_code"
+ " , w.prs_werkplek_virtueel"
+ " , w.prs_werkplek_type"
+ " , pw.prs_perslidwerkplek_bezetting"
@@ -1748,6 +1749,7 @@ function Werkplek(wpKey)
this._prs_werkplek_volgnr = oRs("prs_werkplek_volgnr").value;
this._alg_ruimte_aanduiding = oRs("alg_ruimte_aanduiding").value;
this._prs_werkplek_aanduiding = oRs("prs_werkplek_aanduiding").value;
+ this._alg_locatie_code = oRs("alg_locatie_code").Value;
this._bezetting = oRs("prs_perslidwerkplek_bezetting").value;
this._alg_gebouw_bezoekbaar = oRs("alg_gebouw_bez").value || 0;
}
@@ -1864,8 +1866,21 @@ Werkplek.prototype.prs_werkplek_volgnr = function()
Werkplek.prototype.prs_werkplek_aanduiding = function()
{
- return (S("prs_werkplek_implicit")==1?this._alg_ruimte_aanduiding:this._prs_werkplek_aanduiding)
- + (this._type==1?L("lcl_flexwp_suffix"):"");
+ var wp_aanduiding;
+ if (S("prs_werkplek_implicit") == 1)
+ {
+ if (this._alg_ruimte_aanduiding == null)
+ wp_aanduiding = this._alg_locatie_code; // Dan maar locatiecode tonen;
+ else
+ wp_aanduiding = this._alg_ruimte_aanduiding
+ }
+ else
+ wp_aanduiding = this._prs_werkplek_aanduiding;
+
+ if (this._type == 1)
+ wp_aanduiding += L("lcl_flexwp_suffix");
+
+ return wp_aanduiding;
}
Werkplek.prototype.alg_gebouw_bezoekbaar = function()
diff --git a/APPL/Shared/default.csx b/APPL/Shared/default.csx
index 1cfeea2445..24acc4326a 100644
--- a/APPL/Shared/default.csx
+++ b/APPL/Shared/default.csx
@@ -1588,10 +1588,10 @@ border-spacing: 1px;
.mldflag0, .resflag0 { color: #eee;}
.mldflag1, .resflag1 { color: #4d4d4d; }
.mldflag2, .resflag2 { color: #f15854; }
-.mldflag3, .resflag3 { color: #decf3f; }
+.mldflag3, .resflag3 { color: #ffd600; }
.mldflag4, .resflag4 { color: #5da5da; }
.mldflag5, .resflag5 { color: #60bd68; }
-.mldflag6, .resflag6 { color: #111; }
+.mldflag6, .resflag6 { color: #673ab7; }
.mldflag7, .resflag7 { color: #faa43a; }
.mldflag8, .resflag8 { color: #b276b2; }
.mldflag9, .resflag9 { color: #b2912f; }
@@ -2046,7 +2046,7 @@ border-color: #ddd;
display: inline;
}
#phonebookteaser a {
- color: white;
+ color: ==blockheadercolor==;
}
#ph_gotoFgraph { text-decoration: underline; cursor: pointer; background-color: transparent; }
@@ -2672,7 +2672,9 @@ input.materiaal
max-width: 50px;
}
-@media all and (min-width: 68em){
+/* van 68 naar 69 gezet vanwege problemen met resotie 1366*768 => FSN#39605
+ eventueel nog een keer een tussenwidth definieren? */
+@media all and (min-width: 69em){
/* inputs en suggests */
.fld, .fldkp,
.fldreg, .flddis, .fldloc, .fldbld, .fldflr, .fldroom, .fldworklocation, .fldwpl, .fldpers, .fldcontactpers, .flduitvoerende,
diff --git a/CUST/AAZC/xsl/cust_settings.xsl b/CUST/AAZC/xsl/cust_settings.xsl
index d4e77c8934..5522e862e3 100644
--- a/CUST/AAZC/xsl/cust_settings.xsl
+++ b/CUST/AAZC/xsl/cust_settings.xsl
@@ -4,7 +4,7 @@
../../cust/aaxx/aafm_banner.gif
- ZGN Zorggroep Noorderboog
+ Zorggroep Noorderboog
ZGN
servicedesknoorderboog@aa-fm.com
invoices.vvt@aa-fm.com
diff --git a/CUST/ALLI/xsl/cust.xsl b/CUST/ALLI/xsl/cust.xsl
index fbec9fc78b..7b1178ba20 100644
--- a/CUST/ALLI/xsl/cust.xsl
+++ b/CUST/ALLI/xsl/cust.xsl
@@ -75,7 +75,7 @@
- Afleverdatum
+ Verwachte afleverdatum*
:
@@ -104,6 +104,9 @@
+
+ *Er wordt contact met je opgenomen als jouw bestelling binnen is.
+
diff --git a/CUST/BLCC/xsl/cust.xsl b/CUST/BLCC/xsl/cust.xsl
index c5e6ee12c4..9314d7c0b1 100644
--- a/CUST/BLCC/xsl/cust.xsl
+++ b/CUST/BLCC/xsl/cust.xsl
@@ -6,7 +6,7 @@
- MLDAFM
+ ORDUPD
+
+
diff --git a/CUST/STAM/xsl/cust.xsl b/CUST/STAM/xsl/cust.xsl
index 08eef103be..0d28ae6099 100644
--- a/CUST/STAM/xsl/cust.xsl
+++ b/CUST/STAM/xsl/cust.xsl
@@ -8,356 +8,6 @@
MLD2B3
-
-
-
-
-
-
- https:// /cust/stam/saml/?
-
-
-
- -
-
- :
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Dear manager,
-
-
-
-
-
- You and your peers have received a request for approval in the service center. If the requestor mentioned below is your direct report, please approve or reject the request. If the requestor is not a direct report, you are notified so you can approve as a back-up in case of urgent requests.
-
-
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Update:
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
- als we binnen een opdracht zijn, tonen we de meldingtekst niet
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
- NADER TE DEFINIEREN
-
-
-
-
-
-
-
-
-
-
- :
-
-
-
- ( )
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
- :
-
-
- -
-
-
-
-
-
- :
-
-
- -
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
-
-
-
- :
-
-
-
- ( )
-
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
-
- :
-
-
-
- ( )
-
-
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- :
-
-
-
-
-
-
- :
-
-
- -
-
-
-
-
-
-
-
- :
-
-
-
-
-
-
-
-
-
- :
-
-
-
- ( )
-
-
-
- :
-
-
-
-
-
-
-
-
-
- :
-
-
- -
-
-
- ( )
-
-
-
-
-
-
-
-
-
-
- https:// /cust/stam/saml/?
-
- Click here to view this call in the service center
-
-
-
-
-
-
-
diff --git a/CUST/STAM/xsl/deel.xsl b/CUST/STAM/xsl/deel.xsl
new file mode 100644
index 0000000000..347a01693f
--- /dev/null
+++ b/CUST/STAM/xsl/deel.xsl
@@ -0,0 +1,181 @@
+
+
+
+
+
+
+
+
+
+ 140px
+ ../../appl/shared/barcode.asp?text= &height=50&narrow=1&wide=3
+
+
+
+
+
+ /
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ================================ DEEL (OBJECT)===========================
+ FACILITOR default XSL template for deel
+
+
+
+ window.print();
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CUST/STAM/xsl/melding.xsl b/CUST/STAM/xsl/melding.xsl
new file mode 100644
index 0000000000..91a973c5e9
--- /dev/null
+++ b/CUST/STAM/xsl/melding.xsl
@@ -0,0 +1,411 @@
+
+
+
+
+
+
+
+
+
+
+ https:// /cust/stam/saml/?
+
+
+
+ -
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Dear manager,
+
+
+
+
+
+ You and your peers have received a request for approval in the service center. If the requestor mentioned below is your direct report, please approve or reject the request. If the requestor is not a direct report, you are notified so you can approve as a back-up in case of urgent requests.
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Update:
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+
+
+ als we binnen een opdracht zijn, tonen we de meldingtekst niet
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+ NADER TE DEFINIEREN
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+ ( )
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+ -
+
+
+
+
+
+ :
+
+
+ -
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+ ( )
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+ ( )
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+ :
+
+
+ -
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+ ( )
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+ :
+
+
+ -
+
+
+ ( )
+
+
+
+
+
+
+
+
+
+
+ https:// /cust/stam/saml/?
+
+ Click here to view this call in the service center
+
+
+
+
+
+
+
+
+
+
+
+ ================================ MELDINGEN ==============================
+ FACILITOR default XSL template for melding
+
+
+
+ window.print();
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CUST/STAM/xsl/opdracht.xsl b/CUST/STAM/xsl/opdracht.xsl
new file mode 100644
index 0000000000..db65842734
--- /dev/null
+++ b/CUST/STAM/xsl/opdracht.xsl
@@ -0,0 +1,306 @@
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+ :
+
+
+
+
+ /
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+ à €
+
+
+ (
+ à € )
+
+
+
+ :
+
+ €
+
+
+ ( € )
+
+
+
+
+
+
+ :
+
+ €
+
+
+ ( € )
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+ €
+
+
+ ( € )
+
+
+
+
+
+
+
+ :
+
+
+ €
+
+
+
+ ( € )
+
+
+
+
+
+
+
+
+
+
+
+ ================================ OPDRACHTEN ==============================
+ FACILITOR default XSL template for opdracht
+
+
+
+ window.print();
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CUST/STAM/xsl/reservering.xsl b/CUST/STAM/xsl/reservering.xsl
new file mode 100644
index 0000000000..c3181e5e5a
--- /dev/null
+++ b/CUST/STAM/xsl/reservering.xsl
@@ -0,0 +1,436 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /
+ ( )
+
+
+
+
+
+
+
+
+
+
+
+ -
+
+ /
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+ : /
+
+
+
+
+ :
+
+
+
+
+ :
+
+
+
+ :
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ (max. )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ /
+
+ -
+
+
+ Contactgegevens:
+
+
+
+ :
+
+ :
+
+
+
+ :
+
+
+ :
+
+
+
+
+ :
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ================================ RESERVERINGEN ==============================
+ FACILITOR default XSL template for reservering
+
+
+
+ window.print();
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/CUST/STPH/xsl/medeco.xsl b/CUST/STPH/xsl/medeco.xsl
index 44fe5c224a..02851a7afd 100644
--- a/CUST/STPH/xsl/medeco.xsl
+++ b/CUST/STPH/xsl/medeco.xsl
@@ -57,7 +57,8 @@
14010046
14010141
14000749
- 14005949
+ 14005949
+ 14005598
diff --git a/CUST/SUTF/xsl/cust.xsl b/CUST/SUTF/xsl/cust.xsl
index 0e4001277c..190af5d3d0 100644
--- a/CUST/SUTF/xsl/cust.xsl
+++ b/CUST/SUTF/xsl/cust.xsl
@@ -419,7 +419,7 @@
Adres:
-
+ De Lunette
:
@@ -432,7 +432,7 @@
-
+ Coehoornsingel 3
:
@@ -445,7 +445,7 @@
-
+ 7201 AA Zutphen
:
diff --git a/CUST/UWVA/cust.css b/CUST/UWVA/cust.css
index d1010db174..992d7e6ed1 100644
--- a/CUST/UWVA/cust.css
+++ b/CUST/UWVA/cust.css
@@ -1,3 +1,9 @@
-#mod_mldfixsla .label {
- width: 124px !important;
+/* UWVA#39752 Opmerkingen bij aanvraag verstoppen */
+
+#lev_opm, label[for="lev_opm"] {
+ display:none;
+}
+
+.ui-datepicker-today {
+ background-color: green;
}
\ No newline at end of file
diff --git a/CUST/VENR/export/gen_export_fact.bat b/CUST/VENR/export/gen_export_fact.bat
new file mode 100644
index 0000000000..5227733d3e
--- /dev/null
+++ b/CUST/VENR/export/gen_export_fact.bat
@@ -0,0 +1,17 @@
+REM GEN_EXPORT_FACT.BAT
+REM
+REM VENR
+REM
+REM Bevriest kosten en exporteert feitelijk niets
+REM
+REM Context : roep deze file aan indien nodig, of schedule deze
+REM Vereist : de randvoorwaarde voor het gebruik van gen_export
+REM
+REM $Revision$
+REM $Id$
+REM
+REM (c) 2017 Facilitor B.V.
+REM
+
+REM ================================================== create exportfile
+CALL ..\..\..\utils\gen_export\gen_export.bat FACT
diff --git a/CUST/VGLD/xsl/Huuskes.xsl b/CUST/VGLD/xsl/Huuskes.xsl
index 8cb93819fe..191309f6a8 100644
--- a/CUST/VGLD/xsl/Huuskes.xsl
+++ b/CUST/VGLD/xsl/Huuskes.xsl
@@ -15,6 +15,7 @@
facilitor
vogel01
+
diff --git a/CUST/YKPN/SAML/default.asp b/CUST/YKPN/SAML/default.asp
new file mode 100644
index 0000000000..e912916a79
--- /dev/null
+++ b/CUST/YKPN/SAML/default.asp
@@ -0,0 +1,53 @@
+<%@ language = "JavaScript" %>
+<% /*
+ $Revision$
+ $Id$
+ File: cust/ykpn/saml/default.asp
+ Description: Single Sign On script
+ Parameters:
+ Context:
+ Note:
+*/ %>
+<%
+ Response.Expires=-1;
+ Session("customerId") = "YKPN";
+ ANONYMOUS_Allowed = 1;
+%>
+
+
+<%
+ //for (i=1; i <= Request.ServerVariables.Count; i++)
+ //{
+ // __DoLog(Request.ServerVariables.key(i) + ": " + Request.ServerVariables(i));
+ //}
+
+ var uname = String(Request.ServerVariables("HTTP_FCLTACCOUNT"));
+
+ var newUrl = rooturl + "/";
+ if (Session("SSO_URL")) // binnen via sso=1 route
+ { // met 2016.2 moet dit eigenlijk via een JWT
+ var sso_qs = Session("SSO_QUERYSTRING")||"";
+ var sso_url = Session("SSO_URL");
+ sso_url = sso_url.replace(/^\/default.asp/i, "/"); // default.asp vooraan hoeft niet, ik wil cleane url
+
+ Session.Contents.Remove("SSO_QUERYSTRING");
+ Session.Contents.Remove("SSO_URL");
+ newUrl = sso_url + (sso_qs?"?":"") + sso_qs;
+ }
+ else
+ {
+ var sso_qs = String(Request.ServerVariables("QUERY_STRING"));
+ if (sso_qs)
+ newUrl += "?" + sso_qs;
+ }
+
+ if (tryLogin(uname, null))
+ {
+ //Response.Write("Hoera: je bent user: " + user_key);
+ }
+ else
+ { // Automatisch naar het inlogscherm
+ __DoLog("SAML inlog niet gelukt (Login:" + uname);
+ }
+ Response.Redirect(newUrl);
+%>
\ No newline at end of file
diff --git a/CUST/YKPN/banner.png b/CUST/YKPN/banner.png
new file mode 100644
index 0000000000..f407db6ee9
Binary files /dev/null and b/CUST/YKPN/banner.png differ
diff --git a/CUST/YKPN/flexfiles/menu/.gitignore b/CUST/YKPN/flexfiles/menu/.gitignore
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/CUST/YKPN/tmpl_logo.gif b/CUST/YKPN/tmpl_logo.gif
new file mode 100644
index 0000000000..f31ee0e707
Binary files /dev/null and b/CUST/YKPN/tmpl_logo.gif differ
diff --git a/CUST/YKPN/xsl/cust.xsl b/CUST/YKPN/xsl/cust.xsl
new file mode 100644
index 0000000000..3d84981b4d
--- /dev/null
+++ b/CUST/YKPN/xsl/cust.xsl
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+ Naam bezoeker:
+
+
+
+
+
+
+
+
+ Firma:
+
+
+
+
+
+
+
+
+ Datum:
+
+
+
+
+
+
\ No newline at end of file