HSLE#36387 Mogelijkheid tot een vervolgmelding vanuit een afgemelde reservering

svn path=/Website/trunk/; revision=30733
This commit is contained in:
Ruud Lipper
2016-09-15 11:43:40 +00:00
parent d03a03ed5d
commit 09abf7ecee

View File

@@ -355,15 +355,16 @@ FCLTHeader.Requires({plugins: ["jQuery"]})
buttons.push( {title: L("lcl_change"), icon: "wijzigen.png", action: "res_change()"});
else if (this_res.canWriteNoShow)
buttons.push({action: "resNoShow()", title: L("lcl_res_no_show"), icon: "noshow.png"});
if (this_res.canDelete)
buttons.push( {title: L("lcl_delete"), icon: "delete.png", action: "res_delete()"});
if (this_res.canGoedkeur)
{
if (S("res_cat_reject_stdmld") > 0)
buttons.push( {title: L("lcl_res_catafkeur"), icon: "delete.png", action: "res_afkeur()"});
buttons.push( {title: L("lcl_res_catgoedkeur"), icon: "accept.png", action: "res_goedkeur()"});
if (S("res_cat_reject_stdmld") > 0)
buttons.push( {title: L("lcl_res_catafkeur"), icon: "reject.png", action: "res_afkeur()"});
}
if (this_res.canDelete)
buttons.push( {title: L("lcl_delete"), icon: "delete.png", action: "res_delete()"});
if (this_res.canClose)
buttons.push( {title: L("lcl_close"), icon: "close.png", action: "res_close()" });