FSN#39055 BCS/2000 functionaliteit in FACILITOR - customization

svn path=/Website/trunk/; revision=35173
This commit is contained in:
Erik Groener
2017-08-31 14:50:34 +00:00
parent 8503e8a5f0
commit b7aff7b572
5 changed files with 8 additions and 1 deletions

View File

@@ -120,6 +120,7 @@ function model_bgt_budget()
"label": L("lcl_fin_total_sum"),
"typ": "float",
"readonly": true,
"sqlshow": true,
"iscurrency": true,
"total": true,
"defaultvalue": "0",

View File

@@ -138,6 +138,7 @@ function model_bgt_budgetmutatie()
"label": L("lcl_fin_total_sum"),
"typ": "float",
"readonly": true,
"sqlshow": true,
"iscurrency": true,
"defaultvalue": "0"
},

View File

@@ -151,6 +151,7 @@ function model_fin_factuur()
"label": L("lcl_fin_total_sum"),
"typ": "float",
"readonly": true,
"sqlshow": true,
"iscurrency": true,
"total": true,
"defaultvalue": "0",

View File

@@ -141,6 +141,7 @@ function model_mld_opdr()
"label": L("lcl_fin_total_sum"),
"typ": "float",
"readonly": true,
"sqlshow": true,
"iscurrency": true,
"total": true,
"defaultvalue": "0",
@@ -152,6 +153,7 @@ function model_mld_opdr()
"label": L("bgt_facturen"),
"typ": "float",
"readonly": true,
"sqlshow": true,
"iscurrency": true,
"total": true
},
@@ -161,6 +163,7 @@ function model_mld_opdr()
"label": L("bgt_facturentogo"),
"typ": "float",
"readonly": true,
"sqlshow": true,
"iscurrency": true,
"total": true
},

View File

@@ -369,7 +369,8 @@ function scaffolding_edit(model, scf_params)
var field = model.fields[fld];
if (field.sql)
{
fld_arr.push(fld);
if (field.sqlshow) // toch tonen, ook al is hij readonly
fld_arr.push(fld);
continue; // weinig aan te bewerken
}