FSN#31475 Huurcontracten zijn obsolete geraakt

svn path=/Database/trunk/; revision=33161
This commit is contained in:
Peter Feij
2017-03-15 16:39:15 +00:00
parent 7fae550e34
commit da40c97d05
10 changed files with 66 additions and 130 deletions

View File

@@ -117,20 +117,6 @@ BEGIN
WHEN NO_DATA_FOUND THEN NULL;
WHEN TOO_MANY_ROWS THEN raise_application_error(-20000,'cnt_m027');
END;
/* CONN#465 */
DECLARE
dummy CHAR;
BEGIN
SELECT 'x'
INTO dummy
FROM cnt_contract_onrgoed co
WHERE co.ALG_ONRGOED_KEY = :old.alg_terreinsector_key
AND co.ALG_ONRGOED_NIVEAU = 'T';
APPLICATION_ERROR_GOTO(-20000,'alg_m999 Terrein heeft nog huurcontract');
EXCEPTION
WHEN NO_DATA_FOUND THEN NULL;
WHEN TOO_MANY_ROWS THEN APPLICATION_ERROR_GOTO(-20000,'alg_m999 Terrein heeft nog huurcontract');
END;
DECLARE
dummy CHAR;
BEGIN
@@ -333,20 +319,6 @@ BEGIN
WHEN TOO_MANY_ROWS THEN APPLICATION_ERROR_GOTO(-20000,'cnt_m024');
END;
DECLARE
dummy CHAR;
BEGIN
SELECT 'x'
INTO dummy
FROM cnt_contract_onrgoed co
WHERE co.alg_onrgoed_key = :old.alg_ruimte_key
AND co.alg_onrgoed_niveau = 'R';
APPLICATION_ERROR_GOTO(-20000,'alg_m999 Ruimte heeft nog huurcontract');
EXCEPTION
WHEN NO_DATA_FOUND THEN NULL;
WHEN TOO_MANY_ROWS THEN APPLICATION_ERROR_GOTO(-20000,'alg_m999 Ruimte heeft nog huurcontract');
END;
DECLARE
dummy CHAR;
BEGIN

View File

@@ -21,9 +21,6 @@ create index cnt_i_cnt_contract_plaats2 on cnt_contract_plaats(cnt_contract_key)
create index cnt_i_cnt_contract_object1 on cnt_contract_object(cnt_contract_key);
CREATE INDEX cnt_i_cnt_contract_object2 ON cnt_contract_object(cnt_ins_deel_key);
CREATE INDEX cnt_i_cnt_contract_onrg1 ON cnt_contract_onrgoed(cnt_contract_key);
CREATE INDEX cnt_i_cnt_contract_onrg2 ON cnt_contract_onrgoed(alg_onrgoed_key);
CREATE INDEX cnt_i_cnt_contract_note1 ON cnt_contract_note(cnt_contract_key);
CREATE UNIQUE INDEX cnt_i_cnt_factuurschema1 ON cnt_factuurschema(cnt_contract_key, cnt_factuurschema_boekmaand);

View File

@@ -63,14 +63,6 @@ DEF_FAC_MESSAGE ('cnt_r_cnt_contract_stdmld' ,'De aangegeven dienst bestaat n
DEF_FAC_MESSAGE ('cnt_r_cnt_contract_bedrijf' ,'Het aangegeven bedrijf bestaat niet.' ,'That company does not exist.');
DEF_FAC_MESSAGE ('cnt_r_cnt_contractint' ,'De aangegeven interne contactpersoon bestaat niet.' ,'That internal contact person does not exist');
INSERT INTO cnt_mutatie_status VALUES (0, 'Vervallen');
INSERT INTO cnt_mutatie_status VALUES (1, 'Open');
INSERT INTO cnt_mutatie_status VALUES (2, 'Concept');
INSERT INTO cnt_mutatie_status VALUES (3, 'Ontvangen/Ok');
INSERT INTO cnt_mutatie_status VALUES (4, 'Ontvangen/NietOk');
INSERT INTO cnt_mutatie_status VALUES (5, 'Voltooid');
INSERT INTO cnt_mutatie_status VALUES (6, 'Geexporteerd');
INSERT INTO cnt_typecontract VALUES (1, 'Onderhoud/Maintenance');
INSERT INTO cnt_typecontract VALUES (3, 'Ondersteuning/Support');
INSERT INTO cnt_typecontract VALUES (4, 'Algemeen/Generic');

View File

@@ -367,18 +367,6 @@ CREATE OR REPLACE PACKAGE BODY cnt AS
FROM cnt_contract_object cob
WHERE cob.cnt_contract_key = p_key AND cob.cnt_contract_object_verwijder IS NULL;
--cnt_contract_onrgoed
INSERT INTO cnt_contract_onrgoed (cnt_contract_key, alg_onrgoed_key, alg_onrgoed_niveau, alg_srtonrgoed_key, cnt_contract_onrgoed_opp, cnt_srtruimte_prijs
)
SELECT newkey,
cog.alg_onrgoed_key,
cog.alg_onrgoed_niveau,
cog.alg_srtonrgoed_key,
cog.cnt_contract_onrgoed_opp,
cog.cnt_srtruimte_prijs
FROM cnt_contract_onrgoed cog
WHERE cog.cnt_contract_key = p_key AND cog.cnt_mutatie_key IS NULL;
--cnt_contract_plaats
INSERT INTO cnt_contract_plaats (cnt_contract_key, cnt_alg_plaats_code, cnt_alg_plaats_key, cnt_contract_plaats_gewicht
)

View File

@@ -394,50 +394,6 @@ CREATE_TABLE(cnt_mutatie, 0)
cnt_mutatie_status NUMBER(1) -- Open = 1 Concept = 2 OntvangenOK = 3 OntvangenNOK = 4 Voltooid = 5
);
CREATE_TABLE(cnt_mutatie_status,0)
(
cnt_mutatie_status
NUMBER(10)
CONSTRAINT cnt_k_cnt_mutatie_status_key PRIMARY KEY,
cnt_mutatie_status_omschrijv
VARCHAR2(30)
);
CREATE_TABLE(cnt_contract_onrgoed, 0)
( cnt_contract_onrgoed_key
NUMBER(10)
CONSTRAINT cnt_k_cnt_contract_onrgoed_key PRIMARY KEY,
cnt_contract_key
NUMBER(10)
CONSTRAINT cnt_r_cnt_contract_key REFERENCES cnt_contract(cnt_contract_key),
alg_onrgoed_key
NUMBER(10),
alg_onrgoed_niveau
VARCHAR2(1)
CONSTRAINT cnt_c_cnt_onrgoed_niveau CHECK(alg_onrgoed_niveau IN ('R', 'T')),
cnt_mutatie_key
NUMBER(10)
CONSTRAINT cnt_r_cnt_mutatie_key REFERENCES cnt_mutatie(cnt_mutatie_key) on delete cascade,
cnt_contract_onrgoed_opp
NUMBER(8,2),
alg_srtonrgoed_key
NUMBER(10),
cnt_mld_melding_key
NUMBER(10)
CONSTRAINT cnt_r_mld_melding_key REFERENCES mld_melding(mld_melding_key),
cnt_mutatie_status_key
NUMBER(10)
DEFAULT 1
CONSTRAINT cnt_r_cnt_mutatie_status REFERENCES cnt_mutatie_status(cnt_mutatie_status),
cnt_srtruimte_prijs
NUMBER(8,2),
cnt_contract_onrgoed_key_org
NUMBER(10)
CONSTRAINT cnt_r_cnt_contract_onrgoed_key REFERENCES cnt_contract_onrgoed(cnt_contract_onrgoed_key)
);
CREATE_TABLE(cnt_contract_note, 0)
(
cnt_contract_note_key NUMBER (10) PRIMARY KEY,

View File

@@ -85,14 +85,6 @@ BEGIN
SET_VERWIJDER_CHILDREN(cnt_contract_object,cnt_contract_key,cnt_contract_verwijder,cnt_contract_object_verwijder,cnt_contract);
SET_VERWIJDER_CHILDREN(cnt_contract_plaats,cnt_contract_key,cnt_contract_verwijder,cnt_contract_plaats_verwijder,cnt_contract);
BEGIN IF :new.cnt_contract_verwijder IS NOT NULL
OR ( :new.cnt_contract_verwijder IS NULL
AND :old.cnt_contract_verwijder IS NOT NULL)
THEN
DELETE cnt_contract_onrgoed
WHERE cnt_contract_onrgoed.cnt_contract_key = :new.cnt_contract_key;
END IF;
END;
END;
/
@@ -339,14 +331,6 @@ BEGIN
END;
/
CREATE_TRIGGER(cnt_t_cnt_contract_onrg_B_IU)
BEFORE INSERT OR UPDATE ON cnt_contract_onrgoed
FOR EACH ROW
BEGIN
UPDATE_PRIMARY_KEY(cnt_contract_onrgoed_key,cnt_s_cnt_onrgoed_key);
END;
/
CREATE_TRIGGER(cnt_t_cnt_mutatie_B_IU)
BEFORE INSERT OR UPDATE ON cnt_mutatie
FOR EACH ROW

View File

@@ -338,6 +338,13 @@ FAC_LCL('lcl_close_window', 'Sluiten', 'Close', 'Schlie
FAC_LCL('lcl_window_done', 'Gereed', 'Complete', 'Fertig', 'Pr<50>t')
FAC_LCL('lcl_select_nextaction', 'Wat wilt u hier vervolgens mee doen?', 'What would you like to do next?', 'Wie m<>chten Sie fortfahren?', 'Qu''est-ce que vous souhaiter faire avec <20>a?')
FAC_LCL('lcl_more', 'Meer..', 'More..', 'Mehr..', 'Plus..')
FAC_LCL('lcl_dag_1', 'Zondag', 'Sunday', 'Sonntag', 'Dimanche')
FAC_LCL('lcl_dag_2', 'Maandag', 'Monday', 'Montag', 'Lundi')
FAC_LCL('lcl_dag_3', 'Dinsdag', 'Tuesday', 'Dienstag', 'Mardi')
FAC_LCL('lcl_dag_4', 'Woensdag', 'Wednesday', 'Mittwoch', 'Mercredi')
FAC_LCL('lcl_dag_5', 'Donderdag', 'Thursday', 'Donnerstag', 'Jeudi')
FAC_LCL('lcl_dag_6', 'Vrijdag', 'Friday', 'Freitag', 'Vendredi')
FAC_LCL('lcl_dag_7', 'Zaterdag', 'Saturday', 'Samstag', 'Samedi')
FAC_LCL('lcl_today', 'vandaag', 'today', 'heute', 'Aujourd''hui')
FAC_LCL('lcl_date_today', 'Vandaag', 'Today', 'Heute', 'Aujourd''hui')
FAC_LCL('lcl_date_yesterday', 'Gisteren', 'Yesterday', 'Morgen', 'Hier')
@@ -951,7 +958,7 @@ FAC_LCL('lcl_ins_copy', 'Kopi
FAC_LCL('lcl_ins_info', 'Info', 'Info', 'Info', 'Info ')
FAC_LCL('lcl_ins_prijs', 'Prijs', 'Price', 'Preis', 'Prix')
FAC_LCL('lcl_ins_kosten', 'Kosten', 'Costs', 'Kosten', 'Co<43>ts')
FAC_LCL('lcl_ins_active', 'Actief', 'Active', 'Aktiv', 'Actif')
FAC_LCL('lcl_ins_active', 'Terugkerende taken van toepassing', 'Recurring tasks applicable', 'Wiederkehrende Aufgaben anwendbar', 'T<>ches r<>currentes applicable')
FAC_LCL('lcl_ins_not_active', 'Inactief', 'Inactive', 'Nicht aktiv', 'Pas actif')
FAC_LCL('lcl_obj_identification', 'Identificatie', 'Identification', 'Identifikation', 'Identification')
FAC_LCL('lcl_ins_opmerking', 'Beschrijving', 'Description', 'Umschreibung', 'Description')
@@ -1117,6 +1124,13 @@ FAC_LCL('lcl_correct', 'Correctie', 'Correction', 'Korrektur', 'Correction')
FAC_LCL('lcl_total_cost', 'Totaal', 'Total', 'Summe', 'Total')
FAC_LCL('lcl_opdr_cost_exceed', 'Maximaal op te voeren bedrag is ', 'Maximum amount is ', 'Maximal einzugebender Betrag ist ', 'Montant maximal <20> s''enregistrer est ')
FAC_LCL('lcl_handler', 'Uitvoerende', 'Contractor', 'Ausf<73>hrende', 'Exc<78>cutant')
FAC_LCL('lcl_opdr_internuit', 'Intern', 'Internal', 'Intern', 'Interne')
FAC_LCL('lcl_opdr_externuit', 'Extern', 'External', 'Extern', 'Extern')
FAC_LCL('lcl_opdr_selected', 'Geselecteerd', 'Selected', 'Ausgew<65>hlt', 'S<>lectionn<6E>e')
FAC_LCL('lcl_opdr_moved', 'Verplaatst', 'Moved', 'Versetzt', 'D<>plac<61>s')
FAC_LCL('lcl_opdr_active', 'Actief', 'Active', 'Aktiv', 'Aktif')
FAC_LCL('lcl_opdr_late', 'Te laat', 'Too late', 'Zu sp<73>t', 'Trop tard')
FAC_LCL('lcl_opdr_unassigned', 'Niet toegewezen', 'Not assigned', 'Nicht zugewiesen', 'Ne pas assign<67>')
FAC_LCL('lcl_contact_pers', 'Contactpersoon', 'Contact', 'Ansprechpartner/in', 'Contact')
FAC_LCL('lcl_intern_pers', 'Collega', 'Colleague', 'Kollege/Kollegin', 'Coll<6C>gue')
FAC_LCL('lcl_mlduren_more', 'Klik hier voor overige opdrachten', 'Click here for additional orders', 'Klicken Sie hier f<>r sonstige Auftr<74>ge', 'Cliquez ici pour autre ordres')
@@ -1856,7 +1870,7 @@ FAC_LCL('lcl_adress', 'Adres', 'Address', 'Adresse', 'Adresse')
FAC_LCL('lcl_print', 'Afdrukken', 'Print', 'Drucken', 'Imprimer')
FAC_LCL('lcl_internal_error', 'Systeemfout', 'Internal error', 'Interner Fehler', 'Erreur interne')
FAC_LCL('lcl_recnotfound_error', 'Gegevens niet gevonden.<br>Misschien is het net verwijderd?<p>Sluit deze tab en ververs uw overzicht.</p>', 'Record not found.<br>It might be just deleted?<p>Close this tab and refresh your overview.</p>', 'Datensatz nicht gefunden.<br>Eventuell wurde der Datensatz gel<65>scht.<p>Schlie<69>en Sie diese Registerkarte und aktualisieren Sie Ihre <20>bersicht.</p>', 'Enregistrement pas trouv<75>.<br>Peut-<2D>tre que c''est juste supprim<69>?<p>Fermez cet onglet et actualisez votre vue d''ensemble.</p>')
FAC_LCL('lcl_hmac_late', 'De geldigheid van deze pagina is verlopen.<p>Sluit deze tab en ververs uw overzicht.</p>', 'This page has expired.<p>Please close this tab and refresh.</p>', '@<p>Schlie<69>en Sie diese Registerkarte und aktualisieren Sie Ihre <20>bersicht.</p>', '@<p>Peut-<2D>tre que c''est juste supprim<69>?<p>Fermez cet onglet et actualisez votre vue d''ensemble.</p>')
FAC_LCL('lcl_hmac_late', 'Deze pagina is niet (meer) geldig.', 'This page has expired.<p>Please close this tab and refresh.</p>', '@<p>Schlie<69>en Sie diese Registerkarte und aktualisieren Sie Ihre <20>bersicht.</p>', '@<p>Peut-<2D>tre que c''est juste supprim<69>?<p>Fermez cet onglet et actualisez votre vue d''ensemble.</p>')
FAC_LCL('lcl_total', 'totaal', 'total', 'Summe', 'total')
FAC_LCL('lcl_Total', 'Totaal', 'Total', 'Summe', 'Total')
FAC_LCL('lcl_mark_as_read', 'Verwijder bericht', 'Delete message', 'Entferne Nachricht', 'Supprimer message')
@@ -2400,14 +2414,6 @@ FAC_LCL('lcl_cnt_service_name', 'Dienst', 'Service', 'Service', 'Service')
FAC_LCL('lcl_cnt_overvw', 'Overzicht', 'Overview', '<27>bersicht', 'Vue d''ensemble')
FAC_LCL('lcl_cnt_ruimte_terrein', 'Ruimte/Terrein', 'Room/Terrain', 'Raum/Terrain', 'Espace/Terrain')
FAC_LCL('lcl_cnt_mutatie_huurder', 'Huurder', 'Tenant', 'Mieter', 'Locataire')
FAC_LCL('lcl_cnt_mutatie_vervallen', 'Vervallen', 'Expired', 'Verfallen', 'Expir<69>')
FAC_LCL('lcl_cnt_mutatie_open', 'Open', 'Open', 'Offen', 'Ouvert')
FAC_LCL('lcl_cnt_mutatie_concept', 'Concept', 'Draft', 'Konzept', 'Concept')
FAC_LCL('lcl_cnt_mutatie_ontvangen_ok', 'Ontvangen/Ok', 'Received/Ok', 'Empfangen/Ok', 'Re<52>u/Ok')
FAC_LCL('lcl_cnt_mutatie_ontvangen_nok', 'Ontvangen/NietOk', 'Received/NotOk', 'Empfangen/Nicht Ok', 'Re<52>u/PasOk')
FAC_LCL('lcl_cnt_mutatie_voltooid', 'Voltooid', 'Completed', 'Abgewickelt', 'Trait<69>')
FAC_LCL('lcl_cnt_mutatie_geexporteerd', 'Ge<47>xporteerd', 'Exported', 'Exportiert', 'Export<72>')
FAC_LCL('lcl_cnt_mutatie_status2', 'Mutatiestatus', 'Mutation status', '<27>nderungstatus', 'Etat de mutation')
FAC_LCL('lcl_cnt_concept', 'Concept', 'Concept', 'Konzept', 'Concept')
FAC_LCL('lcl_cnt_export', 'Exporteer', 'Export', 'Exportiere', 'Export<72>')
FAC_LCL('lcl_cnt_verwijder', 'Verwijder', 'Delete', 'Entferne', 'Supprim<69>')
@@ -2822,9 +2828,9 @@ FAC_LCL('lcl_faq_lang', 'Taal', 'Language', 'Sprache', 'Langue')
FAC_LCL('lcl_faq_level', 'Zichtbaar voor', 'Visible for', 'Einsehbar f<>r', 'Visible pour')
FAC_LCL('lcl_faq_level1', 'Zelfservice', 'SelfService', 'SB', 'Libre-Service')
FAC_LCL('lcl_faq_level2', 'Professionals', 'Professionals', 'Professionals', 'Professionnels')
FAC_LCL('lcl_faq_level3', 'Beide', 'Both', 'Beide', 'Tous')
FAC_LCL('lcl_faq_level3', 'Zelfservice en Professionals', 'SelfService and Professionals', 'SB und Professionals', 'Libre-Service et Professionnels')
FAC_LCL('lcl_faq_stdmelding', 'Meldingspecifiek', 'Category specific', 'Meldungspezifisch', 'Sp<53>cifique pour appel')
FAC_LCL('lcl_faq_mld_1', 'Hieronder vindt u specifieke informatie over uw vraag. Klik erop voor het antwoord.', 'Below you will find specific information about your question. Click on it to see the answer.', 'Hierunter finden Sie spezifische Informationen <20>ber Ihre Frage. Klicken Sie f<>r die Antwort.', 'Dessous vous trouvez des informations sp<73>cifiques de votre question. Cliquez l<> pour la r<>ponse.')
FAC_LCL('lcl_faq_mld_1', 'Hieronder vindt u specifieke informatie over uw vraag, klik erop voor meer info.', 'Below you will find specific information about your question. Click on it to see more info.', 'Hierunter finden Sie spezifische Informationen <20>ber Ihre Frage. Klicken Sie f<>r die Antwort.', 'Dessous vous trouvez des informations sp<73>cifiques de votre question. Cliquez l<> pour la r<>ponse.')
FAC_LCL('lcl_faq_mld_2', 'Mogelijk hoeft u met deze informatie deze melding niet meer in te dienen. Toch wel? Dan kunt u gewoon verder gaan.', 'After reading the information registration of a new call may not be necessary anymore. If this is not the case, please continue.', 'M<>glicherweise d<>rfen Sie mit diesen Informationen keine Meldung erfassen. Trotzdem k<>nnen Sie Ihre Eingabe fortsetzen.', 'Avec ces informations l''enregistrement de cet appel ne peut <20>tre plus n<>cessaire. Quoi qu''il en soit? Vous pouvez contiuer.')
FAC_LCL('lcl_faq_mld_3', 'Ok, stop met invoeren', 'Ok, stop submitting', 'Ok, die Eingabe halten', 'Ok, arr<72>ter')
FAC_LCL('lcl_faq_mld_4', '', '', '', '')
@@ -4487,6 +4493,15 @@ FAC_LCL('bez_actie_flagsLOV',
'0;N.a.;1;Aufruf;2;Automatische Ausweisnummer;3;Aufruf und automatische Ausweisnummer',
'0;P.a.;1;Appel;2;Num<75>ro de badge automatique;3;Appel et le num<75>ro de badge automatique')
FAC_LCL('alg_kenmerk', 'Kenmerk onroerendgoed', 'Property real estate', 'Eigenschaft Immobilien', 'Caract<63>ristiques biens')
FAC_LCL('alg_kenmerk_m', 'Kenmerken onroerendgoed', 'Properties real estate', 'Eigenschaften Immobilien', 'Caract<63>ristiques biens')
FAC_LCL('bes_srtkenmerk', 'Kenmerk bestelling', 'Property order', 'Eigenschaft Bestellung', 'Caract<63>ristiques de commande')
FAC_LCL('bes_srtkenmerk_m', 'Kenmerken bestelling', 'Properties order', 'Eigenschaften Bestellung', 'Caract<63>ristiques de commande')
FAC_LCL('bez_kenmerk', 'Kenmerk bezoeker', 'Property', 'Eigenschaft', 'Caract<63>ristiques')
FAC_LCL('bez_kenmerk_m', 'Kenmerken bezoeker', 'Properties', 'Eigenschaften', 'Caract<63>ristiques')
FAC_LCL('cad_label', 'Label', 'Label', 'Aufschrift', 'Etiquette')
FAC_LCL('cad_label_m', 'Labels', 'Labels', 'Aufschriften', 'Etiquettes')
FAC_LCL('cad_label_omschrijving', 'Omschrijving', 'Description', 'Umschreibung', 'Description')
@@ -4555,6 +4570,9 @@ FAC_LCL('cnt_srtcontract_key', 'Contractsoort', 'Contract type', 'V
FAC_LCL('cnt_niveau_discipline', 'Vakgroep', 'Discipline', 'Innendienst', 'D<>partement')
FAC_LCL('cnt_niveau_herkenning', 'Herkenningstekst', 'Recognition text', 'Erkennungstext', 'Texte de reconnaissance')
FAC_LCL('cnt_srtkenmerk', 'Kenmerksoort contract', 'Property type contract', 'Eigenschaftsorte Vertrag', 'Sorte de caract<63>ristique contrat')
FAC_LCL('cnt_srtkenmerk_m', 'Kenmerksoorten contract', 'Property types contract', 'Eigenschaftsorten Vertrag', 'Sortes de caract<63>ristique contrat')
FAC_LCL('ctr_discipline', 'Taakcategorie', 'Task category', 'Vorgang Kategorie', 'T<>che cat<61>gorie')
FAC_LCL('ctr_discipline_m', 'Taakcategorie<69>n', 'Task categories', 'Vorgang Kategorien', 'T<>che cat<61>gories')
FAC_LCL('ctr_discipline_module', 'Module', 'Module', 'Modul', 'Module')
@@ -4682,6 +4700,15 @@ FAC_LCL('fac_widget_height', 'Hoogte(px)', 'Height(px)', 'H
FAC_LCL('fac_widget_width', 'Breedte(%)', 'Width(%)', 'Breite', 'Largeur')
FAC_LCL('fac_widget_aanmaak', 'Aanmaakdatum', 'Creation date', 'Erstellungsdatum', 'Date de cr<63>ation')
FAC_LCL('fac_tracking', 'Tracking', 'Tracking', 'Verfolgung', 'Traque')
FAC_LCL('fac_tracking_m', 'Tracking', 'Tracking', 'Verfolgung', 'Traque')
FAC_LCL('faq_kenmerk', 'Kenmerk kennisbank', 'Property knowledgebase', 'Eigenschaft Datenbank', 'Caract<63>ristiques base de connaissances')
FAC_LCL('faq_kenmerk_m', 'Kenmerken kennisbank', 'Properties knowledgebase', 'Eigenschaften Datenbank', 'Caract<63>ristiques base de connaissances')
FAC_LCL('custom_field', 'Aangepast veld', 'Custom field', 'Benutzerdefinierte Feld', 'Champs personnalis<69>')
FAC_LCL('custom_field_m', 'Aangepaste velden', 'Custom fields', 'Benutzerdefinierte Felder', 'Champs personnalis<69>s')
FAC_LCL('fin_btwtabel', 'BTW tabel', 'VAT table', 'MwSt Tafel', 'Tableau de TVA')
FAC_LCL('fin_btwtabel_m', 'BTW-tabellen', 'VAT-tables', 'MwSt-Tafels', 'Tableaus de TVA')
FAC_LCL('fin_btwtabel_omschrijving', 'Omschrijving', 'Description', 'Umschreibung', 'Description')
@@ -4700,6 +4727,9 @@ FAC_LCL('fin_invoice', 'Factuur', 'Invoice', 'Faktura'
FAC_LCL('fin_invoicerows', 'Factuurregels', 'Invoice lines', 'Fakturalinien', 'Lignes de facture')
FAC_LCL('fin_kenmerk_type', 'Kenmerk voor', 'Property for', 'Eigenschaft f<>r', 'Caract<63>ristique pour')
FAC_LCL('fin_verkoopfactuur', 'Verkoopfactuur regel', 'Invoice line', 'Fakturalinie', 'Ligne de facture')
FAC_LCL('fin_verkoopfactuur_m', 'Verkoopfactuur regels', 'Invoice lines', 'Fakturalinien', 'Lignes de facture')
FAC_LCL('ins_discipline', 'Discipline', 'Discipline', 'Disziplin', 'Discipline')
FAC_LCL('ins_discipline_m', 'Disciplines', 'Disciplines', 'Diszipline', 'Disciplines')
@@ -4824,6 +4854,9 @@ FAC_LCL('ins_srtdiscipline_kostenklantLOV',
'0;Standard Aus;1;Standard An;2;Kostenstelle nicht zeigen',
'0;Standard d<>sactiv<69>;1;Standard activ<69>;2;Montrent pas centre de co<63>ts')
FAC_LCL('ins_srtkenmerk', 'Kenmerksoort object', 'Property type object', 'Eigenschaftsorte Objekt', 'Sorte de caract<63>ristique objet')
FAC_LCL('ins_srtkenmerk_m', 'Kenmerksoorten object', 'Property types object', 'Eigenschaftsorten Objekt', 'Sortes de caract<63>ristique objet')
FAC_LCL('mld_vrije_dagen', 'Vrije dag', 'Day off', 'Freien Tag', 'Jour de cong<6E>')
FAC_LCL('mld_vrije_dagen_m', 'Vrije dagen', 'Days off', 'Freien Tage', 'Jours de cong<6E>')
FAC_LCL('mld_vrije_dagen_datum', 'Datum', 'Date', 'Datum', 'Date')
@@ -4904,6 +4937,12 @@ FAC_LCL('mld_discipline_interactfeLOV',
'0;Pas d''interaction/standard ne pas visible pour LS;1;Interaction/@Visible pour LS;2;Interaction/@Standard ne pas visible pour LS;3;Interaction/@Standard visible pour LS')
FAC_LCL('mld_discipline_offhours', 'Buiten kantooruren melden', 'Report outside office hours', 'Bericht au<61>erhalb der B<>rozeiten', 'Rapport en dehors des heures de bureau')
FAC_LCL('mld_srtdiscipline', 'Vakgroeptype', 'Discipline type', 'Innendiensttyp', 'Type de groupe de service')
FAC_LCL('mld_srtdiscipline_m', 'Vakgroeptypen', 'Discipline types', 'Innendiensttypen', 'Types de groupe de service')
FAC_LCL('mld_srtkenmerk', 'Kenmerksoort melding', 'Property type call', 'Eigenschaftsorte Meldung', 'Sorte de caract<63>ristique appel')
FAC_LCL('mld_srtkenmerk_m', 'Kenmerksoorten melding', 'Property types call', 'Eigenschaftsorten Meldung', 'Sortes de caract<63>ristique appel')
FAC_LCL('mld_typeopdr', 'Opdrachttype', 'Order type', 'Auftragstyp', 'Type d''emploi')
FAC_LCL('mld_typeopdr_m', 'Opdrachttypen', 'Order types', 'Auftragstypen', 'Types d''emploi')
FAC_LCL('mld_typeopdr_omschrijving', 'Omschrijving', 'Description', 'Umschreibung', 'Description')
@@ -5062,8 +5101,8 @@ FAC_LCL('prs_relatietype', 'Relatietype', 'Relation type', 'Beziehungstyp', 'T
FAC_LCL('prs_relatietype_m', 'Relatietypes', 'Relation types', 'Beziehungstypen', 'Types de Relation')
FAC_LCL('prs_relatietype_omschrijving', 'Omschrijving', 'Description', 'Umschreibung', 'Description')
FAC_LCL('prs_v_aanwezigsrtperslid', 'Functie', 'Function', 'Funktion', 'Fonction')
FAC_LCL('prs_v_aanwezigsrtperslid_m', 'Functies', 'Functions', 'Funktionen', 'Fonctions')
FAC_LCL('prs_srtperslid', 'Functie', 'Function', 'Funktion', 'Fonction')
FAC_LCL('prs_srtperslid_m', 'Functies', 'Functions', 'Funktionen', 'Fonctions')
FAC_LCL('prs_srtperslid_omschrijving', 'Omschrijving', 'Description', 'Umschreibung', 'Description')
FAC_LCL('prs_srtperslid_uurloon', 'Uurloon', 'Hourly rate', 'Stundenlohn', 'Salaire horaire')
FAC_LCL('prs_srtperslid_opp', 'Oppervlakte', 'Area', 'Fl<46>che', 'Surface')
@@ -5162,6 +5201,12 @@ FAC_LCL('ins_discipline_min_levelLOV',
'1;Reservierbares Objekt;2;Verbrauchsartikel;3;Raum',
'1;Objet r<>servable;2;Consommable;3;Espace')
FAC_LCL('res_disciline', 'Catalogus', 'Catalogue', 'Katalog', 'Catalogue')
FAC_LCL('res_discipline_m', 'Details catalogus', 'Catalogue details', '@Katalog Details', '@D<>tails de catalogue')
FAC_LCL('res_ruimte', 'Reserveerbare ruimte', 'Reservable room', 'Buchbare Raum', 'L''espace <20> r<>server')
FAC_LCL('res_ruimte_m', 'Reserveerbare ruimten', 'Reservable rooms', 'Buchbare Raume', 'L''espaces <20> r<>server')
COMMIT;
@@ -5884,7 +5929,7 @@ FAC_LCL('lcl_WEB_BGTMAN', 'Beheer:Budgetindeling', 'Admin:Budget definition', '@
FAC_LCL('lcl_WEB_BGTUSE', 'Beheer:Budgetten', 'Admin:Budgets', '@@', '@@')
FAC_LCL('lcl_WEB_BGTORD', 'Beheer:Opdrachtregistratie', 'Admin:Order registration', '@@', '@@')
FAC_LCL('lcl_WEB_ALGMAN_info ', 'Om de vastgoedgegevens te kunnen beheren', 'To manage real estate details', '@@', '@@')
FAC_LCL('lcl_WEB_ALGMAN_info', 'Om de vastgoedgegevens te kunnen beheren', 'To manage real estate details', '@@', '@@')
FAC_LCL('lcl_WEB_ALGMGT_info', 'Modulebeheer', 'Module management', '@@', '@@')
FAC_LCL('lcl_WEB_ALGMSU_info', 'Supergebruiker', 'Super user', '@@', '@@')
FAC_LCL('lcl_WEB_ALGUSE_info', 'Om het ruimtegebruik te kunnen beheren', 'To use real estate data', '@@', '@@')

View File

@@ -1111,8 +1111,6 @@ CREATE OR REPLACE PACKAGE BODY fac AS
DELETE FROM cnt_contract_plaats;
DELETE FROM cnt_contract_onrgoed;
DELETE FROM mld_kenmerkmelding;
DELETE FROM mld_melding_object;
@@ -1126,7 +1124,7 @@ CREATE OR REPLACE PACKAGE BODY fac AS
DELETE FROM mld_adres;
DELETE FROM prs_perslidwerkplek;
DELETE FROM prs_werkplek;
IF (p_mode < 2)

View File

@@ -336,7 +336,6 @@ DEFINE_SETTING('MLD', 0001, 'WEB_FACTAB', 'mld_contract_startdate_key'
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_enable_workflow' , 'number' , '1' , 'enable workflow in call handling {0=workflow disabled | 1=workflow enabled }')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_notify_workflowsteps' , 'number' , '1' , 'Notify each workflowstep to caller {0=do not notify steps (blackbox) | 1=notify each step (whitebox)}')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_close_opdr_default' , 'number' , '0' , 'De checkbox met de vraag of de open opdrachten ook afgemeld moeten worden is standaard niet(0=default) of wel(1) aangevinkt')
DEFINE_SETTING('MLD', 0001, 'WEB_FACTAB', 'mld_contract_no_renter_key' , 'number' , '-1' , 'Key of company to indicate that the contract - room relation (CNT_CONTRACT_ONRGOED) can be removed')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_bo_sort_descending' , 'number' , '0' , 'Sort ordering of mld_melding for BO (0 = most urgent first | 1 = last made first );')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_max_history' , 'number' , '0' , 'Show calls and orders not longer then mld_max_history days ago (FE/FO/BO) ((mld_max_history <= 0) : show all finished calls and orders (default))')
DEFINE_SETTING('MLD', 0001, 'WEB_PRSSYS', 'mld_melding_close' , 'number' , '0' , 'Can close complain with orders in complain overview window without seeing complain details? {0=yes default | 1=no}')

View File

@@ -475,6 +475,11 @@ DROP VIEW cnt_v_cnt_contract_onrgoed_cur;
DROP VIEW cnt_v_cnt_contract_onrgoed_mut;
DROP VIEW cnt_v_contract_huurder;
DROP INDEX cnt_i_cnt_contract_onrg1;
DROP INDEX cnt_i_cnt_contract_onrg2;
DROP TABLE cnt_contract_onrgoed PURGE;
DROP TABLE cnt_mutatie_status PURGE;
/////////////////////////////////////////////////////////////////////////////////////////// FSN#38888
DROP VIEW mld_v_stdmelding_kenmerk;