58 lines
1.4 KiB
PHP
58 lines
1.4 KiB
PHP
<% /*
|
|
$Revision$
|
|
$Id$
|
|
|
|
File: model_alg_srtgebouw.inc
|
|
|
|
Description: Model voor alg_srtgebouw
|
|
|
|
Context:
|
|
|
|
Notes:
|
|
*/
|
|
%>
|
|
<%
|
|
function model_alg_srtgebouw()
|
|
{
|
|
this.records_name = "buildingfunctions";
|
|
this.record_name = "buildingfunction";
|
|
this.table = "alg_srtgebouw";
|
|
this.primary = "alg_srtgebouw_key";
|
|
this.soft_delete = "alg_srtgebouw_verwijder";
|
|
this.autfunction = "WEB_ALGMSU";
|
|
this.record_title = L("alg_srtgebouw");
|
|
this.records_title = L("alg_srtgebouw_m");
|
|
|
|
|
|
this.fields = {
|
|
"id": {
|
|
"dbs": "alg_srtgebouw_key",
|
|
"label": L("lcl_key"),
|
|
"typ": "key",
|
|
"required": true,
|
|
"filter": "exact",
|
|
"seq": "alg_s_alg_srtgebouw_key"
|
|
},
|
|
"name": {
|
|
"dbs": "alg_srtgebouw_omschrijving",
|
|
"label": L("alg_srtgebouw_omschrijving"),
|
|
"typ": "varchar",
|
|
"translate": true,
|
|
"required": true
|
|
},
|
|
"applicable": {
|
|
"dbs": "alg_srtgebouw_passief",
|
|
"label": L("alg_srtgebouw_passief"),
|
|
"typ": "check",
|
|
"invert": true,
|
|
"multiedit": true
|
|
}
|
|
};
|
|
|
|
|
|
this.REST_GET = generic_REST_GET(this);
|
|
this.REST_POST = generic_REST_POST(this);
|
|
this.REST_PUT = generic_REST_PUT(this);
|
|
this.REST_DELETE = generic_REST_DELETE(this);
|
|
}
|
|
%> |