diff --git a/CUST/AAFP/FPC2landen.gif b/CUST/AAFP/FPC2landen.gif deleted file mode 100644 index 3e690c09bf..0000000000 Binary files a/CUST/AAFP/FPC2landen.gif and /dev/null differ diff --git a/CUST/AAFP/cust.css b/CUST/AAFP/cust.css deleted file mode 100644 index e64a9f9630..0000000000 --- a/CUST/AAFP/cust.css +++ /dev/null @@ -1,14 +0,0 @@ -/* - * $Revision$ - * $Id$ - */ - -@import "../AAXX/default.css"; - -#headerblok -{ - background: url(FPC2landen.gif) no-repeat; - background-color: #FFFFFF; - background-position: 0px 0px; - color: #000002; -} diff --git a/CUST/AAFP/export/gen_export_daily_task.bat b/CUST/AAFP/export/gen_export_daily_task.bat deleted file mode 100644 index 2447426975..0000000000 --- a/CUST/AAFP/export/gen_export_daily_task.bat +++ /dev/null @@ -1,19 +0,0 @@ -REM GEN_EXPORT_DAILY_TASK.BAT -REM -REM Roept scripts aan die dagelijks uitgevoerd moeten worden -REM -REM Context : roep deze file aan indien nodig, of schedule deze -REM Verseist: de randvoorwaarde voor het gebruik van gen_export -REM -REM $Revision$ -REM $Id$ -REM -REM (c) 2009, SG facilitor, +31 (53) 4800710, helpdesk@sgfacilitor.nl -REM - - -CALL ..\..\..\utils\gen_export\gen_export.bat DAILY_TASK - - - - diff --git a/CUST/AAFP/export/gen_export_exact.bat b/CUST/AAFP/export/gen_export_exact.bat deleted file mode 100644 index e46b1f0068..0000000000 --- a/CUST/AAFP/export/gen_export_exact.bat +++ /dev/null @@ -1,26 +0,0 @@ -REM GEN_EXPORT_EXACT.BAT -REM -REM Exporteert informatie naar een export-bestand -REM -REM Context : roep deze file aan indien nodig, of schedule deze -REM Verseist: de randvoorwaarde voor het gebruik van gen_export -REM -REM $Revision$ -REM $Id$ -REM -REM (c) 2010, SG|facilitor bv, +31 (53) 4800700, support@sgfacilitor.nl -REM - -CALL ..\..\..\utils\gen_export\gen_export.bat EXACT - -CALL ..\..\..\utils\gen_export\gen_export.bat VERWERK_EXACT - -CALL ..\..\..\utils\gen_export\gen_export.bat BUNDEL_CATERING - -CALL ..\..\..\utils\gen_export\gen_export.bat EXACT_VERKOOP - -CALL ..\..\..\utils\gen_export\gen_export.bat EXACT_VERKOOP_VJ - -CALL ..\..\..\utils\gen_export\gen_export.bat EXACT_UREN - -CALL ..\..\..\utils\gen_export\gen_export.bat VERWERK_EXACT_UREN diff --git a/CUST/AAFP/import/import_medew_aafm.bat b/CUST/AAFP/import/import_medew_aafm.bat deleted file mode 100644 index 20fd710cdd..0000000000 --- a/CUST/AAFP/import/import_medew_aafm.bat +++ /dev/null @@ -1,4 +0,0 @@ - -echo 'Empty' >> aaxx_imp.csv -cscript ..\..\..\utils\gen_import\gen_import.wsf AAXX AAFM_MEDEWERKERS >>genimport.log 2>>&1 - diff --git a/CUST/AAFP/oracle.udl b/CUST/AAFP/oracle.udl deleted file mode 100644 index 4eeee51fa7..0000000000 Binary files a/CUST/AAFP/oracle.udl and /dev/null differ diff --git a/CUST/AAFP/sso/SSOprodAAFP.asp b/CUST/AAFP/sso/SSOprodAAFP.asp deleted file mode 100644 index 67c33048eb..0000000000 --- a/CUST/AAFP/sso/SSOprodAAFP.asp +++ /dev/null @@ -1,119 +0,0 @@ -<%@language="VBScript"%> -<% -'******************************************************************* -'Script: SSO.ASP -' -' $Revision$ -' $Id$ -' -'Doel: SSO bewerkstelligen voor ASP providers - deel 1 van 2 -'******************************************************************* -'* declare ********************************************************* -Dim strGUID, strCTID, strUserName, strKey, strASPUrl, strSharedKey -Dim strEncryptedCode, strControlEncryptedCode -'* variables ******************************************************* -strASPUrl = "https://aafp.facilitor.nl?sso=2" 'HTTPS URL adres van ASP -strSharedKey = "25bb61b4-d81d-4c88-88e4-0e2a0b279a45" 'Sharedkey - Should be the same at target side -'******************************************************************* -response.Buffer=true -Dim proto, zelf -If Request.ServerVariables("SERVER_PORT") = 443 Then - proto = "https://" -Else - proto = "http://" -End If -zelf = proto & Request.ServerVariables("HTTP_HOST") & Request.ServerVariables("SCRIPT_NAME") -%> - - - - - -Een moment aub. -
- -<% -'* request action = requestid *************************************** -strGUID = Request.form("guid") -strCTID = Request.form("ctid") -if strGUID = "" or strCTID = "" then - '* first flow: requestid **************************************** - %> - - " ID="jumpTo"> - <% -else - '* second flow: create code ************************************* - strUserName = Request.ServerVariables("LOGON_USER") - if strUserName = "" then - strUserName = Request.ServerVariables("REMOTE_USER") - if strUserName = "" then - strUserName = Request.ServerVariables("HTTP_USER") - if strUserName = "" then - strUserName = Request.ServerVariables("HTTP_LOGIN") - if strUserName = "" then - 'Forse user to authenticate - response.Clear - response.Status = 401 - response.Flush - response.End - end if - end if - end if - end if - - ' * Strip domain name - Do While instr(strUserName, "\")>0 - strUserName = Mid(strUserName, instr(strUserName, "\") + 1) - Loop - '* crypt ******************************************************** - 'First coding phase - strKey = mid(strSharedKey & strGUID,1,Len(strUserName)) - strEncryptedCode = EnCrypt(strUserName) - 'Second coding phase - strKey = mid(strGUID,1,Len(strEncryptedCode)) - strEncryptedCode = EnCrypt(strEncryptedCode) - '* crypt Controlkey ********************************************* - 'First coding phase - strKey = mid(strSharedKey & strCTID,1,Len(strCTID)) - strControlEncryptedCode = EnCrypt(zelf) - 'Second coding phase - strKey = mid(strCTID,1,Len(strControlEncryptedCode)) - strControlEncryptedCode = EnCrypt(strControlEncryptedCode) - %> - - - - - <% -end if -'* Functions ******************************************************** -Function EnCrypt(strCryptThis) - Dim strChar, iKeyChar, iStringChar, i - for i = 1 to Len(strCryptThis) - iKeyChar = Asc(mid(strKey,i,1)) - iStringChar = Asc(mid(strCryptThis,i,1)) - iCryptChar = iKeyChar Xor iStringChar - strEncrypted = strEncrypted & Chr(iCryptChar) - next - EnCrypt = strEncrypted -End Function -Function ConvertToAsc(strAsc) - Dim iCount - Dim strTemp - ConvertToAsc = "" - for iCount = 1 to len(strAsc) - strTemp = (asc(mid(strAsc,iCount,1))) - ConvertToAsc = ConvertToAsc & len(strTemp) & strTemp - next -End Function -'********************************************************************* -%> -
- - diff --git a/CUST/AAFP/tasks/gen_notify.bat b/CUST/AAFP/tasks/gen_notify.bat deleted file mode 100644 index ecfc7d492b..0000000000 --- a/CUST/AAFP/tasks/gen_notify.bat +++ /dev/null @@ -1,4 +0,0 @@ -@echo off -REM Moet gescheduled worden (normaliter 1 keer per uur) om door de applicatiebeheerder -REM ingeregelde notificaties te genereren. -cscript ..\..\..\utils\gen_notify\gen_notify.js ../oracle.udl AAFP \ No newline at end of file diff --git a/CUST/AAFP/tasks/gen_scheduler.bat b/CUST/AAFP/tasks/gen_scheduler.bat deleted file mode 100644 index 86fd60f7cd..0000000000 --- a/CUST/AAFP/tasks/gen_scheduler.bat +++ /dev/null @@ -1,4 +0,0 @@ -@echo off -REM Moet gescheduled worden (normaliter 1 keer per dag) om door de applicatiebeheerder -REM ingeregelde jobs (aanmaak van periodieke opdrachten) uit te voeren. -cscript ..\..\..\utils\gen_scheduler\gen_scheduler.js ../oracle.udl \ No newline at end of file diff --git a/CUST/AAFP/tasks/putOrders.bat b/CUST/AAFP/tasks/putOrders.bat deleted file mode 100644 index d383c0e358..0000000000 --- a/CUST/AAFP/tasks/putOrders.bat +++ /dev/null @@ -1 +0,0 @@ -call ..\..\..\utils\putOrders\putOrders.bat \ No newline at end of file diff --git a/CUST/AAFP/tmpl_logo.gif b/CUST/AAFP/tmpl_logo.gif deleted file mode 100644 index acada2c13f..0000000000 Binary files a/CUST/AAFP/tmpl_logo.gif and /dev/null differ diff --git a/CUST/AAFP/tmpl_logo_sm.gif b/CUST/AAFP/tmpl_logo_sm.gif deleted file mode 100644 index 49a2dc871e..0000000000 Binary files a/CUST/AAFP/tmpl_logo_sm.gif and /dev/null differ diff --git a/CUST/AAFP/xsl/cust.xsl b/CUST/AAFP/xsl/cust.xsl deleted file mode 100644 index d4b77ae719..0000000000 --- a/CUST/AAFP/xsl/cust.xsl +++ /dev/null @@ -1,1697 +0,0 @@ - - - - - - - - - - - - - - - - ================================ MELDINGEN ============================== - Facilitor new style default XSL template for melding - - - - window.print(); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - als we binnen een opdracht zijn, tonen we de meldingtekst niet - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Melding - - - SPOED! - -
- Aanvrager: - - - - Telefoon: - - - - -
- Locatie: - -   - () - - Afdeling: - - -
- Werkplek: - - -
- .  - () -
-
-
-
- Locatie: - -   - () - - Melddatum: - -   - -
- Terrein: - - - - Gebouw: - - - - Ordernr: - - -
- - - - Laag: - -   - () - - Uitvoertijd: - - - -   - -   - - -
- Ruimte: - -   - () - - - - Status: - - -
-
- Melding: - - - - - - Vakgroep: - - - - -
- Omschrijving: - - - - -
- - : - - -
- Objecten: - - - - - - - NADER TE DEFINIEREN -
- Afhandeling: - - - - -
- Afhandeling melding : - - - - -
-
- - - - - - - - - - - - -
- - - - - - - ../../cust/aafp/tmpl_logo_sm.gif - - - - - -    - -
- - - - -
- - Docketnummer: FPC2Landen  (Te vermelden op alle documenten m.b.t. deze order!!) - Informatie verzoek: FPC2Landen  (Te vermelden op alle documenten m.b.t. deze order!!) - Klachtnummer: FPC2Landen  (Te vermelden op alle documenten m.b.t. deze order!!) - Offerte aanvraag: FPC2Landen  (Te vermelden op alle documenten m.b.t. deze offerte!!) - Bijlage bij contractorder: FPC2Landen  - Ordernummer: FPC2Landen  (Te vermelden op alle documenten m.b.t. deze order!!) - -
-
-
- - - - - - -
- Servicedesk: -
Tel nr: +31 (0)40 2332840
- Postbus 80009
- 5600 JZ  Eindhoven
- E-mail: servicedeskfpc2landen@aa-fm.com
-
-
- - - - - - -

S.v.p. gereedmelden via Facilitor, wanneer u geen toegang heeft kan dit per mail naar de Servicedesk.
-
- - - - - - -
- Factuuradres: -
AAFM Facility Management BV
- t.a.v. Crediteurenadministratie account FPC2Landen
- P.O. 80009
- 5600 JZ  Eindhoven
-
- - - - - - -
- Leverancier: -
- -
- -
-   
- Tel nr:
- Fax nr:
-
- - - - - - -
- Leverancier: -
- -
- -
-   
- Tel nr:
- Fax nr:
-
- - - - - - - - - -
- Bezoek/afleveradres: -
FPC2Landen
- Gansstraat 164
- 3582 EP  Utrecht -
- Vooraf aanmelden als bezoeker is verplicht. -
Aanmelden via Facility Coördinator: servicedeskfpc2landen@aa-fm.com of 030-3103363. -
Of via de portiers: fpcportiers@fpc2landen.nl of 030-3103300." -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Bezoek/afleveradres: -
zie bijlage
- -
- -
-    -
- - -
- -
-    -
- - - - -    -
- - - - - -    -
-
- - - - Medewerkers van leveranciers dienen te alle tijden aangemeld te worden bij FPC2landen. - Dit geschiedt door een e-mail te zenden aan: servicedeskfpc2landen@aa-fm.com, - met vermelding van voor- en achternaam van betreffende medewerker, - datum en tijd van aankomst bij FPC2Landen. - De AAFM Servicedesk zal ervoor zorgdragen dat betreffende medewerker wordt aangemeld bij de portier van FPC2landen. - Medewerkers van leveranciers dienen tevens in het bezit te zijn van een geldig legitimatiebewijs - (paspoort of ID kaart). Ter plekke dient een geheimhoudingsverklaring te worden getekend. - - - - - - - - -
- Indien op deze order geen bedrag vermeld staat, is de maximale waarde 500 euro. U dient de werkelijke prijs -binnen 8 werkdagen terug te koppelen aan de Servicedesk, deze mag NIET afwijken van het factuurbedrag. -Indien deze opdracht > 500 euro is en geen bedrag bevat, dient u deze order te annuleren bij de Servicedesk -en een RFQ aan te vragen, mits er gerefereerd is naar een offerte. -
-
- - - - - - - -
- Op alle door AAFM Facility Management BV verstrekte offerteaanvragen en opdrachten zullen uitsluitend en onverkort de algemene - inkoopvoorwaarden, versie d.d. 01 januari 2010 van AAFM Facility Management BV van toepassing zijn*, op te vragen via: - http://www.aa-fm.com(onder afdeling Inkoop), met uitzondering van - met AAFM Facility Management BV overeengekomen schriftelijke contractuele afspraken.
-
- * Muv artikel 5. lid 1 in plaats van 60 dagen dient hier 30 dagen gelezen te worden. - - -
Trade register no. 09130306
-
- -
-
Met de ondertekening van dit formulier door leverancier verklaart deze hiermee akkoord te gaan met de hierboven genoemde algemene -inkoopvoorwaarden. Andere voorwaarden worden hierbij nadrukkelijk verworpen, met uitzondering van met AAFM Facility Management BV overeengekomen schriftelijke contractuele afspraken. -
-
-
- - - - - - -
- AAFM Facility Management BV

- -1. AAFM Facility Management BV nodigt u uit een prijsopgave uit te -brengen voor de hieronder omschreven activiteiten.

- -2. De prijsopgave dient een vaste prijs te zijn, gebaseerd op de in dit formulier aangegeven -activiteiten en de (contract)afspraken tussen AAFM en Leverancier, eventueel aangevuld door -opmerkingen/aanvullingen van Leverancier. Indien, wegens omstandigheden, niet kan -worden overgegaan tot het uitbrengen van een vaste prijs dient een raming te worden -afgegeven. Dit moet onder aan dit formulier worden weergegeven. De raming dient een zo -goed mogelijke benadering te zijn van de werkelijke kosten

- -3. Indien de aanbieding het bedrag van € 500,- overstijgt dient te allen tijde een -gedetailleerde kostenspecificatie te worden bijgevoegd. Deze prijsopgave (evt. inclusief -kostenspecificatie) dient ondertekend te worden geretourneerd ter attentie van de Servicedesk
-
-
- - - - - - - - - - - - - - - - - - - - - - - ================================ OPDRACHTEN ============================== - Facilitor new style default XSL template for opdracht - - - - window.print(); - - - - - - - - - - - -
-  Prijsconditie: BTW. Exclusief -  Betalingsconditie: 30 dagen einde maand
- - - - - - - - - - - -
- - - - - - - -
- -
- -
-
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Urgentie niveau: - - - -   - - -   - -  werkdag(en) - - -
- Vakgroep: - - -
- Melding: - - -
- Uitgifte: - - -
- Behandeld door: - - -
- Request nr: - - FPC2Landen -
- Opdrachtgever: - - -
- : - - () -
- : - -   -
- Verdieping: - - -
- : - - () -
- Naam aanvrager: - - -
- Telefoonnummer: - - -
-
- - - - - - - -
- Omschrijving: -
- - - -
- - - - - - -
  - - Werkelijke response datum/tijd: - -   - - Afgehandeld datum/tijd: - -   - - Handtekening AAFM: - - - Definitieve prijs: € - -
- - - - - - -
- - - Handtekening AAFM: -
-
- - - - -
- -
- -
-
- -
- - - - - - - - - - - - - - - - - - - - - -
- - - -
- -
- Prijsopgave referentie:  - -
- Request nummer:  - -
Responsetijd voor indienen offertes (indien geen spoed):
- < € 500,-: 1 werkdag
- > € 500,-: 5 werkdagen
- Urgentie niveau:  - - -   - - -   - -  werkdag(en) - -
- Vakgroep:  - -
- Melding:  - -
- Contactpersoon: -
AAFM Facility Management BV
- Uitgegeven door:
- Servicedesk AAFM-FPC2Landen
- Tel nr: +31 (0)40 2332840
-
Aanvrager:
- Tel nr:
- Datum aanvraag:
- Te retourneren aan: -
AAFM Facility Management BV
- T.a.v. Servicedesk FPC2Landen
- Tel nr: +31 (0)40 2332840
- Postbus 80009
- 5600 JZ  Eindhoven
- E-mail: servicedeskfpc2landen@aa-fm.com
- - - - - - - -
Handtekening AAFM:Handtekening Klant:Dienst:Kostenplaats:
- -
- - - - - - - -
- - - -
-

- -
-
- - - - - - - - - - - - - - - - - - -
- Trade register no. 09130306 -
- Opmerkingen/aanvullingen leverancier: -
-
- Verklaring van de leverancier: -
Hierbij verklaart leverancier de hierboven omschreven werkzaamheden, gebaseerd op de hierboven gestelde voorwaarden en -condities, uit te voeren voor een bedrag van € (excl. BTW). Het aanbod betreft een vaste -prijs (doorhalen wat niet van toepassing is).

-Naam geautoriseerd persoon:

Handtekening:Datum
-
- - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Uitgifte Datum/Tijd: - - -
- Naam aanvrager: - - -
- Telefoonnummer: - - -
- Uitgegeven door: - - -
- Request nummer: - - -
- : - - () -
- : - -   -
- Verdieping: - - -
- : - - () -
-
- - - - - - - - - - - - - - - - - - - -
- Urgentie niveau: - - - -   - - -   - -  werkdag(en) - - -
- Vakgroep: - - -
- Melding: - - -
- Afdeling: - - -
-
- Omschrijving: -
- - - -
-
- Object(en): - -
- -
-
-
- Afhandeling: -
- - - -
-
- - - - - - - - - - - - - - - -
- Acties/opmerkingen: -
- FM accoord -
- Handtekening: -
-
-
- Naam: -
-
-
-
- Afgehandeld:

(naam):
-
- Respons datum/tijd: - - Bestede
uren:
-
- Afgehandeld datum/tijd: -
-
- -
-
- Mits u geen toegang heeft tot Facilitor kunt u de ingevulde opdracht retourneren naar - servicedeskfpc2landen@aa-fm.com
- Voor nadere informatie kunt u contact opnemen met de Servicedesk: Tel nr: +31 (0)40 2332840 -
- Voor nadere informatie kunt u contact opnemen met de Servicedesk: Tel nr: +31 (0)40 2332840 -
Trade register no. 09130306
-
- -
- -
-
-
- - - - - - - - - - - - - - - - ================================ CONTRACT ============================== - Facilitor new style default XSL template for contract - - - - window.print(); - - - - - - - - - - -
-  Prijsconditie: BTW. Exclusief -  Betalingsconditie: 30 dagen einde maand
- - - - - - - - - - - -
- - - - - - - - - - -
- -
- - - -
-  Omschrijving: -
-
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Contractsoort: - - -
- Startdatum: - - - -
- Einddatum: - - - -
- Uitgifte: - - - -
- Behandeld door: - facilitydesk medewerker
- Request nr: - - FPC2Landen -
- Opdrachtgever: - - -
- Contractbedrag: - € -  
-
- - - - -
- - - -
- - - - - - -
    - Handtekening AAFM: -
- - - - -
- -
- -
-
- - - -
 
- - - - - - - - -
- - - -
- -
-
- -
-
-
- - - - - - -
- - - - - - - - - - - - -
-
Annulering
- Op uw naam heeft een reservering onder nummer plaatsgevonden, die vervolgens direct weer is verwijderd. -
-
Deze reservering wordt niet verder verwerkt.

- Wilt u toch een reservering aanmaken voeg dan een nieuwe reservering toe waarbij een zaal, voorziening of artikel gereserveerd is.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Reservering
- Deelreservering /
-
- () 
Aanvrager
E-mail adres
Locatie
Afdeling
Gastheer/-vrouw
Stamnummer
FDC  - -
Costcenter
-
Behandeld door
Datum
-
- - - DE RESERVERING IS VERVALLEN - - - - -
-
Reserveringsgegevens
-
Opmerking
- - - -
-
- - - - - - - - - - - - - - - -
-
Totaalprijs reservering: - - - -
-
- -
-
-
-
-
- - - - - - - Geachte heer, mevrouw, -
-
Onderstaande reservering staat geregistreerd in ons systeem. - Indien deze reservering niet meer van toepassing is dient u deze binnen 1 werkdag te annuleren. -
-
Eventuele wijzigingen in uw reservering kunt u doorgeven aan de service desk - onder vermelding van bovenstaand reserveringsnummer. - Aanvullende catering bestellingen kunt u doorgeven aan de cateraar op uw locatie. - Aan catering bestellingen of vergaderfaciliteiten zijn kosten verbonden. - Indien u niet tijdig annuleert worden deze in rekening gebracht. -
-
Wanneer de reservering gewoon doorgang vindt, hoeft u niet op deze herinnering te reageren. -
-
- - -
- - -
- - - - - ================================ CUSTOMER ============================== - Facilitor new style default XSL template for customer nodes - - - - - - window.print(); - - - - -

LS,

-

Bijgaand ontvangt u een overzicht van reserveringen ingevoerd in Facilitor voor de komende werkdag. -
-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LocatieRuimteDatumVanTotpersVoorziening/OpstellingGastheerAanvragerFDCOmschrijvingOpmerking
- - - - - - - - - - - - - - - - - - - - - - - -
-
- -
- -
-
\ No newline at end of file diff --git a/CUST/AANS/bezoekers/anoniem.asp b/CUST/AANS/bezoekers/anoniem.asp deleted file mode 100644 index fa46487f1f..0000000000 --- a/CUST/AANS/bezoekers/anoniem.asp +++ /dev/null @@ -1,46 +0,0 @@ -<%@ language = "JavaScript" %> -<% /* - $Revision$ - $Id$ - File: anoniem.asp - Description: A deeplink call register visitors anonymous - Voorbeeld link: https://sgf12/facilitor5iwork/default.asp?fac_id=aans&login=GAST&noMenu=1&noHeader=1&Jumpto=cust/aans/bezoekers/anoniem.asp - Parameters: - - Context: - Note: -*/ %> - -<% - Response.Expires=0; -%> - - - - - -<% - // anonieme gebruikers mogen alleen vanaf het NS netwerk binnenkomen. - ipaddress = ""+Request.ServerVariables("REMOTE_HOST"); - if (ipaddress != "145.222.61.13" && // NS Proxy - ipaddress != "194.151.85.2" && // AANS#24057 - ipaddress != "87.249.108.135" && // SG|facilitor Enschede glasvezel - ipaddress.substr(0,11) != "192.168.10." ) - { - Response.write ("Ongeldig gebruik van Facilitor! "); - Response.end; - } - -%> - - - - - - diff --git a/CUST/AANS/cust.css b/CUST/AANS/cust.css deleted file mode 100644 index 00065fa531..0000000000 --- a/CUST/AANS/cust.css +++ /dev/null @@ -1,17 +0,0 @@ -/* - * $Revision$ - * $Id$ - */ - -@import "../AAXX/default.css"; - -#headerblok -{ - background: url(fac_head_l.gif) no-repeat; - background-color: #FFFFFF; - background-position: 0px 0px; - color: #000002; -} - - - diff --git a/CUST/AANS/documents/.gitignore b/CUST/AANS/documents/.gitignore deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/CUST/AANS/export/ftp_res_ruimte2ns.scr b/CUST/AANS/export/ftp_res_ruimte2ns.scr deleted file mode 100644 index a6cf8b57d3..0000000000 --- a/CUST/AANS/export/ftp_res_ruimte2ns.scr +++ /dev/null @@ -1,7 +0,0 @@ -open 194.151.85.190 -user FTP_Meeting -Scala@N$stations -hash -lcd RES_RUIMTE_XML -put *.xml -bye diff --git a/CUST/AANS/export/gen_export_bezoekers.bat b/CUST/AANS/export/gen_export_bezoekers.bat deleted file mode 100644 index fc47a8539b..0000000000 --- a/CUST/AANS/export/gen_export_bezoekers.bat +++ /dev/null @@ -1,19 +0,0 @@ -REM GEN_EXPORT_BEZOEKERS.BAT -REM -REM CONN -REM -REM Plaatst bezoekers met een ingevuld emailadres in de notificatie queue. -REM -REM Context : roep deze file aan indien nodig, of schedule deze -REM Verseist: de randvoorwaarde voor het gebruik van gen_export -REM -REM $Revision$ -REM $Id$ -REM -REM (c) 2005, Dijkoraad IT bv, +31 (53) 4800700, facilitorsupport@it.dijkoraad.nl -REM - - -CALL ..\..\..\utils\gen_export\gen_export.bat BEZOEKERS - - diff --git a/CUST/AANS/export/gen_export_daily_task.bat b/CUST/AANS/export/gen_export_daily_task.bat deleted file mode 100644 index 2447426975..0000000000 --- a/CUST/AANS/export/gen_export_daily_task.bat +++ /dev/null @@ -1,19 +0,0 @@ -REM GEN_EXPORT_DAILY_TASK.BAT -REM -REM Roept scripts aan die dagelijks uitgevoerd moeten worden -REM -REM Context : roep deze file aan indien nodig, of schedule deze -REM Verseist: de randvoorwaarde voor het gebruik van gen_export -REM -REM $Revision$ -REM $Id$ -REM -REM (c) 2009, SG facilitor, +31 (53) 4800710, helpdesk@sgfacilitor.nl -REM - - -CALL ..\..\..\utils\gen_export\gen_export.bat DAILY_TASK - - - - diff --git a/CUST/AANS/export/gen_export_exact.bat b/CUST/AANS/export/gen_export_exact.bat deleted file mode 100644 index e46b1f0068..0000000000 --- a/CUST/AANS/export/gen_export_exact.bat +++ /dev/null @@ -1,26 +0,0 @@ -REM GEN_EXPORT_EXACT.BAT -REM -REM Exporteert informatie naar een export-bestand -REM -REM Context : roep deze file aan indien nodig, of schedule deze -REM Verseist: de randvoorwaarde voor het gebruik van gen_export -REM -REM $Revision$ -REM $Id$ -REM -REM (c) 2010, SG|facilitor bv, +31 (53) 4800700, support@sgfacilitor.nl -REM - -CALL ..\..\..\utils\gen_export\gen_export.bat EXACT - -CALL ..\..\..\utils\gen_export\gen_export.bat VERWERK_EXACT - -CALL ..\..\..\utils\gen_export\gen_export.bat BUNDEL_CATERING - -CALL ..\..\..\utils\gen_export\gen_export.bat EXACT_VERKOOP - -CALL ..\..\..\utils\gen_export\gen_export.bat EXACT_VERKOOP_VJ - -CALL ..\..\..\utils\gen_export\gen_export.bat EXACT_UREN - -CALL ..\..\..\utils\gen_export\gen_export.bat VERWERK_EXACT_UREN diff --git a/CUST/AANS/export/gen_export_hv_freeze.bat b/CUST/AANS/export/gen_export_hv_freeze.bat deleted file mode 100644 index 83208d4a42..0000000000 --- a/CUST/AANS/export/gen_export_hv_freeze.bat +++ /dev/null @@ -1,20 +0,0 @@ -REM GEN_EXPORT_HV_FREEZE.BAT -REM -REM AAFM -REM -REM Bevries de huisvestingssituatie. -REM -REM Context : roep deze file aan indien nodig, of schedule deze -REM Verseist: de randvoorwaarde voor het gebruik van gen_export -REM -REM $Revision$ -REM $Id$ -REM -REM (c) 2005, Dijkoraad IT bv, +31 (53) 4800700, facilitorsupport@it.dijkoraad.nl -REM - - -REM ================================================== create exportfile -CALL ..\..\..\utils\gen_export\gen_export.bat HV_FREEZE - -REM ================================================== cleanup diff --git a/CUST/AANS/export/gen_export_res_ruimte_xml.bat b/CUST/AANS/export/gen_export_res_ruimte_xml.bat deleted file mode 100644 index 0a1140872b..0000000000 --- a/CUST/AANS/export/gen_export_res_ruimte_xml.bat +++ /dev/null @@ -1,23 +0,0 @@ -REM GEN_EXPORT_RES_RUIMTE_XML.BAT -REM -REM AAFM -REM -REM Exporteer de reserveerbare ruimten. -REM -REM Context : roep deze file aan indien nodig, of schedule deze -REM Verseist: de randvoorwaarde voor het gebruik van gen_export -REM -REM $Revision$ -REM $Id$ -REM -REM (c) 2005, Dijkoraad IT bv, +31 (53) 4800700, facilitorsupport@it.dijkoraad.nl -REM - -REM ================================================== remove old exportfiles -del .\RES_RUIMTE_XML\*.xml - -REM ================================================== create exportfile -CALL ..\..\..\utils\gen_export\gen_export.bat RES_RUIMTE_XML - -REM ================================================== transfer file to Enexis -ftp.exe -n -s:ftp_res_ruimte2ns.scr diff --git a/CUST/AANS/fac_head_l.gif b/CUST/AANS/fac_head_l.gif deleted file mode 100644 index 2ccb581aa6..0000000000 Binary files a/CUST/AANS/fac_head_l.gif and /dev/null differ diff --git a/CUST/AANS/flexfiles/.gitignore b/CUST/AANS/flexfiles/.gitignore deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/CUST/AANS/images/Thumbs.db b/CUST/AANS/images/Thumbs.db deleted file mode 100644 index 7e402f2bcb..0000000000 Binary files a/CUST/AANS/images/Thumbs.db and /dev/null differ diff --git a/CUST/AANS/images/ajax-loader.gif b/CUST/AANS/images/ajax-loader.gif deleted file mode 100644 index fd1a189c21..0000000000 Binary files a/CUST/AANS/images/ajax-loader.gif and /dev/null differ diff --git a/CUST/AANS/images/icons-18-black.png b/CUST/AANS/images/icons-18-black.png deleted file mode 100644 index 791646384b..0000000000 Binary files a/CUST/AANS/images/icons-18-black.png and /dev/null differ diff --git a/CUST/AANS/images/icons-18-white.png b/CUST/AANS/images/icons-18-white.png deleted file mode 100644 index 3419b81f6a..0000000000 Binary files a/CUST/AANS/images/icons-18-white.png and /dev/null differ diff --git a/CUST/AANS/images/icons-36-black.png b/CUST/AANS/images/icons-36-black.png deleted file mode 100644 index 043bfcd521..0000000000 Binary files a/CUST/AANS/images/icons-36-black.png and /dev/null differ diff --git a/CUST/AANS/images/icons-36-white.png b/CUST/AANS/images/icons-36-white.png deleted file mode 100644 index 12455c907a..0000000000 Binary files a/CUST/AANS/images/icons-36-white.png and /dev/null differ diff --git a/CUST/AANS/import/gen_import_strukton.bat b/CUST/AANS/import/gen_import_strukton.bat deleted file mode 100644 index ae8dbb3989..0000000000 --- a/CUST/AANS/import/gen_import_strukton.bat +++ /dev/null @@ -1,12 +0,0 @@ -Echo Starten GetStruktonStatus.js - -cscript ..\..\AAXX\import\Strukton\GetStruktonStatus.js ../oracle.udl 6481 >>gen_import.log - -if errorlevel 1 goto fout - -cscript ..\..\..\utils\gen_import\gen_import.wsf AANS OPDRSTAT_STRUKTON >>gen_import.log 2>>&1 - -goto einde -:fout -Echo gen_import.exe niet meer uitgevoerd>>gen_import.log -:einde \ No newline at end of file diff --git a/CUST/AANS/import/import_contract.bat b/CUST/AANS/import/import_contract.bat deleted file mode 100644 index e3e9f69077..0000000000 --- a/CUST/AANS/import/import_contract.bat +++ /dev/null @@ -1,2 +0,0 @@ -cscript ..\..\..\utils\gen_import\gen_import.wsf AANS CONTRACT >>genimport.log 2>>&1 - diff --git a/CUST/AANS/import/import_medew_aafm.bat b/CUST/AANS/import/import_medew_aafm.bat deleted file mode 100644 index 20fd710cdd..0000000000 --- a/CUST/AANS/import/import_medew_aafm.bat +++ /dev/null @@ -1,4 +0,0 @@ - -echo 'Empty' >> aaxx_imp.csv -cscript ..\..\..\utils\gen_import\gen_import.wsf AAXX AAFM_MEDEWERKERS >>genimport.log 2>>&1 - diff --git a/CUST/AANS/mcust.css b/CUST/AANS/mcust.css deleted file mode 100644 index c52adfc96a..0000000000 --- a/CUST/AANS/mcust.css +++ /dev/null @@ -1,217 +0,0 @@ -/*! -* jQuery Mobile 1.4.5 -* Git HEAD hash: 68e55e78b292634d3991c795f06f5e37a512decc <> Date: Fri Oct 31 2014 17:33:30 UTC -* http://jquerymobile.com -* -* Copyright 2010, 2014 jQuery Foundation, Inc. and othercontributors -* Released under the MIT license. -* http://jquery.org/license -* -*/ - - -/* Globals */ -/* Font ------------------------------------------------------------------------------------------------------------*/ -html { - font-size: 100%; -} -body, -input, -select, -textarea, -button, -.ui-btn { - font-size: 1em; - line-height: 1.3; - font-family: Helvetica, Arial, sans-serif /*{global-font-family}*/; -} -legend, -.ui-input-text input, -.ui-input-search input { - color: inherit; - text-shadow: inherit; -} -/* Form labels (overrides font-weight bold in bars, and mini font-size) */ -.ui-mobile label, -div.ui-controlgroup-label { - font-weight: normal; - font-size: 16px; -} -/* Separators ------------------------------------------------------------------------------------------------------------*/ -/* Field contain separator (< 28em) */ -.ui-field-contain { - border-bottom-color: #828282; - border-bottom-color: rgba(0,0,0,.15); - border-bottom-width: 1px; - border-bottom-style: solid; -} -/* Table opt-in classes: strokes between each row, and alternating row stripes */ -/* Classes table-stroke and table-stripe are deprecated in 1.4. */ -.table-stroke thead th, -.table-stripe thead th, -.table-stripe tbody tr:last-child { - border-bottom: 1px solid #d6d6d6; /* non-RGBA fallback */ - border-bottom: 1px solid rgba(0,0,0,.1); -} -.table-stroke tbody th, -.table-stroke tbody td { - border-bottom: 1px solid #e6e6e6; /* non-RGBA fallback */ - border-bottom: 1px solid rgba(0,0,0,.05); -} -.table-stripe.table-stroke tbody tr:last-child th, -.table-stripe.table-stroke tbody tr:last-child td { - border-bottom: 0; -} -.table-stripe tbody tr:nth-child(odd) td, -.table-stripe tbody tr:nth-child(odd) th { - background-color: #eeeeee; /* non-RGBA fallback */ - background-color: rgba(0,0,0,.04); -} -/* Buttons ------------------------------------------------------------------------------------------------------------*/ -.ui-btn, -label.ui-btn { - font-weight: bold; - border-width: 1px; - border-style: solid; -} -.ui-btn { - text-decoration: none !important; -} -.ui-btn-active { - cursor: pointer; -} -/* Corner rounding ------------------------------------------------------------------------------------------------------------*/ -/* Class ui-btn-corner-all deprecated in 1.4 */ -.ui-corner-all { - -webkit-border-radius: .6em /*{global-radii-blocks}*/; - border-radius: .6em /*{global-radii-blocks}*/; -} -/* Buttons */ -.ui-btn-corner-all, -.ui-btn.ui-corner-all, -/* Slider track */ -.ui-slider-track.ui-corner-all, -/* Flipswitch */ -.ui-flipswitch.ui-corner-all, -/* Count bubble */ -.ui-li-count { - -webkit-border-radius: 1em /*{global-radii-buttons}*/; - border-radius: 1em /*{global-radii-buttons}*/; -} -/* Icon-only buttons */ -.ui-btn-icon-notext.ui-btn-corner-all, -.ui-btn-icon-notext.ui-corner-all { - -webkit-border-radius: 1em; - border-radius: 1em; -} -/* Radius clip workaround for cleaning up corner trapping */ -.ui-btn-corner-all, -.ui-corner-all { - -webkit-background-clip: padding; - background-clip: padding-box; -} -/* Popup arrow */ -.ui-popup.ui-corner-all > .ui-popup-arrow-guide { - left: .6em /*{global-radii-blocks}*/; - right: .6em /*{global-radii-blocks}*/; - top: .6em /*{global-radii-blocks}*/; - bottom: .6em /*{global-radii-blocks}*/; -} -/* Shadow ------------------------------------------------------------------------------------------------------------*/ -.ui-shadow { - -webkit-box-shadow: 0 1px 0px /*{global-box-shadow-size}*/ rgba(0,0,0,0) /*{global-box-shadow-color}*/; - -moz-box-shadow: 0 1px 0px /*{global-box-shadow-size}*/ rgba(0,0,0,0) /*{global-box-shadow-color}*/; - box-shadow: 0 1px 0px /*{global-box-shadow-size}*/ rgba(0,0,0,0) /*{global-box-shadow-color}*/; -} -.ui-shadow-inset { - -webkit-box-shadow: inset 0 1px 0px /*{global-box-shadow-size}*/ rgba(0,0,0,0) /*{global-box-shadow-color}*/; - -moz-box-shadow: inset 0 1px 0px /*{global-box-shadow-size}*/ rgba(0,0,0,0) /*{global-box-shadow-color}*/; - box-shadow: inset 0 1px 0px /*{global-box-shadow-size}*/ rgba(0,0,0,0) /*{global-box-shadow-color}*/; -} -.ui-overlay-shadow { - -webkit-box-shadow: 0 0 12px rgba(0,0,0,.6); - -moz-box-shadow: 0 0 12px rgba(0,0,0,.6); - box-shadow: 0 0 12px rgba(0,0,0,.6); -} -/* Icons ------------------------------------------------------------------------------------------------------------*/ -.ui-btn-icon-left:after, -.ui-btn-icon-right:after, -.ui-btn-icon-top:after, -.ui-btn-icon-bottom:after, -.ui-btn-icon-notext:after { - background-color: #dd034a /*{global-icon-color}*/; - background-color: rgba(221,3,74,1) /*{global-icon-disc}*/; - background-position: center center; - background-repeat: no-repeat; - -webkit-border-radius: 1em; - border-radius: 1em; -} -/* Alt icons */ -.ui-alt-icon.ui-btn:after, -.ui-alt-icon .ui-btn:after, -html .ui-alt-icon.ui-checkbox-off:after, -html .ui-alt-icon.ui-radio-off:after, -html .ui-alt-icon .ui-checkbox-off:after, -html .ui-alt-icon .ui-radio-off:after { - background-color: #dd034a /*{global-icon-color}*/; - background-color: rgba(221,3,74,1) /*{global-icon-disc}*/; -} -/* No disc */ -.ui-nodisc-icon.ui-btn:after, -.ui-nodisc-icon .ui-btn:after { - background-color: transparent; -} -/* Icon shadow */ -.ui-shadow-icon.ui-btn:after, -.ui-shadow-icon .ui-btn:after { - -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/; - -moz-box-shadow: 0 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/; - box-shadow: 0 1px 0 rgba(255,255,255,.4) /*{global-icon-shadow}*/; -} -/* Checkbox and radio */ -.ui-btn.ui-checkbox-off:after, -.ui-btn.ui-checkbox-on:after, -.ui-btn.ui-radio-off:after, -.ui-btn.ui-radio-on:after { - display: block; - width: 18px; - height: 18px; - margin: -9px 2px 0 2px; -} -.ui-checkbox-off:after, -.ui-btn.ui-radio-off:after { - filter: Alpha(Opacity=30); - opacity: .3; -} -.ui-btn.ui-checkbox-off:after, -.ui-btn.ui-checkbox-on:after { - -webkit-border-radius: .1875em; - border-radius: .1875em; -} -.ui-btn.ui-checkbox-off:after { - background-color: #666; - background-color: rgba(0,0,0,.3); -} -.ui-radio .ui-btn.ui-radio-on:after { - background-image: none; - background-color: #fff; - width: 8px; - height: 8px; - border-width: 5px; - border-style: solid; -} -.ui-alt-icon.ui-btn.ui-radio-on:after, -.ui-alt-icon .ui-btn.ui-radio-on:after { - background-color: #000; -} -/* Loader */ -.ui-icon-loading { - background: url("images/ajax-loader.gif"); - background-size: 2.875em 2.875em; -}.ui-bar-a,.ui-page-theme-a .ui-bar-inherit,html .ui-bar-a .ui-bar-inherit,html .ui-body-a .ui-bar-inherit,html body .ui-group-theme-a .ui-bar-inherit{background-color:#eeeeee ;border-color:#b3b3b3 ;color:#3e3e3e ;text-shadow:0 1px 0 #ffffff ;font-weight:bold;}.ui-bar-a{border-width:1px;border-style:solid;}.ui-overlay-a,.ui-page-theme-a,.ui-page-theme-a .ui-panel-wrapper{background-color:#f9f9f9 ;border-color:#aaaaaa ;color:#333333 ;text-shadow:0 1px 0 #ffffff ;}.ui-body-a,.ui-page-theme-a .ui-body-inherit,html .ui-bar-a .ui-body-inherit,html .ui-body-a .ui-body-inherit,html body .ui-group-theme-a .ui-body-inherit,html .ui-panel-page-container-a{background-color:#f9f9f9 ;border-color:#aaaaaa ;color:#333333 ;text-shadow:0 1px 0 #ffffff ;}.ui-body-a{border-width:1px;border-style:solid;}.ui-page-theme-a a,html .ui-bar-a a,html .ui-body-a a,html body .ui-group-theme-a a{color:#3388cc ;font-weight:bold;}.ui-page-theme-a a:visited,html .ui-bar-a a:visited,html .ui-body-a a:visited,html body .ui-group-theme-a a:visited{ color:#3388cc ;}.ui-page-theme-a a:hover,html .ui-bar-a a:hover,html .ui-body-a a:hover,html body .ui-group-theme-a a:hover{color:#005599 ;}.ui-page-theme-a a:active,html .ui-bar-a a:active,html .ui-body-a a:active,html body .ui-group-theme-a a:active{color:#005599 ;}.ui-page-theme-a .ui-btn,html .ui-bar-a .ui-btn,html .ui-body-a .ui-btn,html body .ui-group-theme-a .ui-btn,html head + body .ui-btn.ui-btn-a,.ui-page-theme-a .ui-btn:visited,html .ui-bar-a .ui-btn:visited,html .ui-body-a .ui-btn:visited,html body .ui-group-theme-a .ui-btn:visited,html head + body .ui-btn.ui-btn-a:visited{background-color:#eeeeee ;border-color:#cccccc ;color:#2f3e46 ;text-shadow:0 1px 0 #ffffff ;}.ui-page-theme-a .ui-btn:hover,html .ui-bar-a .ui-btn:hover,html .ui-body-a .ui-btn:hover,html body .ui-group-theme-a .ui-btn:hover,html head + body .ui-btn.ui-btn-a:hover{background-color:#dfdfdf ;border-color:#bbbbbb ;color:#2f3e46 ;text-shadow:0 1px 0 #ffffff ;}.ui-page-theme-a .ui-btn:active,html .ui-bar-a .ui-btn:active,html .ui-body-a .ui-btn:active,html body .ui-group-theme-a .ui-btn:active,html head + body .ui-btn.ui-btn-a:active{background-color:#d6d6d6 ;border-color:#bbbbbb ;color:#2f3e46 ;text-shadow:0 1px 0 #ffffff ;}.ui-page-theme-a .ui-btn.ui-btn-active,html .ui-bar-a .ui-btn.ui-btn-active,html .ui-body-a .ui-btn.ui-btn-active,html body .ui-group-theme-a .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-a.ui-btn-active,.ui-page-theme-a .ui-checkbox-on:after,html .ui-bar-a .ui-checkbox-on:after,html .ui-body-a .ui-checkbox-on:after,html body .ui-group-theme-a .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-a:after,.ui-page-theme-a .ui-flipswitch-active,html .ui-bar-a .ui-flipswitch-active,html .ui-body-a .ui-flipswitch-active,html body .ui-group-theme-a .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-a.ui-flipswitch-active,.ui-page-theme-a .ui-slider-track .ui-btn-active,html .ui-bar-a .ui-slider-track .ui-btn-active,html .ui-body-a .ui-slider-track .ui-btn-active,html body .ui-group-theme-a .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-a .ui-btn-active{background-color:#3388cc ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-a .ui-radio-on:after,html .ui-bar-a .ui-radio-on:after,html .ui-body-a .ui-radio-on:after,html body .ui-group-theme-a .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-a:after{border-color:#3388cc ;}.ui-page-theme-a .ui-btn:focus,html .ui-bar-a .ui-btn:focus,html .ui-body-a .ui-btn:focus,html body .ui-group-theme-a .ui-btn:focus,html head + body .ui-btn.ui-btn-a:focus,.ui-page-theme-a .ui-focus,html .ui-bar-a .ui-focus,html .ui-body-a .ui-focus,html body .ui-group-theme-a .ui-focus,html head + body .ui-btn-a.ui-focus,html head + body .ui-body-a.ui-focus{-webkit-box-shadow:0 0 12px #3388cc ;-moz-box-shadow:0 0 12px #3388cc ;box-shadow:0 0 12px #3388cc ;}.ui-bar-b,.ui-page-theme-b .ui-bar-inherit,html .ui-bar-b .ui-bar-inherit,html .ui-body-b .ui-bar-inherit,html body .ui-group-theme-b .ui-bar-inherit{background-color:#4f1e4c ;border-color:#672763 ;color:#ffffff ;text-shadow:0 0px 0 #000000 ;font-weight:bold;}.ui-bar-b{border-width:1px;border-style:solid;}.ui-overlay-b,.ui-page-theme-b,.ui-page-theme-b .ui-panel-wrapper{background-color:#f3f3f3 ;border-color:#999999 ;color:#4f1e4c ;text-shadow:0 0px 0 #ffffff ;}.ui-body-b,.ui-page-theme-b .ui-body-inherit,html .ui-bar-b .ui-body-inherit,html .ui-body-b .ui-body-inherit,html body .ui-group-theme-b .ui-body-inherit,html .ui-panel-page-container-b{background-color:#f3f3f3 ;border-color:#999999 ;color:#4f1e4c ;text-shadow:0 0px 0 #ffffff ;}.ui-body-b{border-width:1px;border-style:solid;}.ui-page-theme-b a,html .ui-bar-b a,html .ui-body-b a,html body .ui-group-theme-b a{color:#3388cc ;font-weight:bold;}.ui-page-theme-b a:visited,html .ui-bar-b a:visited,html .ui-body-b a:visited,html body .ui-group-theme-b a:visited{ color:#3388cc ;}.ui-page-theme-b a:hover,html .ui-bar-b a:hover,html .ui-body-b a:hover,html body .ui-group-theme-b a:hover{color:#005599 ;}.ui-page-theme-b a:active,html .ui-bar-b a:active,html .ui-body-b a:active,html body .ui-group-theme-b a:active{color:#005599 ;}.ui-page-theme-b .ui-btn,html .ui-bar-b .ui-btn,html .ui-body-b .ui-btn,html body .ui-group-theme-b .ui-btn,html head + body .ui-btn.ui-btn-b,.ui-page-theme-b .ui-btn:visited,html .ui-bar-b .ui-btn:visited,html .ui-body-b .ui-btn:visited,html body .ui-group-theme-b .ui-btn:visited,html head + body .ui-btn.ui-btn-b:visited{background-color:#ffffff ;border-color:#dd034a ;color:#4f1e4c ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-b .ui-btn:hover,html .ui-bar-b .ui-btn:hover,html .ui-body-b .ui-btn:hover,html body .ui-group-theme-b .ui-btn:hover,html head + body .ui-btn.ui-btn-b:hover{background-color:#ffffff ;border-color:#dd034a ;color:#dd034a ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-b .ui-btn:active,html .ui-bar-b .ui-btn:active,html .ui-body-b .ui-btn:active,html body .ui-group-theme-b .ui-btn:active,html head + body .ui-btn.ui-btn-b:active{background-color:#ffffff ;border-color:#dd034a ;color:#dd034a ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-b .ui-btn.ui-btn-active,html .ui-bar-b .ui-btn.ui-btn-active,html .ui-body-b .ui-btn.ui-btn-active,html body .ui-group-theme-b .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-b.ui-btn-active,.ui-page-theme-b .ui-checkbox-on:after,html .ui-bar-b .ui-checkbox-on:after,html .ui-body-b .ui-checkbox-on:after,html body .ui-group-theme-b .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-b:after,.ui-page-theme-b .ui-flipswitch-active,html .ui-bar-b .ui-flipswitch-active,html .ui-body-b .ui-flipswitch-active,html body .ui-group-theme-b .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-b.ui-flipswitch-active,.ui-page-theme-b .ui-slider-track .ui-btn-active,html .ui-bar-b .ui-slider-track .ui-btn-active,html .ui-body-b .ui-slider-track .ui-btn-active,html body .ui-group-theme-b .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-b .ui-btn-active{background-color:#3388cc ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-b .ui-radio-on:after,html .ui-bar-b .ui-radio-on:after,html .ui-body-b .ui-radio-on:after,html body .ui-group-theme-b .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-b:after{border-color:#3388cc ;}.ui-page-theme-b .ui-btn:focus,html .ui-bar-b .ui-btn:focus,html .ui-body-b .ui-btn:focus,html body .ui-group-theme-b .ui-btn:focus,html head + body .ui-btn.ui-btn-b:focus,.ui-page-theme-b .ui-focus,html .ui-bar-b .ui-focus,html .ui-body-b .ui-focus,html body .ui-group-theme-b .ui-focus,html head + body .ui-btn-b.ui-focus,html head + body .ui-body-b.ui-focus{-webkit-box-shadow:0 0 12px #3388cc ;-moz-box-shadow:0 0 12px #3388cc ;box-shadow:0 0 12px #3388cc ;}.ui-bar-c,.ui-page-theme-c .ui-bar-inherit,html .ui-bar-c .ui-bar-inherit,html .ui-body-c .ui-bar-inherit,html body .ui-group-theme-c .ui-bar-inherit{background-color:#4f1e4c ;border-color:#672763 ;color:#ffffff ;text-shadow:0 0px 0 #000000 ;font-weight:bold;}.ui-bar-c{border-width:1px;border-style:solid;}.ui-overlay-c,.ui-page-theme-c,.ui-page-theme-c .ui-panel-wrapper{background-color:#f3f3f3 ;border-color:#999999 ;color:#4f1e4c ;text-shadow:0 0px 0 #ffffff ;}.ui-body-c,.ui-page-theme-c .ui-body-inherit,html .ui-bar-c .ui-body-inherit,html .ui-body-c .ui-body-inherit,html body .ui-group-theme-c .ui-body-inherit,html .ui-panel-page-container-c{background-color:#f3f3f3 ;border-color:#999999 ;color:#4f1e4c ;text-shadow:0 0px 0 #ffffff ;}.ui-body-c{border-width:1px;border-style:solid;}.ui-page-theme-c a,html .ui-bar-c a,html .ui-body-c a,html body .ui-group-theme-c a{color:#3388cc ;font-weight:bold;}.ui-page-theme-c a:visited,html .ui-bar-c a:visited,html .ui-body-c a:visited,html body .ui-group-theme-c a:visited{ color:#3388cc ;}.ui-page-theme-c a:hover,html .ui-bar-c a:hover,html .ui-body-c a:hover,html body .ui-group-theme-c a:hover{color:#005599 ;}.ui-page-theme-c a:active,html .ui-bar-c a:active,html .ui-body-c a:active,html body .ui-group-theme-c a:active{color:#005599 ;}.ui-page-theme-c .ui-btn,html .ui-bar-c .ui-btn,html .ui-body-c .ui-btn,html body .ui-group-theme-c .ui-btn,html head + body .ui-btn.ui-btn-c,.ui-page-theme-c .ui-btn:visited,html .ui-bar-c .ui-btn:visited,html .ui-body-c .ui-btn:visited,html body .ui-group-theme-c .ui-btn:visited,html head + body .ui-btn.ui-btn-c:visited{background-color:#ffffff ;border-color:#dd034a ;color:#4f1e4c ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-c .ui-btn:hover,html .ui-bar-c .ui-btn:hover,html .ui-body-c .ui-btn:hover,html body .ui-group-theme-c .ui-btn:hover,html head + body .ui-btn.ui-btn-c:hover{background-color:#ffffff ;border-color:#dd034a ;color:#dd034a ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-c .ui-btn:active,html .ui-bar-c .ui-btn:active,html .ui-body-c .ui-btn:active,html body .ui-group-theme-c .ui-btn:active,html head + body .ui-btn.ui-btn-c:active{background-color:#ffffff ;border-color:#dd034a ;color:#dd034a ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-c .ui-btn.ui-btn-active,html .ui-bar-c .ui-btn.ui-btn-active,html .ui-body-c .ui-btn.ui-btn-active,html body .ui-group-theme-c .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-c.ui-btn-active,.ui-page-theme-c .ui-checkbox-on:after,html .ui-bar-c .ui-checkbox-on:after,html .ui-body-c .ui-checkbox-on:after,html body .ui-group-theme-c .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-c:after,.ui-page-theme-c .ui-flipswitch-active,html .ui-bar-c .ui-flipswitch-active,html .ui-body-c .ui-flipswitch-active,html body .ui-group-theme-c .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-c.ui-flipswitch-active,.ui-page-theme-c .ui-slider-track .ui-btn-active,html .ui-bar-c .ui-slider-track .ui-btn-active,html .ui-body-c .ui-slider-track .ui-btn-active,html body .ui-group-theme-c .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-c .ui-btn-active{background-color:#3388cc ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-c .ui-radio-on:after,html .ui-bar-c .ui-radio-on:after,html .ui-body-c .ui-radio-on:after,html body .ui-group-theme-c .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-c:after{border-color:#3388cc ;}.ui-page-theme-c .ui-btn:focus,html .ui-bar-c .ui-btn:focus,html .ui-body-c .ui-btn:focus,html body .ui-group-theme-c .ui-btn:focus,html head + body .ui-btn.ui-btn-c:focus,.ui-page-theme-c .ui-focus,html .ui-bar-c .ui-focus,html .ui-body-c .ui-focus,html body .ui-group-theme-c .ui-focus,html head + body .ui-btn-c.ui-focus,html head + body .ui-body-c.ui-focus{-webkit-box-shadow:0 0 12px #3388cc ;-moz-box-shadow:0 0 12px #3388cc ;box-shadow:0 0 12px #3388cc ;}.ui-bar-d,.ui-page-theme-d .ui-bar-inherit,html .ui-bar-d .ui-bar-inherit,html .ui-body-d .ui-bar-inherit,html body .ui-group-theme-d .ui-bar-inherit{background-color:#4f1e4c ;border-color:#672763 ;color:#ffffff ;text-shadow:0 0px 0 #000000 ;font-weight:bold;}.ui-bar-d{border-width:1px;border-style:solid;}.ui-overlay-d,.ui-page-theme-d,.ui-page-theme-d .ui-panel-wrapper{background-color:#f3f3f3 ;border-color:#999999 ;color:#4f1e4c ;text-shadow:0 0px 0 #ffffff ;}.ui-body-d,.ui-page-theme-d .ui-body-inherit,html .ui-bar-d .ui-body-inherit,html .ui-body-d .ui-body-inherit,html body .ui-group-theme-d .ui-body-inherit,html .ui-panel-page-container-d{background-color:#f3f3f3 ;border-color:#999999 ;color:#4f1e4c ;text-shadow:0 0px 0 #ffffff ;}.ui-body-d{border-width:1px;border-style:solid;}.ui-page-theme-d a,html .ui-bar-d a,html .ui-body-d a,html body .ui-group-theme-d a{color:#3388cc ;font-weight:bold;}.ui-page-theme-d a:visited,html .ui-bar-d a:visited,html .ui-body-d a:visited,html body .ui-group-theme-d a:visited{ color:#3388cc ;}.ui-page-theme-d a:hover,html .ui-bar-d a:hover,html .ui-body-d a:hover,html body .ui-group-theme-d a:hover{color:#005599 ;}.ui-page-theme-d a:active,html .ui-bar-d a:active,html .ui-body-d a:active,html body .ui-group-theme-d a:active{color:#005599 ;}.ui-page-theme-d .ui-btn,html .ui-bar-d .ui-btn,html .ui-body-d .ui-btn,html body .ui-group-theme-d .ui-btn,html head + body .ui-btn.ui-btn-d,.ui-page-theme-d .ui-btn:visited,html .ui-bar-d .ui-btn:visited,html .ui-body-d .ui-btn:visited,html body .ui-group-theme-d .ui-btn:visited,html head + body .ui-btn.ui-btn-d:visited{background-color:#ffffff ;border-color:#dd034a ;color:#4f1e4c ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-d .ui-btn:hover,html .ui-bar-d .ui-btn:hover,html .ui-body-d .ui-btn:hover,html body .ui-group-theme-d .ui-btn:hover,html head + body .ui-btn.ui-btn-d:hover{background-color:#ffffff ;border-color:#dd034a ;color:#dd034a ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-d .ui-btn:active,html .ui-bar-d .ui-btn:active,html .ui-body-d .ui-btn:active,html body .ui-group-theme-d .ui-btn:active,html head + body .ui-btn.ui-btn-d:active{background-color:#ffffff ;border-color:#dd034a ;color:#dd034a ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-d .ui-btn.ui-btn-active,html .ui-bar-d .ui-btn.ui-btn-active,html .ui-body-d .ui-btn.ui-btn-active,html body .ui-group-theme-d .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-d.ui-btn-active,.ui-page-theme-d .ui-checkbox-on:after,html .ui-bar-d .ui-checkbox-on:after,html .ui-body-d .ui-checkbox-on:after,html body .ui-group-theme-d .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-d:after,.ui-page-theme-d .ui-flipswitch-active,html .ui-bar-d .ui-flipswitch-active,html .ui-body-d .ui-flipswitch-active,html body .ui-group-theme-d .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-d.ui-flipswitch-active,.ui-page-theme-d .ui-slider-track .ui-btn-active,html .ui-bar-d .ui-slider-track .ui-btn-active,html .ui-body-d .ui-slider-track .ui-btn-active,html body .ui-group-theme-d .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-d .ui-btn-active{background-color:#3388cc ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-d .ui-radio-on:after,html .ui-bar-d .ui-radio-on:after,html .ui-body-d .ui-radio-on:after,html body .ui-group-theme-d .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-d:after{border-color:#3388cc ;}.ui-page-theme-d .ui-btn:focus,html .ui-bar-d .ui-btn:focus,html .ui-body-d .ui-btn:focus,html body .ui-group-theme-d .ui-btn:focus,html head + body .ui-btn.ui-btn-d:focus,.ui-page-theme-d .ui-focus,html .ui-bar-d .ui-focus,html .ui-body-d .ui-focus,html body .ui-group-theme-d .ui-focus,html head + body .ui-btn-d.ui-focus,html head + body .ui-body-d.ui-focus{-webkit-box-shadow:0 0 12px #3388cc ;-moz-box-shadow:0 0 12px #3388cc ;box-shadow:0 0 12px #3388cc ;}.ui-bar-e,.ui-page-theme-e .ui-bar-inherit,html .ui-bar-e .ui-bar-inherit,html .ui-body-e .ui-bar-inherit,html body .ui-group-theme-e .ui-bar-inherit{background-color:#4f1e4c ;border-color:#672763 ;color:#ffffff ;text-shadow:0 0px 0 #000000 ;font-weight:bold;}.ui-bar-e{border-width:1px;border-style:solid;}.ui-overlay-e,.ui-page-theme-e,.ui-page-theme-e .ui-panel-wrapper{background-color:#f3f3f3 ;border-color:#999999 ;color:#4f1e4c ;text-shadow:0 0px 0 #ffffff ;}.ui-body-e,.ui-page-theme-e .ui-body-inherit,html .ui-bar-e .ui-body-inherit,html .ui-body-e .ui-body-inherit,html body .ui-group-theme-e .ui-body-inherit,html .ui-panel-page-container-e{background-color:#f3f3f3 ;border-color:#999999 ;color:#4f1e4c ;text-shadow:0 0px 0 #ffffff ;}.ui-body-e{border-width:1px;border-style:solid;}.ui-page-theme-e a,html .ui-bar-e a,html .ui-body-e a,html body .ui-group-theme-e a{color:#3388cc ;font-weight:bold;}.ui-page-theme-e a:visited,html .ui-bar-e a:visited,html .ui-body-e a:visited,html body .ui-group-theme-e a:visited{ color:#3388cc ;}.ui-page-theme-e a:hover,html .ui-bar-e a:hover,html .ui-body-e a:hover,html body .ui-group-theme-e a:hover{color:#005599 ;}.ui-page-theme-e a:active,html .ui-bar-e a:active,html .ui-body-e a:active,html body .ui-group-theme-e a:active{color:#005599 ;}.ui-page-theme-e .ui-btn,html .ui-bar-e .ui-btn,html .ui-body-e .ui-btn,html body .ui-group-theme-e .ui-btn,html head + body .ui-btn.ui-btn-e,.ui-page-theme-e .ui-btn:visited,html .ui-bar-e .ui-btn:visited,html .ui-body-e .ui-btn:visited,html body .ui-group-theme-e .ui-btn:visited,html head + body .ui-btn.ui-btn-e:visited{background-color:#ffffff ;border-color:#dd034a ;color:#4f1e4c ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-e .ui-btn:hover,html .ui-bar-e .ui-btn:hover,html .ui-body-e .ui-btn:hover,html body .ui-group-theme-e .ui-btn:hover,html head + body .ui-btn.ui-btn-e:hover{background-color:#ffffff ;border-color:#dd034a ;color:#dd034a ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-e .ui-btn:active,html .ui-bar-e .ui-btn:active,html .ui-body-e .ui-btn:active,html body .ui-group-theme-e .ui-btn:active,html head + body .ui-btn.ui-btn-e:active{background-color:#ffffff ;border-color:#dd034a ;color:#dd034a ;text-shadow:0 0px 0 #000000 ;}.ui-page-theme-e .ui-btn.ui-btn-active,html .ui-bar-e .ui-btn.ui-btn-active,html .ui-body-e .ui-btn.ui-btn-active,html body .ui-group-theme-e .ui-btn.ui-btn-active,html head + body .ui-btn.ui-btn-e.ui-btn-active,.ui-page-theme-e .ui-checkbox-on:after,html .ui-bar-e .ui-checkbox-on:after,html .ui-body-e .ui-checkbox-on:after,html body .ui-group-theme-e .ui-checkbox-on:after,.ui-btn.ui-checkbox-on.ui-btn-e:after,.ui-page-theme-e .ui-flipswitch-active,html .ui-bar-e .ui-flipswitch-active,html .ui-body-e .ui-flipswitch-active,html body .ui-group-theme-e .ui-flipswitch-active,html body .ui-flipswitch.ui-bar-e.ui-flipswitch-active,.ui-page-theme-e .ui-slider-track .ui-btn-active,html .ui-bar-e .ui-slider-track .ui-btn-active,html .ui-body-e .ui-slider-track .ui-btn-active,html body .ui-group-theme-e .ui-slider-track .ui-btn-active,html body div.ui-slider-track.ui-body-e .ui-btn-active{background-color:#3388cc ;border-color:#1c4a70 ;color:#ffffff ;text-shadow:0 1px 0 #005599 ;}.ui-page-theme-e .ui-radio-on:after,html .ui-bar-e .ui-radio-on:after,html .ui-body-e .ui-radio-on:after,html body .ui-group-theme-e .ui-radio-on:after,.ui-btn.ui-radio-on.ui-btn-e:after{border-color:#3388cc ;}.ui-page-theme-e .ui-btn:focus,html .ui-bar-e .ui-btn:focus,html .ui-body-e .ui-btn:focus,html body .ui-group-theme-e .ui-btn:focus,html head + body .ui-btn.ui-btn-e:focus,.ui-page-theme-e .ui-focus,html .ui-bar-e .ui-focus,html .ui-body-e .ui-focus,html body .ui-group-theme-e .ui-focus,html head + body .ui-btn-e.ui-focus,html head + body .ui-body-e.ui-focus{-webkit-box-shadow:0 0 12px #3388cc ;-moz-box-shadow:0 0 12px #3388cc ;box-shadow:0 0 12px #3388cc ;}.ui-disabled,.ui-state-disabled,button[disabled],.ui-select .ui-btn.ui-state-disabled{filter:Alpha(Opacity=30);opacity:.3;cursor:default !important;pointer-events:none;}.ui-btn:focus,.ui-btn.ui-focus{outline:0;}.ui-noboxshadow .ui-shadow,.ui-noboxshadow .ui-shadow-inset,.ui-noboxshadow .ui-overlay-shadow,.ui-noboxshadow .ui-shadow-icon.ui-btn:after,.ui-noboxshadow .ui-shadow-icon .ui-btn:after,.ui-noboxshadow .ui-focus,.ui-noboxshadow .ui-btn:focus,.ui-noboxshadow input:focus,.ui-noboxshadow .ui-panel{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;}.ui-noboxshadow .ui-btn:focus,.ui-noboxshadow .ui-focus{outline-width:1px;outline-style:auto;} \ No newline at end of file diff --git a/CUST/AANS/ns_mobile.gif b/CUST/AANS/ns_mobile.gif deleted file mode 100644 index 800bf20a9a..0000000000 Binary files a/CUST/AANS/ns_mobile.gif and /dev/null differ diff --git a/CUST/AANS/oracle.udl b/CUST/AANS/oracle.udl deleted file mode 100644 index d020c3c62a..0000000000 Binary files a/CUST/AANS/oracle.udl and /dev/null differ diff --git a/CUST/AANS/photos/.gitignore b/CUST/AANS/photos/.gitignore deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/CUST/AANS/rap_alg.asp b/CUST/AANS/rap_alg.asp deleted file mode 100644 index 56145a09f5..0000000000 --- a/CUST/AANS/rap_alg.asp +++ /dev/null @@ -1,108 +0,0 @@ -<%@ language="javascript"%> -<% /* - $Revision$ - $Id$ - - File: cust/AANS/rap_alg.asp - Description: Inhoud van het ALG-tabblad van FG - Parameters: floorKey (required) - highlight (optional list of room-keys to filter) - Context: - -*/%> - - - - -<% -var floorKey = getQParamInt("vKey", -1); -var highlight_arr = getQParamIntArray("highlight", []); // Comma-separated room_key_list (terrains). Optional - -var outputmode = getQParam("outputmode", 0); -var showall = getQParam("showall", 0) == 1; - -var sql = ""; -if (floorKey != -1) -{ - sql = " SELECT r.alg_ruimte_key, r.alg_ruimte_aanduiding, sr.alg_srtruimte_omschrijving," - + " hd.vvo, (COALESCE(hd.prs_ruimteafdeling_bezetting,100)/100)*r.alg_ruimte_bruto_vloeropp bvo, r.alg_ruimte_omschrijving," - +" r.alg_ruimte_bruto_vloeropp, hd.prs_ruimteafdeling_bezetting bezetting," - + " (SELECT " + S("prs_dep_string") - + " FROM prs_v_afdeling d" - + " WHERE d.prs_afdeling_key = hd.prs_afdeling_key) afdeling" - + " FROM aans_v_rap_huurdetail hd, " - + " alg_v_ruimte_gegevens r, " - + " alg_srtruimte sr " - + " WHERE hd.alg_ruimte_key(+) = r.alg_ruimte_key" - + " AND r.alg_srtruimte_key = sr.alg_srtruimte_key" - + " AND r.alg_verdieping_key = " + floorKey - + (highlight_arr.length > 0 && highlight_arr.join(",").indexOf("-1") == -1 - ? " AND r.alg_ruimte_key IN (" + highlight_arr.join(",") + ")" - : "") - + " ORDER BY alg_ruimte_aanduiding, afdeling"; -} -else -{ // Er is (nog) geen verdieping bekend - sql = "SELECT * FROM DUAL WHERE 1 = 0"; -} -%> - - -<% FCLTHeader.Generate({outputmode: outputmode, root: "../../appl/"}); %> - - - - -<% - var summaryParams = {selectedopp: 0.00, selectedoppAlt1: 0.00} - var ruimte_aanduiding_prev = ""; - - function fnsummaryCalc(oRs) - { - with (summaryParams) - { - if (ruimte_aanduiding_prev != oRs("alg_ruimte_aanduiding").value) - selectedopp = selectedopp + oRs("alg_ruimte_bruto_vloeropp").value; - ruimte_aanduiding_prev = oRs("alg_ruimte_aanduiding").value; - selectedoppAlt1 = selectedoppAlt1 + oRs("vvo").value; - } - return; - } - - function fnsummaryShow() - { - var status_row = " " - + ": " + summaryParams.selectedopp.toFixed(2) + " " + L("lcl_estate_ruimte_opp_m2"); - status_row += ", : " + summaryParams.selectedoppAlt1.toFixed(2) + " " + L("lcl_estate_ruimte_opp_m2"); - return status_row; - } - - var rst = new ResultsetTable({ ID : "cadalgtable", - keyColumn: "alg_ruimte_key", - title: L("lcl_space_manage_h"), - sql: sql, - outputmode: outputmode, - showAll: showall, - summaryCalc: fnsummaryCalc, - summaryShow: fnsummaryShow - }); - - rst.addColumn(new Column({caption: L("lcl_obj_inf_room"), content: "alg_ruimte_aanduiding"})); - rst.addColumn(new Column({caption: L("lcl_fg_func_names"), content: "alg_srtruimte_omschrijving"})); - rst.addColumn(new Column({caption: L("lcl_descr"), content: "alg_ruimte_omschrijving"})); - rst.addColumn(new Column({caption: L("lcl_department"), content: "afdeling"})); - rst.addColumn(new Column({caption: L("lcl_procent"), content: "bezetting", datatype: "float"})); - rst.addColumn(new Column({caption: L("lcl_estate_ruimte_bruto_vloeropp"), content: "bvo", datatype: "float"})); - rst.addColumn(new Column({caption: L("lcl_estate_ruimte_opp_alt1"), content: "vvo", datatype: "float"})); - - rst.addAction({ action: "onClickRuimte", caption: L("lcl_edit"), isDefault: true } ); - - var cnt = rst.processResultset(); -%> - - - diff --git a/CUST/AANS/sso/SSOprodAANS.asp b/CUST/AANS/sso/SSOprodAANS.asp deleted file mode 100644 index edc230f9c3..0000000000 --- a/CUST/AANS/sso/SSOprodAANS.asp +++ /dev/null @@ -1,119 +0,0 @@ -<%@language="VBScript"%> -<% -'******************************************************************* -'Script: SSO.ASP -' -' $Revision$ -' $Id$ -' -'Doel: SSO bewerkstelligen voor ASP providers - deel 1 van 2 -'******************************************************************* -'* declare ********************************************************* -Dim strGUID, strCTID, strUserName, strKey, strASPUrl, strSharedKey -Dim strEncryptedCode, strControlEncryptedCode -'* variables ******************************************************* -strASPUrl = "https://aans.facilitor.nl?sso=2" 'HTTPS URL adres van ASP -strSharedKey = "0cbdd3ad-4428-469a-a5c3-9ab71f8626af" 'Sharedkey - Should be the same at target side -'******************************************************************* -response.Buffer=true -Dim proto, zelf -If Request.ServerVariables("SERVER_PORT") = 443 Then - proto = "https://" -Else - proto = "http://" -End If -zelf = proto & Request.ServerVariables("HTTP_HOST") & Request.ServerVariables("SCRIPT_NAME") -%> - - - - - -Een moment aub. -
- -<% -'* request action = requestid *************************************** -strGUID = Request.form("guid") -strCTID = Request.form("ctid") -if strGUID = "" or strCTID = "" then - '* first flow: requestid **************************************** - %> - - " ID="jumpTo"> - <% -else - '* second flow: create code ************************************* - strUserName = Request.ServerVariables("LOGON_USER") - if strUserName = "" then - strUserName = Request.ServerVariables("REMOTE_USER") - if strUserName = "" then - strUserName = Request.ServerVariables("HTTP_USER") - if strUserName = "" then - strUserName = Request.ServerVariables("HTTP_LOGIN") - if strUserName = "" then - 'Forse user to authenticate - response.Clear - response.Status = 401 - response.Flush - response.End - end if - end if - end if - end if - - ' * Strip domain name - Do While instr(strUserName, "\")>0 - strUserName = Mid(strUserName, instr(strUserName, "\") + 1) - Loop - '* crypt ******************************************************** - 'First coding phase - strKey = mid(strSharedKey & strGUID,1,Len(strUserName)) - strEncryptedCode = EnCrypt(strUserName) - 'Second coding phase - strKey = mid(strGUID,1,Len(strEncryptedCode)) - strEncryptedCode = EnCrypt(strEncryptedCode) - '* crypt Controlkey ********************************************* - 'First coding phase - strKey = mid(strSharedKey & strCTID,1,Len(strCTID)) - strControlEncryptedCode = EnCrypt(zelf) - 'Second coding phase - strKey = mid(strCTID,1,Len(strControlEncryptedCode)) - strControlEncryptedCode = EnCrypt(strControlEncryptedCode) - %> - - - - - <% -end if -'* Functions ******************************************************** -Function EnCrypt(strCryptThis) - Dim strChar, iKeyChar, iStringChar, i - for i = 1 to Len(strCryptThis) - iKeyChar = Asc(mid(strKey,i,1)) - iStringChar = Asc(mid(strCryptThis,i,1)) - iCryptChar = iKeyChar Xor iStringChar - strEncrypted = strEncrypted & Chr(iCryptChar) - next - EnCrypt = strEncrypted -End Function -Function ConvertToAsc(strAsc) - Dim iCount - Dim strTemp - ConvertToAsc = "" - for iCount = 1 to len(strAsc) - strTemp = (asc(mid(strAsc,iCount,1))) - ConvertToAsc = ConvertToAsc & len(strTemp) & strTemp - next -End Function -'********************************************************************* -%> -
- - diff --git a/CUST/AANS/tasks/gen_notify.bat b/CUST/AANS/tasks/gen_notify.bat deleted file mode 100644 index 8ac9bddd2b..0000000000 --- a/CUST/AANS/tasks/gen_notify.bat +++ /dev/null @@ -1,4 +0,0 @@ -@echo off -REM Moet gescheduled worden (normaliter 1 keer per uur) om door de applicatiebeheerder -REM ingeregelde notificaties te genereren. -cscript ..\..\..\utils\gen_notify\gen_notify.js ../oracle.udl AANS \ No newline at end of file diff --git a/CUST/AANS/tasks/gen_scheduler.bat b/CUST/AANS/tasks/gen_scheduler.bat deleted file mode 100644 index 86fd60f7cd..0000000000 --- a/CUST/AANS/tasks/gen_scheduler.bat +++ /dev/null @@ -1,4 +0,0 @@ -@echo off -REM Moet gescheduled worden (normaliter 1 keer per dag) om door de applicatiebeheerder -REM ingeregelde jobs (aanmaak van periodieke opdrachten) uit te voeren. -cscript ..\..\..\utils\gen_scheduler\gen_scheduler.js ../oracle.udl \ No newline at end of file diff --git a/CUST/AANS/tasks/putOrders.bat b/CUST/AANS/tasks/putOrders.bat deleted file mode 100644 index d383c0e358..0000000000 --- a/CUST/AANS/tasks/putOrders.bat +++ /dev/null @@ -1 +0,0 @@ -call ..\..\..\utils\putOrders\putOrders.bat \ No newline at end of file diff --git a/CUST/AANS/tmpl_logo.gif b/CUST/AANS/tmpl_logo.gif deleted file mode 100644 index cdcdc964bc..0000000000 Binary files a/CUST/AANS/tmpl_logo.gif and /dev/null differ diff --git a/CUST/AANS/tmpl_logo_sm.gif b/CUST/AANS/tmpl_logo_sm.gif deleted file mode 100644 index 425c0f667e..0000000000 Binary files a/CUST/AANS/tmpl_logo_sm.gif and /dev/null differ diff --git a/CUST/AANS/xsl/afspraak.xsl b/CUST/AANS/xsl/afspraak.xsl deleted file mode 100644 index ca68be1b26..0000000000 --- a/CUST/AANS/xsl/afspraak.xsl +++ /dev/null @@ -1,248 +0,0 @@ - - - - - - - - - - - -

Geachte heer/mevrouw ,

-

Ik heet u van harte welkom bij NS Stations en bevestig uw afspraak voor - om .

-

Ik zal u ophalen in de ontvangsthal van de Katreinetoren in Utrecht. - -
Indien u verlaat of verhinderd bent, kunt u dit doorgeven op telefoonnummer . -

-

Ik verheug mij op uw komst.

-

Met vriendelijke groet

-

-

NS Stations

-

Adres:
- NS Stations, Katreinetoren
- Stationshal 17, 3511 CE Utrecht

-

Bereikbaarheid
- Ons kantoor is uitstekend met de trein te bereiken. De ingang van de Katreinetoren bevindt zich in de stationshal van Utrecht Centraal naast de roltrappen van spoor 5-7. Plan uw reis via www.ns.nl of m.ns.nl.
- Parkeren kunt u in de omgeving van het station Utrecht Centraal in een van de parkeergarages.

- - -
- - - ================================ AFSPRAKEN ============================== - Facilitor new style default XSL template for afspraak - - - - window.print(); - - - - - - - -
-
- - - - - - - -
- - - - - - - - - -
-
Geen bezoekers geregistreerd.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Bevestiging Bezoekersregistratie
Aanvrager
E-mail adres
Locatie
Afdeling
-
Behandeld door
-
-
Bezoekgegevens
-
Datum bezoek - -
Tijd bezoek - 
Op bezoek bij
Telefoon
Bezoek locatie
Actie
Opmerking
-
-
Bezoeker(s)
- - - - [P]arkeerplaats gereserveerd -
- -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - -
Bezoeker
- -
- -
 
Date: - - - - 140px - ../../appl/shared/barcode.asp?text=9078563412&height=50&narrow=1&wide=3 - -
Guest of: - -
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/CUST/AANS/xsl/bestelling.xsl b/CUST/AANS/xsl/bestelling.xsl deleted file mode 100644 index 73dab1fbf3..0000000000 --- a/CUST/AANS/xsl/bestelling.xsl +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  - (WIJZIGING) - (RETOUR) -
:
:
:
: - - - -
:
: - - - -
-
: -   - -
:
Afleverdatum:
: - -
  - -
  -   - -
  - -
-
- -
-
Commentaar levering:
-
- - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - : - -
-
-
 
- - - - - -
-
: - -
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/CUST/AANS/xsl/bezoeker.xsl b/CUST/AANS/xsl/bezoeker.xsl deleted file mode 100644 index c35433d8c7..0000000000 --- a/CUST/AANS/xsl/bezoeker.xsl +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - ================================ BEZOEKER ============================== - FACILITOR default XSL template for bezoeker - - - - window.print(); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - ../../cust//tmpl_logo.gif - -
-
- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
 
:
:
  -  
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/CUST/AANS/xsl/contract.xsl b/CUST/AANS/xsl/contract.xsl deleted file mode 100644 index 693cd024e2..0000000000 --- a/CUST/AANS/xsl/contract.xsl +++ /dev/null @@ -1,331 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Bezoek/afleveradres: -
zie bijlage
- -
- -
-    -
- €  -
- - -
- -
-    -
- €  -
- - - - -    - - €  -
- - - - - -    - - €  -
-
- - - - - - - - - - - - - - ================================ CONTRACT ============================== - Facilitor new style default XSL template for contract - - - - window.print(); - - - - - - - - - - -
-  Prijsconditie: BTW. Exclusief -  Betalingsconditie: 60 dagen einde maand
- - - - - - - - - - - -
- - - - - - - - - - -
- -
- - - -
-  Omschrijving: -
-
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Contractsoort: - - -
- Startdatum: - - -
- Einddatum: - - - -
- Uitgifte: - - - -
- Behandeld door: - facilitydesk medewerker
- Request nr: - - -
- Opdrachtgever: - - -
-
- - - - -
- - - -
- - - - - - -
    - Handtekening AAFM: -
- - - - -
- -
- - - -
 
- - - - - - - - -
- - - -
- -
-
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/CUST/AANS/xsl/cust.xsl b/CUST/AANS/xsl/cust.xsl deleted file mode 100644 index 7545a93929..0000000000 --- a/CUST/AANS/xsl/cust.xsl +++ /dev/null @@ -1,507 +0,0 @@ - - - - - - - - - - CUST01 - - - - - - - - - - - - - - - - -
- - - - - - - ../../cust//tmpl_logo_sm.gif - - - - - - - -
- - - - -
- - Docketnummer: (Te vermelden op alle documenten m.b.t. deze order!!) - Klachtnummer: (Te vermelden op alle documenten m.b.t. deze order!!) - Offerte aanvraag: (Te vermelden op alle documenten m.b.t. deze offerte!!) - Bijlage bij contractorder: - Ordernummer: (Te vermelden op alle documenten m.b.t. deze order!!) - -
-
-
- - - - - - -
- Servicedesk: -
Tel nr: 00 31 (0)88 0081121
- Postbus 4028
- 3502 HM Utrecht
- E-mail: facilitydeskns@aa-fm.com
-
-
- - - - - - -
- Leverancier: -
- -
- -
-   
- Tel nr:
- Fax nr:
-
- - - - - - -

S.v.p. gereedmelden via Facilitor, wanneer u geen toegang heeft kan dit per mail naar de Servicedesk.
-
- - - - - - -
- Factuuradres: -
AAFM Facility Management B.V.
- T.a.v. Crediteurenadministratie NS account
- Postbus 80009
- 5600 JZ Eindhoven
-
- - - - - - - - -
- Op alle door AAFM Facility Management BV verstrekte offerteaanvragen en opdrachten zullen uitsluitend en onverkort de algemene -inkoopvoorwaarden, versie 01 januari 2010 van AAFM Facility Management BV van toepassing zijn, op te vragen via: - http://www.aa-fm.com(onder afdeling Inkoop), met uitzondering van -met AAFM Facility Management BV overeengekomen schriftelijke contractuele afspraken. - -
-
Met de ondertekening van dit formulier door Leverancier verklaart deze hiermee accoord te gaan met de hierboven genoemde algemene -inkoopvoorwaarden, met uitzondering van met AAFM Facility Management BV overeengekomen schriftelijke contractuele afspraken.
-
-
- - -
- Trade register no. 09130306 -
-
-
- - - - - - ================================ CUSTOMER ============================== - Facilitor new style default XSL template for customer nodes - - - - - window.print(); - - - -

LS,

-

Bijgaand ontvangt u een overzicht van reserveringen ingevoerd in Facilitor voor de komende werkdag. -
-

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LocatieRuimteDatumVanTotpersVoorziening/OpstellingGastheerAanvragerFDCOmschrijvingOpmerking
- - - - - - - - - - - - - - - - - - - - - - - -
-
- -
- -
- - - - Facilitor Graphics default XSL template - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Unknown template - - - -
- - - &vKey=&paperWidth=240&paperHeight=155&DWGScale= - - width:240mm - 1 - false - -
- 0 - width:50mm;height:150mm - no - ../CAD/legenda.asp?forPrint=1&scenario_key=&thema=&parentKey=&mode= - - - - - &vKey=&paperWidth=192&paperHeight=155&DWGScale= - - width:192mm - 1 - false - -
- - - &vKey=&paperWidth=360&paperHeight=253&DWGScale= - - width:360mm - 1 - false - -
- 0 - width:50mm;height:230mm - no - ../CAD/legenda.asp?forPrint=1&scenario_key=&thema=&parentKey=&mode= - - - - - - &vKey=&paperWidth=310&paperHeight=233&DWGScale= - - width:310mm - 1 - false - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Thema:  - -
-
- - Building: - - - - - ../../cust/aans/tmpl_logo_sm.gif - -
- - Floor: - -  () -
- - Date: -
-
- Facilitor ..
- - -
-
- \ No newline at end of file diff --git a/CUST/AANS/xsl/maas.xsl b/CUST/AANS/xsl/maas.xsl deleted file mode 100644 index 880936d256..0000000000 --- a/CUST/AANS/xsl/maas.xsl +++ /dev/null @@ -1,126 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - / - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - xml - - - - - - - - - - - - - \ No newline at end of file diff --git a/CUST/AANS/xsl/melding.xsl b/CUST/AANS/xsl/melding.xsl deleted file mode 100644 index c7500697bf..0000000000 --- a/CUST/AANS/xsl/melding.xsl +++ /dev/null @@ -1,296 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - als we binnen een opdracht zijn, tonen we de meldingtekst niet - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Melding - - - SPOED! - -
- Aanvrager: - - - - Telefoon: - - - - -
- Locatie: - -   - () - - Afdeling: - - -
- Werkplek: - - -
- .  - () -
-
-
-
- Locatie: - -   - () - - Melddatum: - -   - -
- Terrein: - - - - Gebouw: - - - - Ordernr: - - -
- - - - Bouwlaag: - -   - () - - Uitvoertijd: - -  dagen *
- Ruimte: - -   - () - - - - Status: - - -
-
- Melding: - - - - - - Vakgroep: - - - - -
- Omschrijving: - - - - -
- - : - - -
- Objecten: - - - - - - - NADER TE DEFINIEREN -
- Afhandeling: - - - - -
-
- - - - - - - ================================ MELDINGEN ============================== - Facilitor new style default XSL template for melding - - - - window.print(); - - - - - - - - - - -
-
-
- * Wanneer uw melding een spoedmelding betreft, zal de Facility Desk uw melding als spoed aanmerken. De bovenstaande uitvoertijd vervalt dan. -Als achter de melding NTB (Nader Te Bepalen) staat, geeft dit aan dat de uitvoertijd variabel is. -Het weergegeven aantal dagen geeft een indicatie van het aantal dagen waarin AAFM verwacht dat uw melding gereed zal zijn. De werkelijke uitvoertijd is afhankelijk van de complexiteit van uw melding, de beschikbaarheid van materialen en of de betrokken partijen binnen de beïnvloedingssfeer van AAFM vallen. -
-
- -
-
-
- - - - -
* Wanneer uw melding een spoedmelding betreft, zal de Facility Desk uw melding als spoed aanmerken. De bovenstaande uitvoertijd vervalt dan. -Als achter de melding NTB (Nader Te Bepalen) staat, geeft dit aan dat de uitvoertijd variabel is. -Het weergegeven aantal dagen geeft een indicatie van het aantal dagen waarin AAFM verwacht dat uw melding gereed zal zijn. De werkelijke uitvoertijd is afhankelijk van de complexiteit van uw melding, de beschikbaarheid van materialen en of de betrokken partijen binnen de beïnvloedingssfeer van AAFM vallen.
- -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/CUST/AANS/xsl/opdracht.xsl b/CUST/AANS/xsl/opdracht.xsl deleted file mode 100644 index 6fb2cbe03b..0000000000 --- a/CUST/AANS/xsl/opdracht.xsl +++ /dev/null @@ -1,809 +0,0 @@ - - - - - - - - - - - - - - - -
- - - - - - - ../../cust//tmpl_logo_sm.gif - - - - - - - -
- - - - -
- - Docketnummer: (Te vermelden op alle documenten m.b.t. deze order!!) - Klachtnummer: (Te vermelden op alle documenten m.b.t. deze order!!) - Offerte aanvraag: (Te vermelden op alle documenten m.b.t. deze offerte!!) - Bijlage bij contractorder: - Ordernummer: (Te vermelden op alle documenten m.b.t. deze order!!) - -
-
-
- - - - - - -
- Servicedesk: -
Tel nr: 00 31 (0)88 0081121
- Postbus 4028
- 3502 HM Utrecht
- E-mail: facilitydeskns@aa-fm.com
-
-
- - - - - - -

S.v.p. gereedmelden via Facilitor, wanneer u geen toegang heeft kan dit per mail naar de Servicedesk.
-
- - - - - - -
- Factuuradres: -
AAFM Facility Management B.V.
- T.a.v. Crediteurenadministratie NS account
- Postbus 80009
- 5600 JZ Eindhoven
-
- - - - - - -
- Leverancier: -
- -
- -
-   
- Tel nr:
- Fax nr:
-
- - - - - - -
- Leverancier: -
- -
- -
-   
- Tel nr:
- Fax nr:
-
- - - - - - -
- Bezoek/afleveradres: -
NS Stations
- -
- -
- -
-    - -
-
- - - - - - -
- Indien op deze order geen bedrag vermeld staat, is de maximale waarde 500 euro. U dient de werkelijke prijs -binnen 8 werkdagen terug te koppelen aan de Servicedesk, deze mag NIET afwijken van het factuurbedrag. -Indien deze opdracht > 500 euro is en geen bedrag bevat, dient u deze order te annuleren bij de Servicedesk -en een RFQ aan te vragen, mits er gerefereerd is naar een offerte. -
-
- - - - - - - -
- Op alle door AAFM Facility Management BV verstrekte offerteaanvragen en opdrachten zullen uitsluitend en onverkort de algemene -inkoopvoorwaarden, versie 01 januari 2010 van AAFM Facility Management BV van toepassing zijn, op te vragen via: - http://www.aa-fm.com(onder afdeling Inkoop), met uitzondering van -met AAFM Facility Management BV overeengekomen schriftelijke contractuele afspraken. - -
-
Met de ondertekening van dit formulier door Leverancier verklaart deze hiermee accoord te gaan met de hierboven genoemde algemene -inkoopvoorwaarden, met uitzondering van met AAFM Facility Management BV overeengekomen schriftelijke contractuele afspraken.
-
-
- - -
- Trade register no. 09130306 -
-
-
- - - - - - -
- AAFM Facility Management BV

- -1. AAFM Facility Management BV nodigt u uit een prijsopgave uit te -brengen voor de hieronder omschreven activiteiten.

- -2. De prijsopgave dient een vaste prijs te zijn, gebaseerd op de in dit formulier aangegeven -activiteiten en de (contract)afspraken tussen AAfm en Leverancier, eventueel aangevuld door -opmerkingen/aanvullingen van Leverancier. Indien, wegens omstandigheden, niet kan -worden overgegaan tot het uitbrengen van een vaste prijs dient een raming te worden -afgegeven. Dit moet onder aan dit formulier worden weergegeven. De raming dient een zo -goed mogelijke benadering te zijn van de werkelijke kosten

- -3. Indien de aanbieding het bedrag van € 500,- overstijgt dient te allen tijde een -gedetailleerde kostenspecificatie te worden bijgevoegd. Deze prijsopgave (evt. inclusief -kostenspecificatie) dient ondertekend te worden geretourneerd ter attentie van de servicedesk
-
-
- - - - - - - - - - - - - - - - - - - - - - - ================================ OPDRACHTEN ============================== - Facilitor new style default XSL template for opdracht - - - - window.print(); - - - - - - - - - - - -
-  Prijsconditie: BTW. Exclusief -  Betalingsconditie: 60 dagen einde maand
- - - - - - - - - - - -
- - - - - - - -
- -
- -
-
- - - - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Urgentie niveau: - - - -   - werkdag(en)
- Melder: - - -
- Vakgroep: - - -
- Melding: - - -
- Uitgifte: - - -
- Behandeld door: - - -
- Request nr: - - -
- Opdrachtgever: - - -
- Telefoonnr: - - -
- : - - () -
- : - -   -
- Verdieping: - - -
- : - - () -
-
- - - - - - - -
- Omschrijving: -
- - - -
- - - - - - -
  - - Werkelijke response datum/tijd: - -   - - Afgehandeld datum/tijd: - -   - - Handtekening AAFM: - - - Definitieve prijs: € - -
- - - - - - -
- - - Handtekening AAFM: -
-
- - - - -
- -
-
- - - - - - - - - - - - - - - - - - - - - -
- - - -
- -
- Prijsopgave referentie:  - -
- Request nummer:  - -
Responsetijd voor indienen offertes (indien geen spoed):
- < € 500,-: 1 werkdag
- > € 500,-: 5 werkdagen
- Urgentie niveau:  - - -   - werkdag(en)
- Vakgroep:  - -
- Melding:  - -
- Contactpersoon: -
AAFM Facility Management BV
- Uitgegeven door:
- Servicedesk AAFM-NS
- Tel nr: 00 31 (0)88 0081121
-
Aanvrager:
- Tel nr:
- Datum aanvraag:
- Te retourneren aan: -
AAFM Facility Management BV
- T.a.v. Facility Desk NS
- Tel nr: 00 31 (0)88 0081121
- Postbus 4028
- 3502 HM  Utrecht
- E-mail: facilitydeskns@aa-fm.com
- - - - - - - -
Handtekening AAFM:Handtekening Klant:Budget/Dienst:Business Unit:
- -
- - - - -
- - - -
- - - - - - - - - - - - - - -
- Opmerkingen/aanvullingen leverancier: -
-
- Verklaring van de leverancier: -
Hierbij verklaart Leverancier de hierboven omschreven werkzaamheden, gebaseerd op de hierboven gestelde voorwaarden en -condities, uit te voeren voor een bedrag van € (excl. BTW). Het aanbod betreft een vaste -prijs (doorhalen wat niet van toepassing is).

-Naam geautoriseerd persoon:

Handtekening:Datum
-
- - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Uitgifte: - - -
- Naam aanvrager: - - -
- Telefoonnummer: - - -
- Uitgegeven door: - - -
- Request nummer: - - -
- : - - () -
- : - -   -
- Verdieping: - - -
- : - - () -
-
- - - - - - - - - - - - - - - - - - - -
- Urgentie niveau: - - - -   - werkdag(en)
- Vakgroep: - - -
- Melding: - - -
- Afdeling: - - -
-
- Omschrijving: -
- - - -
-
- Object(en): - -
- -
-
-
-
- - - - - - - - - - - - - - - -
- Acties/opmerkingen: -
- FM accoord -
- Handtekening: -
-
-
- Naam: -
-
-
-
- Afgehandeld:

(naam):
-
- Respons datum/tijd: - - Bestede
uren:
-
- Afgehandeld datum/tijd: -
-
Mits u geen toegang heeft tot Facilitor kunt u de ingevulde opdracht retourneren naar facilitydeskns@aa-fm.com
-Voor nadere informatie kunt u contact opnemen met de Facilitydesk 00 31 (0)88 0081121
Trade register no. 09130306
-
- -
- -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/CUST/AANS/xsl/reservering.xsl b/CUST/AANS/xsl/reservering.xsl deleted file mode 100644 index 09657717f8..0000000000 --- a/CUST/AANS/xsl/reservering.xsl +++ /dev/null @@ -1,457 +0,0 @@ - - - - - - - - - - Geachte heer, mevrouw, -
-
Onderstaande reservering staat geregistreerd in ons systeem. - Indien deze reservering niet meer van toepassing is dient u deze binnen 1 werkdag te annuleren. -
-
Eventuele wijzigingen in uw reservering kunt u doorgeven aan de AAFM service desk - (tel 0031 (0)88 0081121 , e-mail: facilitydeskns@aa-fm.com) onder vermelding van bovenstaand reserveringsnummer. - Aanvullende catering bestellingen kunt u doorgeven aan de cateraar op uw locatie. - Aan catering bestellingen of vergaderfaciliteiten zijn kosten verbonden. - Indien u niet tijdig annuleert worden deze in rekening gebracht. -
-
Wanneer de reservering gewoon doorgang vindt, hoeft u niet op deze herinnering te reageren. -
-
- - -
- - -
- - - - - - - -
       - ( - - -
- - - -
 -       - - - - - - - - -
-
- - - - - : - - - - - - - - - : - - - - - - - - - - - : - - / - - - - - - : - - - - - - - - - : - -   - - - - - - - - - - - - - - -   - -
(max. ) - -

-
- - -   - - - - - - - - - - - - - - - - - - - -
- - - - -   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - -
-
- - - - - - - - - - - -
- - - - - - - - - - - - - - - - -
- - : -
- - - - - -
-
- - - - - - -
- - - - - - - - - - - - -
-
Annulering
- Op uw naam heeft een reservering onder nummer plaatsgevonden, die vervolgens direct weer is verwijderd. -
-
Deze reservering wordt niet verder verwerkt.

- Wilt u toch een reservering aanmaken voeg dan een nieuwe reservering toe waarbij een zaal, voorziening of artikel gereserveerd is.
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - Reservering
- Deelreservering /
-
- () 
Aanvrager
Telefoon
Mobiel
E-mail adres
Locatie
Afdeling
Gastheer/-vrouw
Stamnummer
Business Unit  - -
Costcenter
-
Behandeld door
Datum
-
- - - DE RESERVERING IS VERVALLEN - - - - -
-
Reserveringsgegevens
-
Opmerking
- - - -
-
- - - - - - - - - - - - - - - -
-
Totaalprijs reservering: - - - -
-
- -
-
-
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/CUST/AANS/xsl/strukton.xsl b/CUST/AANS/xsl/strukton.xsl deleted file mode 100644 index ae9dadd7e3..0000000000 --- a/CUST/AANS/xsl/strukton.xsl +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - - - - - Calamiteit - Hoog - Normaal - Laag - Hold - - Onbekend - - - - - - - - / - - - - - - 2 - 2 - 5 - 4 - 3 - - - - - --T:00 - false - - - - - - - - - - - - - - - - - - - - - - --T:00 - - - - - --T:00 - - : dagen - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - xml - - - - - - - - - - - \ No newline at end of file