MNNL#33151 label wijzigt met de setting mee
svn path=/Website/trunk/; revision=25999
This commit is contained in:
@@ -295,7 +295,9 @@ else
|
||||
no_table: true
|
||||
});
|
||||
if (S("vis_mandatory_alg_level") != "L") {
|
||||
RWFIELDTR("room", "fld", L("lcl_room"), bez_afspraak.ruimte, {maxlength : 30})
|
||||
RWFIELDTR("room", "fld",
|
||||
(S("vis_mandatory_alg_level")=='R' ? L("lcl_room") : S("vis_mandatory_alg_level")=='V' ? L("lcl_floor") : S("vis_mandatory_alg_level")=='G' ? L("lcl_building") : "") ,
|
||||
bez_afspraak.ruimte, {maxlength : 30})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -155,9 +155,11 @@ var urlMail = "../shared/queuemail.asp?pcode=BEZMAI&defemail_key=" + bez_afspraa
|
||||
startlevel: 2, //Locatie
|
||||
eindlevel: (S("vis_afspraak_onrgoed_uses_keys") == 1)?5:2, //Ruimte of locatie
|
||||
readonly: true });
|
||||
if (S("vis_afspraak_onrgoed_uses_keys") != 1)
|
||||
ROFIELDTR('fld', L("lcl_room"), bez_afspraak.ruimte, {suppressEmpty: true});
|
||||
|
||||
if (S("vis_afspraak_onrgoed_uses_keys") != 1) {
|
||||
ROFIELDTR('fld',
|
||||
(S("vis_mandatory_alg_level")=='R' ? L("lcl_room") : S("vis_mandatory_alg_level")=='V' ? L("lcl_floor") : S("vis_mandatory_alg_level")=='G' ? L("lcl_building") : "") ,
|
||||
bez_afspraak.ruimte, {suppressEmpty: true});
|
||||
}
|
||||
ROFIELDTR('fld', L("lcl_action"), bez_afspraak.actie_omschrijving, {suppressEmpty: true});
|
||||
ROTEXTAREATR('fldtxt', L("lcl_vis_remark"), bez_afspraak.opm, {suppressEmpty: true});
|
||||
BLOCK_END();
|
||||
|
||||
Reference in New Issue
Block a user