TWYN#54974 cijfers kloppen niet: kolommen budget_van en budget_naar allebei in lijst tonen. Ook duidelijker bij wijzigen/toevoegen mutatie voor welk budget waarde wordt ingevuld.

svn path=/Website/branches/v2018.1/; revision=39418
This commit is contained in:
Erik Groener
2018-10-17 08:09:11 +00:00
parent 0afa2871d3
commit ed3d7ee498
2 changed files with 50 additions and 0 deletions

View File

@@ -234,6 +234,8 @@ function model_bgt_budgetmutatie()
"ident",
"name",
"budgetfrom",
"amountfrom",
"vatfrom",
"budgetto",
"amountto",
"vatto",

View File

@@ -41,6 +41,8 @@ scaffolding(this_model,
"ident",
"name",
"budgetfrom",
"amountfrom",
"vatfrom",
"budgetto",
"amountexc",
"amountvat"
@@ -60,6 +62,52 @@ scaffolding(this_model,
},
"transit": {
"budgetcommon": p_budget_key
},
"layout": {
"miscellaneous": L("lcl_mld_miscellaneous_fields"),
"block": [
{
"blockid": "mldAlg",
"label": L("bgt_budgetmutatie"),
"ishtmlsafe": true,
"hidden": false,
"buttons": [],
"fields": [
"mutationdate",
"name",
"code",
"sequence",
"adjustedby"
]
},
{
"blockid": "scfLayout_L",
"label": L("bgt_budgetmutatie_van"),
"fields": [
"budgetfrom",
"amountfrom",
"vatfrom"
]
},
{
"blockid": "scfLayout_R",
"label": L("bgt_budgetmutatie_naar"),
"fields": [
"budgetto",
"amountto",
"vatto",
"amounttoincl"
]
},
{
"blockid": "mldAlg",
"label": L("lcl_mld_hidden_fields"),
"hidden": true,
"fields": [
"_limitlabel"
]
}
]
}
});
%>