mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
130 lines
3.8 KiB
PHP
130 lines
3.8 KiB
PHP
<?php
|
|
/* Copyright (C) 2006 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
|
|
* Rudolf Hangl <rudolf.hangl@technikum-wien.at>.
|
|
*/
|
|
|
|
/**
|
|
* Klasse betriebsmitteltyp (FAS-Online)
|
|
* @create 13-01-2007
|
|
*/
|
|
|
|
class betriebsmitteltyp
|
|
{
|
|
var $conn; // resource DB-Handle
|
|
var $errormsg; // string
|
|
var $new; // boolean
|
|
//var $schluesseltyp = array(); // schluesseltyp Objekt
|
|
|
|
//Tabellenspalten
|
|
var $betriebsmitteltyp; //string
|
|
var $beschreibung; //string
|
|
var $anzahl; //smallint
|
|
var $kaution; //numeric(5,2)
|
|
|
|
/**
|
|
* Konstruktor
|
|
* @param $conn Connection
|
|
* $code Zu ladende Betriebsmitteltyp
|
|
*/
|
|
function betriebsmitteltyp($conn, $code=null, $unicode=false)
|
|
{
|
|
$this->conn = $conn;
|
|
|
|
if($unicode)
|
|
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
|
|
else
|
|
$qry = "SET CLIENT_ENCODING TO 'LATIN9';";
|
|
|
|
if(!pg_query($conn,$qry))
|
|
{
|
|
$this->errormsg = 'Encoding konnte nicht gesetzt werden';
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Laedt die Funktion mit der ID $betriebsmitteltyp
|
|
* @param $code code des zu ladenden betriebsmitteltyps
|
|
* @return true wenn ok, false im Fehlerfall
|
|
*/
|
|
function load($code)
|
|
{
|
|
$this->errormsg = 'Noch nicht implementiert';
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Laedt alle betriebsmitteltypen
|
|
*/
|
|
function getAll()
|
|
{
|
|
$this->errormsg = 'Noch nicht implementiert';
|
|
return false;
|
|
}
|
|
function addslashes($var)
|
|
{
|
|
return ($var!=''?"'".addslashes($var)."'":'null');
|
|
}
|
|
// ************************************************************
|
|
// * Speichert die Daten in die Datenbank
|
|
// * @return true wenn erfolgreich, false im Fehlerfall
|
|
// ************************************************************
|
|
function save()
|
|
{
|
|
|
|
$qry1='SELECT * FROM public.tbl_betriebsmitteltyp WHERE beschreibung='.$this->addslashes($this->beschreibung).';';
|
|
if($result1=pg_query($this->conn,$qry1))
|
|
{
|
|
if(pg_num_rows($result1)>0) //eintrag gefunden
|
|
{
|
|
if($row1 = pg_fetch_object($result1))
|
|
{
|
|
$qry='UPDATE public.tbl_betriebsmitteltyp SET '.
|
|
'anzahl =anzahl+'.$this->anzahl.' '.
|
|
'WHERE beschreibung='.$this->addslashes($this->beschreibung).';';
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$qry='INSERT INTO public.tbl_betriebsmitteltyp (betriebsmitteltyp, beschreibung, anzahl, kaution) VALUES('.
|
|
$this->addslashes($this->betriebsmitteltyp).', '.
|
|
$this->addslashes($this->beschreibung).', '.
|
|
$this->addslashes($this->anzahl).', '.
|
|
$this->addslashes($this->kaution).');';
|
|
}
|
|
if(pg_query($this->conn,$qry))
|
|
{
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
$this->errormsg = 'Fehler beim Speichern des Betriebsmitteltypen-Datensatzes: '.$this->betriebsmitteltyp.' '.$qry;
|
|
return false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$this->errormsg = 'Fehler beim Zugriff auf den Betriebsmitteltypen-Datensatz: '.$this->betriebsmitteltyp.' '.$qry;
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
?>
|