FCLT#83649 bes_srtprod, bes_srtprod_prijs, bes_bedrijf_srtprod en bes_bedrijf_b uitfaseren

svn path=/Website/trunk/; revision=64595
This commit is contained in:
Erik Groener
2024-05-10 08:06:14 +00:00
parent 4ba259cc80
commit df990040f5
7 changed files with 0 additions and 275 deletions

View File

@@ -25,13 +25,10 @@ var api2_mapper = {
"rooms" : { "filename": "appl/api2/api_rooms.asp", "module": "ALG" },
"districts" : { "filename": "appl/api2/api_districts.asp", "module": "ALG" },
"orderdisciplines" : { "filename": "appl/mgt/bes_discipline.asp" },
"ordercatalogues" : { "filename": "appl/mgt/bes_disciplineprod.asp" },
"orderunits" : { "filename": "appl/mgt/bes_grootheid.asp" },
"orderlineproperties" : { "filename": "appl/mgt/bes_kenmerk.asp" },
"orderproperties" : { "filename": "appl/mgt/bes_kenmerkbestel.asp" },
"orderarticlegroups" : { "filename": "appl/mgt/bes_srtgroep.asp" },
"orderpropertytypes" : { "filename": "appl/mgt/bes_srtkenmerk.asp" },
"orderproductgroups" : { "filename": "appl/mgt/bes_srtprodgroep.asp", "lcl_name": "bes_srtgroep_m" },
"orderpacelisttables" : { "filename": "appl/mgt/bes_staffeltabel.asp" },
"visitoractions" : { "filename": "appl/mgt/bez_actie.asp" },
"visitorproperties" : { "filename": "appl/mgt/bez_kenmerk.asp" },

View File

@@ -1,70 +0,0 @@
<% /*
$Revision$
$Id$
File: model_bes_disciplineprod.inc
Description: Vanuit CodeCharge gegenereerd model voor bes_disciplineprod
Context:
Notes:
*/
%>
<%
function model_bes_disciplineprod()
{
this.records_name = "ordercatalogues";
this.record_name = "ordercatalogue";
this.table = "ins_tab_discipline";
this.primary = "ins_discipline_key";
this.autfunction = "WEB_PRDMSU";
this.record_title = L("ins_tab_discipline");
this.records_title = L("ins_tab_discipline_m");
this.fields = {
"id": {
"dbs": "ins_discipline_key",
"label": L("lcl_key"),
"typ": "key",
"required": true,
"seq": "ins_s_ins_discipline_key",
"defaultvalue": null
},
"name": {
"dbs": "ins_discipline_omschrijving",
"label": L("ins_discipline_omschrijving"),
"typ": "varchar",
"required": true,
"filter": "like"
},
"module": {
"dbs": "ins_discipline_module",
"label": L("ins_discipline_module"),
"typ": "varchar",
"hidden_fld": true,
"defaultvalue": "PRD"
},
"remark": {
"dbs": "ins_discipline_opmerking",
"label": L("ins_discipline_opmerking"),
"typ": "memo"
}
};
this.REST_GET = generic_REST_GET(this,
{ "GET": {
wheres: [ "ins_discipline_verwijder IS NULL",
"ins_discipline_module = 'PRD'"
]
}
}
);
this.REST_POST = generic_REST_POST(this);
this.REST_PUT = generic_REST_PUT(this);
this.REST_DELETE = generic_REST_DELETE(this, {});
}
%>

View File

@@ -1,50 +0,0 @@
<% /*
$Revision$
$Id$
File: model_bes_grootheid.inc
Description: Vanuit CodeCharge gegenereerd model voor bes_grootheid
Context:
Notes:
*/
%>
<%
function model_bes_grootheid()
{
this.records_name = "orderunits";
this.record_name = "orderunit";
this.table = "bes_grootheid";
this.primary = "bes_grootheid_key";
this.soft_delete = "bes_grootheid_verwijder";
this.autfunction = "WEB_PRDMSU";
this.record_title = L("bes_grootheid");
this.records_title = L("bes_grootheid_m");
this.fields = {
"id": {
"dbs": "bes_grootheid_key",
"label": L("lcl_key"),
"typ": "key",
"required": true,
"seq": "bes_s_bes_grootheid_key"
},
"name": {
"dbs": "bes_grootheid_naam",
"label": L("bes_grootheid_naam"),
"typ": "varchar",
"required": 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, {});
}
%>

View File

@@ -1,71 +0,0 @@
<% /*
$Revision$
$Id$
File: model_bes_srtprodgroep.inc
Description: Vanuit CodeCharge gegenereerd model voor bes_srtprodgroep
Context:
Notes:
*/
%>
<%
function model_bes_srtprodgroep()
{
this.records_name = "orderproductgroeps";
this.record_name = "orderproductgroep";
this.table = "bes_srtgroep";
this.primary = "bes_srtgroep_key";
this.autfunction = "WEB_PRDMSU";
this.record_title = L("bes_srtgroep");
this.records_title = L("bes_srtgroep_m");
this.fields = {
"id": {
"dbs": "bes_srtgroep_key",
"label": L("lcl_key"),
"typ": "key",
"required": true,
"seq": "bes_s_bes_srtgroep_key",
"defaultvalue": null
},
"orderdisciplines": {
"dbs": "ins_discipline_key",
"label": L("bes_ins_discipline_key"),
"typ": "key",
"required": true,
"foreign": {
"tbl": "ins_tab_discipline",
"key": "ins_discipline_key",
"desc": "ins_discipline_omschrijving",
"where": "ins_discipline_verwijder IS NULL AND ins_discipline_module = 'PRD'"
},
"emptyoption": L("mgt_all")
},
"name": {
"dbs": "bes_srtgroep_omschrijving",
"label": L("bes_srtgroep_omschrijving"),
"typ": "varchar"
}
};
this.REST_GET = generic_REST_GET(this,
{ "GET": {
wheres: [ "ins_discipline_key IN"
+ "( SELECT ins_discipline_key"
+ " FROM ins_tab_discipline"
+ " WHERE ins_discipline_module = 'PRD')"
]
}
}
);
this.REST_POST = generic_REST_POST(this);
this.REST_PUT = generic_REST_PUT(this);
this.REST_DELETE = generic_REST_DELETE(this, {});
}
%>

View File

@@ -1,28 +0,0 @@
<%@language = "javascript" %>
<!-- #include file="../scf/scaffolding.inc" -->
<!-- #include file="../api2/model_bes_disciplineprod.inc" -->
<%
var this_model = new model_bes_disciplineprod();
scaffolding(this_model,
{
"search": {
"autosearch": true,
"filters": [
"name"
]
},
"list": {
"columns": [
"id",
"name"
]
},
"edit":{
"modal": true
}
});
%>
<% ASPPAGE_END(); %>

View File

@@ -1,25 +0,0 @@
<%@language = "javascript" %>
<!-- #include file="../scf/scaffolding.inc" -->
<!-- #include file="../api2/model_bes_grootheid.inc" -->
<%
var this_model = new model_bes_grootheid();
scaffolding(this_model,
{
"search": {
"autosearch": true
},
"list": {
"columns": [
"id",
"name"
]
},
"edit":{
"modal": true
}
});
%>
<% ASPPAGE_END(); %>

View File

@@ -1,28 +0,0 @@
<%@language = "javascript" %>
<!-- #include file="../scf/scaffolding.inc" -->
<!-- #include file="../api2/model_bes_srtprodgroep.inc" -->
<%
var this_model = new model_bes_srtprodgroep();
scaffolding(this_model,
{
"search": {
"autosearch": true,
"filters": [
"orderdisciplines"
]
},
"list": {
"columns": [
"id",
"orderdisciplines",
"name"
]
},
"edit": {},
"print": {}
});
%>
<% ASPPAGE_END(); %>