86 lines
2.5 KiB
Plaintext
86 lines
2.5 KiB
Plaintext
<%@language = "javascript" %>
|
|
|
|
<!-- #include file="../scf/scaffolding.inc" -->
|
|
<!-- #include file="../api2/model_alg_srtgebouw.inc" -->
|
|
|
|
<%
|
|
var srtgebouw_key = getQParamInt("id", -1);
|
|
var this_model = new model_alg_srtgebouw();
|
|
|
|
scaffolding(this_model,
|
|
{
|
|
"search": {
|
|
"autosearch": true
|
|
},
|
|
"list": {
|
|
"columns": [
|
|
"id",
|
|
"name",
|
|
"applicable",
|
|
"processingtime"
|
|
]
|
|
},
|
|
"edit":{
|
|
"requires": {
|
|
"js": [
|
|
"../mgt/alg_srtalg.js"
|
|
]
|
|
}
|
|
},
|
|
"layout": {
|
|
"block": [
|
|
{
|
|
"blockid": "algSrtBld",
|
|
"label": L("alg_srtgebouw"),
|
|
"ishtmlsafe": true,
|
|
"hidden": false,
|
|
"buttons": [],
|
|
"icon": "fa-tag",
|
|
"fields": [
|
|
"name",
|
|
"applicable"
|
|
]
|
|
},
|
|
{
|
|
"blockid": "algSrtBldSla",
|
|
"label": L("lcl_mld_run_time"),
|
|
"ishtmlsafe": true,
|
|
"hidden": false,
|
|
"buttons": [],
|
|
"icon": "fa-stopwatch",
|
|
"fields": [
|
|
"processingtime",
|
|
"criticaltime",
|
|
"highprioritytime",
|
|
"lowprioritytime"
|
|
]
|
|
},
|
|
{
|
|
"blockid": "algSrtPrio",
|
|
"label": L("alg_srtgebouw_prio_aspects"),
|
|
"icon": "fa-clipboard-list-check",
|
|
"fields": [
|
|
"aspectmaxvg",
|
|
"aspectmaxch",
|
|
"aspectmaxgb",
|
|
"aspectmaxtv",
|
|
"aspectmaxtk",
|
|
"aspectmaxbe",
|
|
"aspectmaxen"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"wrap": {
|
|
"frames": [
|
|
{
|
|
url: "mld_stdmsrtgebouw.asp?mode=list&buildingfunction={0}",
|
|
title: L("lcl_mld_overrule_stdmelding"),
|
|
autfunction: "WEB_MLDMGT"
|
|
}
|
|
]
|
|
}
|
|
});
|
|
%>
|
|
<% ASPPAGE_END(); %>
|