mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-19 07:52:16 +00:00
This commit is contained in:
@@ -0,0 +1,184 @@
|
||||
<?php
|
||||
/* Copyright (C) 2010 Technikum-Wien
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
* Authors: Christian Paminger <christian.paminger@technikum-wien.at>,
|
||||
* Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at> and
|
||||
* Karl Burkhart <burkhart@technikum-wien.at>.
|
||||
*/
|
||||
|
||||
require_once '../config/wawi.config.inc.php';
|
||||
require_once '../include/firma.class.php';
|
||||
require_once '../include/organisationseinheit.class.php';
|
||||
require_once '../include/wawi_konto.class.php';
|
||||
require_once '../include/mitarbeiter.class.php';
|
||||
$aktion ='';
|
||||
?>
|
||||
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
||||
"http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>WaWi Bestellung</title>
|
||||
<link rel="stylesheet" href="../skin/wawi.css" type="text/css"/>
|
||||
<link rel="stylesheet" href="../include/js/jquery.autocomplete.css" type="text/css"/>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<script type="text/javascript" src="../include/js/jquery.js"></script>
|
||||
<script type="text/javascript" src="../include/js/jquery.metadata.js"></script>
|
||||
<script type="text/javascript" src="../include/js/jquery.tablesorter.js"></script>
|
||||
<script type="text/javascript" src="../include/js/jquery.autocomplete.min.js" ></script>
|
||||
<script type="text/javascript" src="../include/js/jquery-ui.js" ></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
function formatItem(row)
|
||||
{
|
||||
return row[0] + " <li>" + row[1] + "</li> ";
|
||||
}
|
||||
|
||||
$(document).ready(function()
|
||||
{
|
||||
$('#firma_id').autocomplete('wawi_autocomplete.php',
|
||||
{
|
||||
minChars:2,
|
||||
matchSubset:1,matchContains:1,
|
||||
width:500,
|
||||
formatItem:formatItem,
|
||||
extraParams:{'work':'wawi_firma_search' }
|
||||
}).result(function(event, item) {
|
||||
$('#firmenname').val(item[1]);
|
||||
});
|
||||
});
|
||||
|
||||
$(document).ready(function()
|
||||
{
|
||||
$('#mitarbeiter_name').autocomplete('wawi_autocomplete.php',
|
||||
{
|
||||
minChars:2,
|
||||
matchSubset:1,matchContains:1,
|
||||
width:500,
|
||||
formatItem:formatItem,
|
||||
extraParams:{'work':'wawi_mitarbeiter_search' }
|
||||
}).result(function(event, item) {
|
||||
$('#mitarbeiter_uid').val(item[1]);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<?php
|
||||
|
||||
if (isset($_GET['method']))
|
||||
$aktion = $_GET['method'];
|
||||
|
||||
|
||||
if($aktion == 'suche')
|
||||
{
|
||||
$firma = new firma();
|
||||
$firma->getAll();
|
||||
$firma_all = $firma->result;
|
||||
$oe = new organisationseinheit();
|
||||
$oe->getAll();
|
||||
$oeinheiten= $oe->result;
|
||||
$konto = new wawi_konto();
|
||||
$konto->getAll();
|
||||
$konto_all = $konto->result;
|
||||
$mitarbeiter = new mitarbeiter();
|
||||
$mitarbeiter_all = array();
|
||||
$mitarbeiter_all = $mitarbeiter->getMitarbeiter();
|
||||
|
||||
|
||||
|
||||
echo "Bestellung suchen ";
|
||||
echo "<form action ='bestellung.php?method=suche method='post' name='sucheForm'>";
|
||||
echo "<table border =0>";
|
||||
echo "<tr>";
|
||||
echo "<td>Bestellnummer</td>";
|
||||
echo "<td><input type = 'text' size ='32' maxlength = '16' name = 'bestellnr'></td>";
|
||||
echo "</tr>";
|
||||
echo "<tr>";
|
||||
echo "<td>Titel</td>";
|
||||
echo "<td><input type = 'text' size ='32' maxlength = '256' name = 'titel'></td>";
|
||||
echo "<tr>";
|
||||
echo "<tr>";
|
||||
echo "<td>Erstelldatum</td>";
|
||||
echo "<td>von <input type ='text' size ='8' name ='evon'> bis <input type ='text' size ='8' name = 'ebis'></td>";
|
||||
echo "</tr>";
|
||||
echo "<tr>";
|
||||
echo "<td>Bestelldatum</td>";
|
||||
echo "<td>von <input type ='text' size ='8' name ='bvon'> bis <input type ='text' size ='8' name = 'bbis'></td>";
|
||||
echo "</tr>";
|
||||
echo "<tr>";
|
||||
echo "<td> Firma: </td>";
|
||||
echo "<td> <input id='firma_id' name='firma_id' size='32' maxlength='30' value='' >";
|
||||
echo "</td>";
|
||||
echo "<td> <input id='firmenname' name='firmenname' size='10' maxlength='30' value='' >";
|
||||
echo "</td>";
|
||||
echo "</tr>";
|
||||
echo "<tr>";
|
||||
echo "<td> Organisationseinheit: </td>";
|
||||
echo "<td><SELECT name='filter_oe_kurzbz'>";
|
||||
echo '<option value="">-- auswählen --</option>';
|
||||
foreach ($oeinheiten as $oei)
|
||||
{
|
||||
if($oei->aktiv)
|
||||
{
|
||||
echo '<option value="'.$oei->oe_kurzbz.'" >'.$oei->organisationseinheittyp_kurzbz.' '.$oei->bezeichnung.'</option>';
|
||||
}
|
||||
else
|
||||
{
|
||||
echo '<option style="text-decoration:line-through;" value="'.$oei->oe_kurzbz.'">'.$oei->bezeichnung.'</option>';
|
||||
}
|
||||
}
|
||||
echo "</td>";
|
||||
echo "</SELECT>";
|
||||
echo "</tr>";
|
||||
echo "<tr>";
|
||||
echo "<td> Konto: </td>";
|
||||
echo "<td><SELECT name='filter_konto'>";
|
||||
echo '<option value="">-- auswählen --</option>';
|
||||
|
||||
foreach($konto_all as $ko)
|
||||
{
|
||||
echo '<option value='.$ko->beschreibung.' >'.$ko->kurzbz.'</option>';
|
||||
|
||||
}
|
||||
echo "</td>";
|
||||
echo "</SELECT>";
|
||||
echo "</tr>";
|
||||
echo "<tr>";
|
||||
echo "<td> Änderung durch: </td>";
|
||||
|
||||
echo "<td> <input id='mitarbeiter_name' name='mitarbeiter_name' size='32' maxlength='30' value='' >";
|
||||
echo "</td>";
|
||||
echo "<td> <input id='mitarbeiter_uid' name='mitarbeiter_uid' size='10' maxlength='30' value='' >";
|
||||
echo "</td>";
|
||||
|
||||
echo "</SELECT>";
|
||||
echo "</tr>";
|
||||
echo "<tr>";
|
||||
echo "<td>Nur ohne Rechnung</td>";
|
||||
echo "<td><input type ='checkbox' name ='rechnung'></td>";
|
||||
echo "</tr>";
|
||||
echo "<tr><td> </td></tr>";
|
||||
echo '<tr><td><input type="submit" value="Suche"></td></tr>';
|
||||
|
||||
echo "</table>";
|
||||
echo "</form>";
|
||||
|
||||
}
|
||||
@@ -0,0 +1,463 @@
|
||||
<?php
|
||||
/* Copyright (C) 2010 Technikum-Wien
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
* Authors: Christian Paminger <christian.paminger@technikum-wien.at>,
|
||||
* Andreas Oesterreicher <andreas.oesterreicher@technikum-wien.at> and
|
||||
* Karl Burkhart <burkhart@technikum-wien.at>.
|
||||
*/
|
||||
|
||||
header( 'Expires: -1' );
|
||||
header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' );
|
||||
header( 'Cache-Control: no-store, no-cache, must-revalidate' );
|
||||
header( 'Pragma: no-cache' );
|
||||
header('Content-Type: text/html;charset=UTF-8');
|
||||
|
||||
require_once('../config/vilesci.config.inc.php');
|
||||
require_once('auth.php');
|
||||
require_once('../include/functions.inc.php');
|
||||
require_once('../include/benutzerberechtigung.class.php');
|
||||
require_once('../include/benutzer.class.php');
|
||||
require_once('../include/person.class.php');
|
||||
require_once('../include/mitarbeiter.class.php');
|
||||
require_once('../include/ort.class.php');
|
||||
require_once('../include/studiengang.class.php');
|
||||
require_once('../include/organisationseinheit.class.php');
|
||||
require_once('../include/wawi.class.php');
|
||||
require_once('../include/betriebsmittel.class.php');
|
||||
require_once('../include/betriebsmittelperson.class.php');
|
||||
require_once('../include/betriebsmitteltyp.class.php');
|
||||
require_once('../include/betriebsmittelstatus.class.php');
|
||||
require_once('../include/betriebsmittel_betriebsmittelstatus.class.php');
|
||||
require_once ('../include/firma.class.php');
|
||||
|
||||
if (!$uid = get_uid())
|
||||
die('Keine UID gefunden:'.$uid.' ! <a href="javascript:history.back()">Zurück</a>');
|
||||
|
||||
if (!$db = new basis_db())
|
||||
die('Datenbank kann nicht geoeffnet werden. <a href="javascript:history.back()">Zurück</a>');
|
||||
|
||||
$rechte = new benutzerberechtigung();
|
||||
if(!$rechte->getBerechtigungen($uid))
|
||||
die('Sie haben keine Berechtigung fuer diese Seite');
|
||||
|
||||
if(!$rechte->isBerechtigt('wawi/inventar:begrenzt', null, 's'))
|
||||
die('Sie haben keine Berechtigung fuer diese Seite');
|
||||
|
||||
// ------------------------------------------------------------------------------------------
|
||||
// Initialisierung
|
||||
// ------------------------------------------------------------------------------------------
|
||||
$errormsg=array();
|
||||
$default_status_vorhanden='vorhanden';
|
||||
|
||||
// ------------------------------------------------------------------------------------------
|
||||
// Parameter Aufruf uebernehmen
|
||||
// ------------------------------------------------------------------------------------------
|
||||
$nummer=trim((isset($_REQUEST['nummer']) ? $_REQUEST['nummer']:''));
|
||||
$seriennummer=trim((isset($_REQUEST['seriennummer']) ? $_REQUEST['seriennummer']:''));
|
||||
$ort_kurzbz=trim((isset($_REQUEST['ort_kurzbz']) ? $_REQUEST['ort_kurzbz']:''));
|
||||
$oe_kurzbz=trim((isset($_REQUEST['oe_kurzbz']) ? $_REQUEST['oe_kurzbz']:''));
|
||||
$person_id=trim((isset($_REQUEST['person_id']) ? $_REQUEST['person_id']:''));
|
||||
$beschreibung=trim((isset($_REQUEST['beschreibung']) ? $_REQUEST['beschreibung']:''));
|
||||
$betriebsmitteltyp=trim((isset($_REQUEST['betriebsmitteltyp']) ? $_REQUEST['betriebsmitteltyp']:''));
|
||||
$betriebsmittelstatus_kurzbz=trim((isset($_REQUEST['betriebsmittelstatus_kurzbz']) ? $_REQUEST['betriebsmittelstatus_kurzbz']:''));
|
||||
$firma_id=trim(isset($_REQUEST['firma_id'])?$_REQUEST['firma_id']:'');
|
||||
$bestellnr=trim(isset($_REQUEST['bestellnr'])?$_REQUEST['bestellnr']:'');
|
||||
$bestellung_id=trim(isset($_REQUEST['bestellung_id'])?$_REQUEST['bestellung_id']:'');
|
||||
$bestelldetail_id=trim(isset($_REQUEST['bestelldetail_id'])?$_REQUEST['bestelldetail_id']:'');
|
||||
$kostenstelle_id=trim(isset($_REQUEST['kostenstelle_id'])?$_REQUEST['kostenstelle_id']:'');
|
||||
$hersteller=trim((isset($_REQUEST['hersteller']) ? $_REQUEST['hersteller']:''));
|
||||
$jahr_monat=trim(isset($_REQUEST['jahr_monat']) ? $_REQUEST['jahr_monat']:'');
|
||||
$afa=trim(isset($_REQUEST['afa']) ? $_REQUEST['afa']:'');
|
||||
$inventur_jahr=trim(isset($_REQUEST['inventur_jahr']) ? $_REQUEST['inventur_jahr']:'');
|
||||
$aktiv=trim(isset($_REQUEST['aktiv']) ? $_REQUEST['aktiv']:false);
|
||||
|
||||
$debug=trim(isset($_REQUEST['debug']) ? $_REQUEST['debug']:false);
|
||||
|
||||
$work=trim(isset($_REQUEST['work'])?$_REQUEST['work']:(isset($_REQUEST['ajax'])?$_REQUEST['ajax']:false));
|
||||
$work=strtolower($work);
|
||||
|
||||
// ------------------------------------------------------------------------------------------
|
||||
// Datenbankanbindung
|
||||
// ------------------------------------------------------------------------------------------
|
||||
// Class - Datenbank
|
||||
$oBetriebsmittel = new betriebsmittel();
|
||||
$oBetriebsmittel->result=array();
|
||||
$oBetriebsmittel->debug=$debug;
|
||||
|
||||
$oWawi = new wawi();
|
||||
$oWawi->result=array();
|
||||
$oWawi->debug=$debug;
|
||||
$oWawi->errormsg='';
|
||||
|
||||
$oPerson = new person();
|
||||
$oPerson->result=array();
|
||||
$oPerson->errormsg='';
|
||||
|
||||
$oOrganisationseinheit = new organisationseinheit();
|
||||
$oOrganisationseinheit->result=array();
|
||||
|
||||
// ------------------------------------------------------------------------------------------
|
||||
// Datenlesen
|
||||
// ------------------------------------------------------------------------------------------
|
||||
/* jQuery autocomplete
|
||||
lineSeparator = (default value: "\n")
|
||||
The character that separates lines in the results from the backend.
|
||||
cellSeparator (default value: "|")
|
||||
The character that separates cells in the results from the backend.
|
||||
*/
|
||||
switch ($work)
|
||||
{
|
||||
// Hersteller
|
||||
case 'hersteller':
|
||||
$hersteller=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($hersteller) || $hersteller=='')
|
||||
exit();
|
||||
$pArt='select';
|
||||
$pDistinct=true;
|
||||
$pFields='hersteller';
|
||||
$pTable='wawi.tbl_betriebsmittel';
|
||||
$matchcode=addslashes(str_replace(array('*','%',',',';',"'",'"',' '),'%',trim($hersteller)));
|
||||
$pWhere=" upper(trim(hersteller)) like upper(trim('".$matchcode."%'))";
|
||||
$pOrder='hersteller';
|
||||
$pLimit='100';
|
||||
$pSql='';
|
||||
if (!$oRresult=$db->SQL($pArt,$pDistinct,$pFields,$pTable,$pWhere,$pOrder,$pLimit,$pSql))
|
||||
exit(' |'.$db->errormsg."\n");
|
||||
for ($i=0;$i<count($oRresult);$i++)
|
||||
echo html_entity_decode($oRresult[$i]->hersteller).'|'. ''."\n";
|
||||
break;
|
||||
|
||||
|
||||
// Person - FH Technikum suche
|
||||
case 'person':
|
||||
$person_id=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($person_id) || $person_id=='')
|
||||
exit();
|
||||
|
||||
$matchcode=mb_strtoupper(addslashes(str_replace(array('*','%',',',';',"'",'"',' '),'%',trim($person_id))));
|
||||
//$pWhere=" aktiv ";
|
||||
$pWhere=' 1=1 ';
|
||||
if ($person_id)
|
||||
{
|
||||
$pWhere.=" and (UPPER(trim(uid)) like '%".$matchcode."%' ";
|
||||
$pWhere.=" or UPPER(trim(to_char(person_id,'999999999'))) like '%".$matchcode."%' ";
|
||||
$pWhere.=" or UPPER(trim(nachname)) like '%".addslashes($matchcode)."%' ";
|
||||
$pWhere.=" or UPPER(trim(vorname)) like '%".addslashes($matchcode)."%' ";
|
||||
$pWhere.=" or UPPER(trim(nachname || ' ' || vorname)) like '%".addslashes($matchcode)."%' ";
|
||||
$pWhere.=" or UPPER(trim(vorname || ' ' || nachname)) like '%".addslashes($matchcode)."%' ) ";
|
||||
}
|
||||
if (!empty($oe_kurzbz))
|
||||
{
|
||||
$pSql="SELECT vw_benutzer.uid,vw_benutzer.person_id,vw_benutzer.aktiv,uid,person_id,titelpre,anrede,vorname,nachname,vornamen,titelpost,funktion_kurzbz
|
||||
FROM public.tbl_benutzerfunktion JOIN campus.vw_benutzer USING(uid)
|
||||
where ". $pWhere ."
|
||||
and (funktion_kurzbz='oezuordnung')
|
||||
and oe_kurzbz IN(
|
||||
WITH RECURSIVE oes(oe_kurzbz, oe_parent_kurzbz) as
|
||||
(
|
||||
SELECT oe_kurzbz, oe_parent_kurzbz FROM public.tbl_organisationseinheit
|
||||
WHERE upper(trim(oe_kurzbz))=upper(trim('".addslashes($oe_kurzbz)."'))
|
||||
UNION ALL
|
||||
SELECT o.oe_kurzbz, o.oe_parent_kurzbz FROM public.tbl_organisationseinheit o, oes
|
||||
WHERE o.oe_parent_kurzbz=oes.oe_kurzbz
|
||||
)
|
||||
SELECT oe_kurzbz
|
||||
FROM oes
|
||||
GROUP BY oe_kurzbz limit 1)
|
||||
ORDER BY nachname, vorname, funktion_kurzbz ";
|
||||
|
||||
$pArt='';
|
||||
$pDistinct=true;
|
||||
$pFields='';
|
||||
$pTable='';
|
||||
$matchcode='';
|
||||
$pWhere='';
|
||||
$pOrder='';
|
||||
$pLimit='';
|
||||
}
|
||||
else
|
||||
{
|
||||
$pArt='select';
|
||||
$pDistinct=true;
|
||||
$pFields='uid,person_id,titelpre,anrede,vorname,nachname,vornamen,aktiv,\'\' as funktion_kurzbz';
|
||||
$pTable=' campus.vw_benutzer ';
|
||||
$matchcode=mb_strtoupper(addslashes(str_replace(array('*','%',',',';',"'",'"',' '),'%',trim($person_id))));
|
||||
$pOrder='nachname';
|
||||
$pLimit='100';
|
||||
$pSql='';
|
||||
}
|
||||
if (!$oRresult=$db->SQL($pArt,$pDistinct,$pFields,$pTable,$pWhere,$pOrder,$pLimit,$pSql))
|
||||
exit(' |'.$db->errormsg."\n");
|
||||
|
||||
|
||||
for ($i=0;$i<count($oRresult);$i++)
|
||||
{
|
||||
echo html_entity_decode($oRresult[$i]->person_id).'|'
|
||||
.trim($oRresult[$i]->anrede).' '.($oRresult[$i]->titelpre?html_entity_decode($oRresult[$i]->titelpre).' ':'')
|
||||
.html_entity_decode($oRresult[$i]->vorname).' '.html_entity_decode($oRresult[$i]->nachname).($oRresult[$i]->funktion_kurzbz?html_entity_decode($oRresult[$i]->funktion_kurzbz).' ':'')
|
||||
.($oRresult[$i]->aktiv=='t'?' <img src="../../skin/images/tick.png" alt="aktiv" />':' <img src="../../skin/images/cross.png" alt="nicht aktiv" />')
|
||||
."\n";
|
||||
}
|
||||
break;
|
||||
|
||||
// Organisation - suche
|
||||
case 'organisationseinheit':
|
||||
$oe_kurzbz=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($oe_kurzbz) || $oe_kurzbz=='')
|
||||
exit();
|
||||
|
||||
$oOrganisationseinheit->result=array();
|
||||
if (!$oOrganisationseinheit->getAll())
|
||||
exit($oOrganisationseinheit->errormsg."\n");
|
||||
for ($i=0;$i<count($oOrganisationseinheit->result);$i++)
|
||||
{
|
||||
if ($aktiv && ($oOrganisationseinheit->result[$i]->aktiv==false || $oOrganisationseinheit->result[$i]->aktiv=='f'))
|
||||
break;
|
||||
|
||||
if (!$oe_kurzbz
|
||||
|| stristr($oOrganisationseinheit->result[$i]->oe_kurzbz,$oe_kurzbz)
|
||||
|| stristr($oOrganisationseinheit->result[$i]->bezeichnung,$oe_kurzbz)
|
||||
|| stristr($oOrganisationseinheit->result[$i]->oe_parent_kurzbz,$oe_kurzbz)
|
||||
|| stristr($oOrganisationseinheit->result[$i]->organisationseinheittyp_kurzbz,$oe_kurzbz) )
|
||||
echo html_entity_decode($oOrganisationseinheit->result[$i]->oe_kurzbz).'|'
|
||||
.' '
|
||||
.(is_null($oOrganisationseinheit->result[$i]->bezeichnung) || empty($oOrganisationseinheit->result[$i]->bezeichnung) || $oOrganisationseinheit->result[$i]->bezeichnung=='NULL' || $oOrganisationseinheit->result[$i]->bezeichnung=='null'?'':html_entity_decode($oOrganisationseinheit->result[$i]->bezeichnung) )
|
||||
.' '
|
||||
.(is_null($oOrganisationseinheit->result[$i]->organisationseinheittyp_kurzbz) || empty($oOrganisationseinheit->result[$i]->organisationseinheittyp_kurzbz) || $oOrganisationseinheit->result[$i]->organisationseinheittyp_kurzbz=='NULL' || $oOrganisationseinheit->result[$i]->organisationseinheittyp_kurzbz=='null'?'':html_entity_decode($oOrganisationseinheit->result[$i]->organisationseinheittyp_kurzbz) )
|
||||
|
||||
.($oOrganisationseinheit->result[$i]->aktiv==true || $oOrganisationseinheit->result[$i]->aktiv=='t'?' <img src="../../skin/images/tick.png" alt="aktiv" />':' <img src="../../skin/images/cross.png" alt="nicht aktiv" />')
|
||||
."\n";
|
||||
}
|
||||
break;
|
||||
|
||||
// Bestellung
|
||||
case 'wawi_bestellnr':
|
||||
$bestellnr=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($bestellnr) || $bestellnr=='')
|
||||
exit();
|
||||
if (!$oWawi->bestellung(null,$jahr_monat,null,"$bestellnr"))
|
||||
exit($oWawi->errormsg."\n");
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
echo html_entity_decode($oWawi->result[$i]->bestellnr).'|'.', '.html_entity_decode($oWawi->result[$i]->jahr_monat_tag).', '.html_entity_decode($oWawi->result[$i]->bestellung_id).', '.html_entity_decode($oWawi->result[$i]->firmenname).', '.html_entity_decode($oWawi->result[$i]->titel).' '.html_entity_decode($oWawi->result[$i]->bemerkungen)."\n";
|
||||
if ($oWawi->errormsg)
|
||||
exit($oWawi->errormsg."\n");
|
||||
|
||||
echo "| *** Bestell ID *** \n";
|
||||
$oWawi->result=array();
|
||||
if ($oWawi->bestellung(null,$jahr_monat,"$bestellnr*"))
|
||||
{
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
echo html_entity_decode($oWawi->result[$i]->bestellnr).'|'.', '.html_entity_decode($oWawi->result[$i]->jahr_monat_tag).', '.html_entity_decode($oWawi->result[$i]->bestellung_id).', '.html_entity_decode($oWawi->result[$i]->firmenname).', '.html_entity_decode($oWawi->result[$i]->titel).' '.html_entity_decode($oWawi->result[$i]->bemerkungen)."\n";
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
// Bestellung ID
|
||||
case 'wawi_bestellung_id':
|
||||
$bestellung_id=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($bestellung_id) || $bestellung_id=='')
|
||||
exit();
|
||||
if ($oWawi->bestellung(null,$jahr_monat,"$bestellung_id*"))
|
||||
{
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
echo html_entity_decode($oWawi->result[$i]->bestellung_id).'|'.', '.html_entity_decode($oWawi->result[$i]->jahr_monat_tag).', '.html_entity_decode($oWawi->result[$i]->bestellnr).', '.html_entity_decode($oWawi->result[$i]->firmenname).', '.html_entity_decode($oWawi->result[$i]->titel).' '.html_entity_decode($oWawi->result[$i]->bemerkungen)."\n";
|
||||
}
|
||||
if ($oWawi->errormsg)
|
||||
exit($oWawi->errormsg."\n");
|
||||
$oWawi->result=array();
|
||||
if (!$oWawi->bestellung(null,$jahr_monat,null,"$bestellung_id%"))
|
||||
exit($oWawi->errormsg."\n");
|
||||
echo "| *** Bestellnr *** \n";
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
echo html_entity_decode($oWawi->result[$i]->bestellung_id).'|'.', '.html_entity_decode($oWawi->result[$i]->jahr_monat_tag).', '.html_entity_decode($oWawi->result[$i]->bestellnr).', '.html_entity_decode($oWawi->result[$i]->firmenname).', '.html_entity_decode($oWawi->result[$i]->titel).' '.html_entity_decode($oWawi->result[$i]->bemerkungen)."\n";
|
||||
break;
|
||||
|
||||
|
||||
// Bestelldetail ID
|
||||
case 'wawi_bestelldetail_id':
|
||||
$bestelldetail_id=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($bestellung_id) || $bestellung_id=='' || is_null($bestelldetail_id) || $bestelldetail_id=='')
|
||||
exit();
|
||||
if ($oWawi->bestellpositionen($bestellung_id,null,"%$bestelldetail_id"))
|
||||
{
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
echo html_entity_decode($oWawi->result[$i]->bestelldetail_id).'|'.', '.html_entity_decode($oWawi->result[$i]->beschreibung).', '.html_entity_decode($oWawi->result[$i]->artikelnr).' Preis VE '.html_entity_decode(number_format($oWawi->result[$i]->preisve,2)).', Menge '.html_entity_decode($oWawi->result[$i]->menge).', Pos.summe '.html_entity_decode(number_format($oWawi->result[$i]->summe,2))."\n";
|
||||
}
|
||||
if ($oWawi->errormsg)
|
||||
exit($oWawi->errormsg."\n");
|
||||
|
||||
if (!$oWawi->bestellpositionen($bestellung_id,null,null,null))
|
||||
exit($oWawi->errormsg."\n");
|
||||
|
||||
echo "| *** alle Positionen *** \n";
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
echo html_entity_decode($oWawi->result[$i]->bestelldetail_id).'|'.', '.html_entity_decode($oWawi->result[$i]->beschreibung).', '.html_entity_decode($oWawi->result[$i]->artikelnr).' Preis VE '.html_entity_decode(number_format($oWawi->result[$i]->preisve,2)).', Menge '.html_entity_decode($oWawi->result[$i]->menge).', Pos.summe '.html_entity_decode(number_format($oWawi->result[$i]->summe,2))."\n";
|
||||
break;
|
||||
|
||||
// Firmen ID
|
||||
case 'wawi_firma_id':
|
||||
$firma_id=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($firma_id) ||$firma_id=='')
|
||||
exit();
|
||||
$oWawi = new wawi();
|
||||
$oWawi->result=array();
|
||||
$oWawi->debug=$debug;
|
||||
if (!$oWawi->firma("$firma_id%",null))
|
||||
exit($oWawi->errormsg."\n");
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
echo html_entity_decode($oWawi->result[$i]->firma_id).'|'.', '.html_entity_decode($oWawi->result[$i]->firmenname).', '.html_entity_decode($oWawi->result[$i]->strasse).' '.html_entity_decode($oWawi->result[$i]->plz).' '.html_entity_decode($oWawi->result[$i]->ort)."\n";
|
||||
break;
|
||||
|
||||
// Firmen Search
|
||||
case 'wawi_firma_search':
|
||||
$firma_search=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($firma_search) ||$firma_search=='')
|
||||
exit();
|
||||
$sFirma = new firma();
|
||||
if (!$sFirma->getAll($firma_search))
|
||||
exit($sFirma->errormsg."\n");
|
||||
for ($i=0;$i<count($sFirma->result);$i++)
|
||||
echo html_entity_decode($sFirma->result[$i]->name).'|'.html_entity_decode($sFirma->result[$i]->firma_id)."\n";
|
||||
break;
|
||||
|
||||
// Mitarbeiter Search
|
||||
case 'wawi_mitarbeiter_search':
|
||||
$mitarbeiter_search=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($mitarbeiter_search) ||$mitarbeiter_search=='')
|
||||
exit();
|
||||
|
||||
$sMitarbeiter = new mitarbeiter();
|
||||
$mitarbeiter_all = array();
|
||||
$mitarbeiter_all = $sMitarbeiter->getMitarbeiter(null,null,null,$mitarbeiter_search);
|
||||
|
||||
for ($i=0;$i<count($mitarbeiter_all);$i++)
|
||||
echo html_entity_decode($mitarbeiter_all[$i]->vorname).' '.html_entity_decode($mitarbeiter_all[$i]->nachname).'|'.html_entity_decode($mitarbeiter_all[$i]->uid)."\n";
|
||||
break;
|
||||
|
||||
|
||||
// Kostenstelle ID
|
||||
case 'wawi_kostenstelle_id':
|
||||
$kostenstelle_id=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($kostenstelle_id) || $kostenstelle_id=='')
|
||||
exit();
|
||||
if (!$oWawi->kostenstelle("$kostenstelle_id%",null))
|
||||
exit($oWawi->errormsg."\n");
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
{
|
||||
echo html_entity_decode($oWawi->result[$i]->kostenstelle_id).'|'.', Nr :'.html_entity_decode($oWawi->result[$i]->kostenstelle_nr).', '.html_entity_decode($oWawi->result[$i]->bezeichnung).', Stg.:'.html_entity_decode($oWawi->result[$i]->stg_kurzzeichen).' '.html_entity_decode($oWawi->result[$i]->stg_bez).' '
|
||||
.' '.($oWawi->result[$i]->stg_aktiv==true || $oWawi->result[$i]->stg_aktiv=='t'?' <img src="../../skin/images/tick.png" alt="aktiv" />':' <img src="../../skin/images/cross.png" alt="nicht aktiv" />')
|
||||
."\n";
|
||||
}
|
||||
break;
|
||||
|
||||
// Kostenstelle Nr
|
||||
case 'wawi_kostenstelle_nr':
|
||||
$kostenstelle_nr=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($kostenstelle_nr) || $kostenstelle_nr=='')
|
||||
exit();
|
||||
if (!$oWawi->kostenstelle(null,null,null,null,"$kostenstelle_nr%"))
|
||||
exit($oWawi->errormsg."\n");
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
{
|
||||
echo html_entity_decode($oWawi->result[$i]->kostenstelle_nr).'|'.', ID :'.html_entity_decode($oWawi->result[$i]->kostenstelle_id).', '.html_entity_decode($oWawi->result[$i]->bezeichnung).', Stg.:'.html_entity_decode($oWawi->result[$i]->stg_kurzzeichen).' '.html_entity_decode($oWawi->result[$i]->stg_bez).' '
|
||||
.' '.($oWawi->result[$i]->stg_aktiv==true || $oWawi->result[$i]->stg_aktiv=='t'?' <img src="../../skin/images/tick.png" alt="aktiv" />':' <img src="../../skin/images/cross.png" alt="nicht aktiv" />')
|
||||
."\n";
|
||||
}
|
||||
break;
|
||||
|
||||
// Kostenstelle Serch
|
||||
case 'wawi_kostenstelle_search':
|
||||
$kostenstelle_search=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($kostenstelle_search) || $kostenstelle_search=='')
|
||||
exit();
|
||||
if (!$oWawi->kostenstelle(null,$kostenstelle_search))
|
||||
exit($oWawi->errormsg."\n");
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
{
|
||||
echo html_entity_decode($oWawi->result[$i]->kostenstelle_nr).'|' .', '. html_entity_decode($oWawi->result[$i]->bezeichnung).' , ID :'.html_entity_decode($oWawi->result[$i]->kostenstelle_id).', Nr.:'.html_entity_decode($oWawi->result[$i]->kostenstelle_nr).', Stg.:'.html_entity_decode($oWawi->result[$i]->stg_kurzzeichen).' '.html_entity_decode($oWawi->result[$i]->stg_bez).' '
|
||||
.' '.($oWawi->result[$i]->stg_aktiv==true || $oWawi->result[$i]->stg_aktiv=='t'?' <img src="../../skin/images/tick.png" alt="aktiv" />':' <img src="../../skin/images/cross.png" alt="nicht aktiv" />')
|
||||
."\n";
|
||||
}
|
||||
break;
|
||||
|
||||
// Konto ID
|
||||
case 'wawi_konto_id':
|
||||
$konto_id=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($konto_id) || $konto_id=='')
|
||||
exit();
|
||||
if (!$oWawi->konto("$konto_id"))
|
||||
exit($oWawi->errormsg."\n");
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
{
|
||||
echo html_entity_decode($oWawi->result[$i]->konto).'|'.', '.html_entity_decode($oWawi->result[$i]->beschreibung)
|
||||
."\n";
|
||||
}
|
||||
break;
|
||||
|
||||
// Konto ID
|
||||
case 'wawi_konto_search':
|
||||
$konto_search=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($konto_search) || $konto_search=='')
|
||||
exit();
|
||||
if (!$oWawi->konto(null,null,"$konto_search"))
|
||||
exit($oWawi->errormsg."\n");
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
{
|
||||
echo html_entity_decode($oWawi->result[$i]->konto).'|'.', '.html_entity_decode($oWawi->result[$i]->beschreibung)
|
||||
."\n";
|
||||
}
|
||||
break;
|
||||
|
||||
// Studiengang ID
|
||||
case 'wawi_studiengang_id':
|
||||
$studiengang_id=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($studiengang_id) || $studiengang_id=='')
|
||||
exit();
|
||||
if ($kostenstelle_id && !$oWawi->studiengang_kostenstelle("$studiengang_id%",null,null,$kostenstelle_id))
|
||||
exit($oWawi->errormsg."\n");
|
||||
elseif (!$kostenstelle_id && !$oWawi->studiengang("$studiengang_id%",null,null))
|
||||
exit($oWawi->errormsg."\n");
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
{
|
||||
echo html_entity_decode($oWawi->result[$i]->studiengang_id).'|'.', '.html_entity_decode($oWawi->result[$i]->kurzzeichen) .' '.html_entity_decode($oWawi->result[$i]->bezeichnung)
|
||||
.' '.($oWawi->result[$i]->aktiv==true || $oWawi->result[$i]->aktiv=='t'?' <img src="../../skin/images/tick.png" alt="aktiv" />':' <img src="../../skin/images/cross.png" alt="nicht aktiv" />')
|
||||
."\n";
|
||||
}
|
||||
break;
|
||||
|
||||
// Studiengang Suche
|
||||
case 'wawi_studiengang_search':
|
||||
$studiengang_search=trim((isset($_REQUEST['q']) ? $_REQUEST['q']:''));
|
||||
if (is_null($studiengang_search) || $studiengang_search=='')
|
||||
exit();
|
||||
if ($kostenstelle_id && !$oWawi->studiengang_kostenstelle(null,null,"$studiengang_id%",$kostenstelle_id))
|
||||
exit($oWawi->errormsg."\n");
|
||||
else if (!$oWawi->studiengang(null,null,$studiengang_search))
|
||||
exit($oWawi->errormsg."\n");
|
||||
for ($i=0;$i<count($oWawi->result);$i++)
|
||||
{
|
||||
echo html_entity_decode($oWawi->result[$i]->studiengang_id).'|'.', '.html_entity_decode($oWawi->result[$i]->kurzzeichen) .' '.html_entity_decode($oWawi->result[$i]->bezeichnung)
|
||||
.' '.($oWawi->result[$i]->aktiv==true || $oWawi->result[$i]->aktiv=='t'?' <img src="../../skin/images/tick.png" alt="aktiv" />':' <img src="../../skin/images/cross.png" alt="nicht aktiv" />')
|
||||
."\n";
|
||||
}
|
||||
break;
|
||||
default:
|
||||
echo " Funktion $work fehlt! ";
|
||||
break;
|
||||
}
|
||||
exit();
|
||||
?>
|
||||
Reference in New Issue
Block a user