PCHA#52283 Selecteren datarange rapport svd's

svn path=/Website/trunk/; revision=37672
This commit is contained in:
Erik Groener
2018-04-17 07:28:25 +00:00
parent bf034bfc65
commit fbac2d97b9

View File

@@ -101,9 +101,9 @@ function scf_search_field (model, fld, defaults, scf_params, includefilters)
if (!defs.fixed)
{
var org_label = field.label;
field.label = org_label + " " + L("lcl_from");
field.label = org_label + " " + (field.typ == "date" ? L("lcl_period_from") : L("lcl_from"));
scf_RWFIELDTR(xmodel, "start_" + fld, defs.vmin, null, {search: true});
field.label = org_label + " " + L("lcl_to");
field.label = org_label + " " + (field.typ == "date" ? L("lcl_period_to") : L("lcl_to"));
scf_RWFIELDTR(xmodel, "end_" + fld, defs.vmax, null, {search: true});
field.label = org_label;
}