FSN#33170 KPI module initiatie

svn path=/Database/trunk/; revision=25563
This commit is contained in:
Peter Feij
2015-07-01 09:17:55 +00:00
parent 6cb7ac1b54
commit 729a01e006
10 changed files with 93 additions and 7 deletions

View File

@@ -172,6 +172,13 @@ $(EXE)\$(NEXTROOT)\FCLT$(NEXTVERSION)$(FILEVERSION).SQL: \
$(MSRC)\ins\ins_tab.src \
$(MSRC)\ins\ins_tri.src \
$(MSRC)\ins\ins_vie.src \
$(MSRC)\kpi\kpi_ind.src \
$(MSRC)\kpi\kpi_ini.src \
$(MSRC)\kpi\kpi_pac.src \
$(MSRC)\kpi\kpi_seq.src \
$(MSRC)\kpi\kpi_tab.src \
$(MSRC)\kpi\kpi_tri.src \
$(MSRC)\kpi\kpi_vie.src \
$(MSRC)\mld\mld_ind.src \
$(MSRC)\mld\mld_ini.src \
$(MSRC)\mld\mld_lcl.src \

9
KPI/KPI_IND.SRC Normal file
View File

@@ -0,0 +1,9 @@
#ifdef KPI
/* $Revision$
* $Id$
*/
REGISTERONCE('$Id$')
#endif // KPI

11
KPI/KPI_INI.SRC Normal file
View File

@@ -0,0 +1,11 @@
#ifdef KPI
/* $Revision$
* $Id$
*/
_FAC_MODULE('KPI','Key Performance Indicators')
REGISTERONCE('$Id$')
#endif // KPI

8
KPI/KPI_PAC.SRC Normal file
View File

@@ -0,0 +1,8 @@
#ifdef KPI
/* $Revision$
* $Id$
*/
REGISTERRUN('$Id$')
#endif // KPI

11
KPI/KPI_SEQ.SRC Normal file
View File

@@ -0,0 +1,11 @@
#ifdef KPI
/* $Revision$
* $Id$
*/
CREATE SEQUENCE kpi_s_kpi_definitie_key MINVALUE 1;
CREATE SEQUENCE kpi_s_kpi_score_key MINVALUE 1;
REGISTERONCE('$Id$')
#endif // KPI

16
KPI/KPI_TAB.SRC Normal file
View File

@@ -0,0 +1,16 @@
#ifdef KPI
/* $Revision$
* $Id$
*/
//CREATE_TABLE(kpi_definitie, 0)
//(
//);
//CREATE_TABLE(kpi_scoree, 0)
//(
//);
REGISTERONCE('$Id$')
#endif // KPI

8
KPI/KPI_TRI.SRC Normal file
View File

@@ -0,0 +1,8 @@
#ifdef KPI
/* $Revision$
* $Id$
*/
REGISTERRUN('$Id$')
#endif // KPI

9
KPI/KPI_VIE.SRC Normal file
View File

@@ -0,0 +1,9 @@
#ifdef KPI
/* $Revision$
* $Id$
*/
REGISTERRUN('$Id$')
#endif // KPI

View File

@@ -9,17 +9,17 @@
* BEZ - Bezoekers registratie
* CAD - AutoCAD koppeling
* CNT - Contracten
* FAC - Basismodule (altijd aanwezig)
* FIN - Financien/facturen [sinds 4.61]
* FAC - Basismodule
* FIN - Financien/facturen
* INS - Installaties
* MLD - Meldingen (basis)
* KPI - KPI's
* MLD - Meldingen
* MRK - Marktplaats
* MSG - Messenger [sinds 4.70 apart]
* PRJ - Projecten/verhuizingen [sinds 4.61 in web]
* PRS - Personen (kleine basisset tbv. Meldingen)
* MSG - Messenger
* PRJ - Projecten/verhuizingen
* PRS - Personen
* SLE - Sleutelplan
* WEB - Intranet modules
*
*/
#define ALG ALG
@@ -30,6 +30,7 @@
#define FAC FAC
#define FIN FIN
#define INS INS
#define KPI KPI
#define MLD MLD
#define MRK MRK
#define MSG MSG

View File

@@ -76,6 +76,12 @@ INSERT INTO fac_import_app (fac_import_app_code, fac_import_app_oms, fac_functie
FROM fac_functie
WHERE fac_functie_code = 'WEB_PRSSYS';
/////////////////////////////////////////////////////////////////////////////////////////// FSN#33170
#include "../kpi/kpi_tab.src"
#include "../kpi/kpi_seq.src"
#include "../kpi/kpi_ind.src"
#include "../kpi/kpi_ini.src"
/////////////////////////////////////////////////////////////////////////////////////////// FSN#nnnnn
/////////////////////////////////////////////////////////////////////////////////////////// GENERAL