KFHT#75454 Gebouwadres (ipv locatieadres)

svn path=/Database/trunk/; revision=59842
This commit is contained in:
Peter Feij
2023-03-31 11:10:01 +00:00
parent 3a36787c50
commit bc9b03f084
3 changed files with 16 additions and 0 deletions

View File

@@ -317,6 +317,10 @@ CREATE_TABLE(alg_gebouw,0)
alg_gebouw_upper
VARCHAR2(30) /* 12 ware genoeg geweest */
NOT_NULL(alg_gebouw_upper, alg_c_alg_gebouw_upper),
alg_gebouw_adres
VARCHAR2(50),
alg_gebouw_postcode
VARCHAR2(12),
alg_gebouw_aanmaak
DATE
DEFAULT SYSDATE

View File

@@ -3065,6 +3065,8 @@ AS
AS
v_naam alg_gebouw.alg_gebouw_naam%TYPE;
v_code alg_gebouw.alg_gebouw_code%TYPE;
v_adres alg_gebouw.alg_gebouw_adres%TYPE;
v_postcode alg_gebouw.alg_gebouw_postcode%TYPE;
v_omschrijving alg_gebouw.alg_gebouw_omschrijving%TYPE;
v_bruto_vloeropp alg_gebouw.alg_gebouw_bruto_vloeropp%TYPE;
v_omtrek alg_gebouw.alg_gebouw_omtrek%TYPE;
@@ -3101,6 +3103,8 @@ AS
THEN
SELECT alg_gebouw_naam,
alg_gebouw_code,
alg_gebouw_adres,
alg_gebouw_postcode,
alg_gebouw_omschrijving,
alg_gebouw_bruto_vloeropp,
alg_gebouw_omtrek,
@@ -3126,6 +3130,8 @@ AS
alg_gebouw_externsyncdate
INTO v_naam,
v_code,
v_adres,
v_postcode,
v_omschrijving,
v_bruto_vloeropp,
v_omtrek,
@@ -3156,6 +3162,8 @@ AS
createxmltagvalue ('key', p_gebouw_key);
createxmltagvalue ('naam', v_naam);
createxmltagvalue ('code', v_code);
createxmltagvalue ('adres', v_adres);
createxmltagvalue ('postcode', v_postcode);
createxmltagvalue ('omschrijving', v_omschrijving);
createxmltagvalue ('bruto_vloeropp', v_bruto_vloeropp);
createxmltagvalue ('omtrek', v_omtrek);

View File

@@ -223,6 +223,10 @@ UPDATE fac_localeitems
/////////////////////////////////////////////////////////////////////////////////////////// AAIT#75947
ALTER TABLE fac_imp_flex ADD kenmerk_module VARCHAR2(3);
/////////////////////////////////////////////////////////////////////////////////////////// KFHT#75454
ALTER TABLE alg_gebouw ADD alg_gebouw_adres VARCHAR2(50);
ALTER TABLE alg_gebouw ADD alg_gebouw_postcode VARCHAR2(12);
/////////////////////////////////////////////////////////////////////////////////////////// FCLT#00000
REGISTERONCE('$Id$')