mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
173 lines
5.0 KiB
PHP
173 lines
5.0 KiB
PHP
<?php
|
|
/*
|
|
**** COPYRIGHT & LICENSE NOTICE *** DO NOT REMOVE ****
|
|
*
|
|
* Xentral (c) Xentral ERP Sorftware GmbH, Fuggerstrasse 11, D-86150 Augsburg, * Germany 2019
|
|
*
|
|
* This file is licensed under the Embedded Projects General Public License *Version 3.1.
|
|
*
|
|
* You should have received a copy of this license from your vendor and/or *along with this file; If not, please visit www.wawision.de/Lizenzhinweis
|
|
* to obtain the text of the corresponding license version.
|
|
*
|
|
**** END OF COPYRIGHT & LICENSE NOTICE *** DO NOT REMOVE ****
|
|
*/
|
|
?>
|
|
<?php
|
|
|
|
class ObjGenKontoauszuege_Zahlungsausgang
|
|
{
|
|
|
|
private $id;
|
|
private $adresse;
|
|
private $bearbeiter;
|
|
private $betrag;
|
|
private $datum;
|
|
private $objekt;
|
|
private $parameter;
|
|
private $kontoauszuege;
|
|
private $firma;
|
|
private $abgeschlossen;
|
|
|
|
public $app; //application object
|
|
|
|
public function __construct($app)
|
|
{
|
|
$this->app = $app;
|
|
}
|
|
|
|
public function Select($id)
|
|
{
|
|
if(is_numeric($id))
|
|
$result = $this->app->DB->SelectArr("SELECT * FROM kontoauszuege_zahlungsausgang WHERE (id = '$id')");
|
|
else
|
|
return -1;
|
|
|
|
$result = $result[0];
|
|
|
|
$this->id=$result[id];
|
|
$this->adresse=$result[adresse];
|
|
$this->bearbeiter=$result[bearbeiter];
|
|
$this->betrag=$result[betrag];
|
|
$this->datum=$result[datum];
|
|
$this->objekt=$result[objekt];
|
|
$this->parameter=$result[parameter];
|
|
$this->kontoauszuege=$result[kontoauszuege];
|
|
$this->firma=$result[firma];
|
|
$this->abgeschlossen=$result[abgeschlossen];
|
|
}
|
|
|
|
public function Create()
|
|
{
|
|
$sql = "INSERT INTO kontoauszuege_zahlungsausgang (id,adresse,bearbeiter,betrag,datum,objekt,parameter,kontoauszuege,firma,abgeschlossen)
|
|
VALUES('','{$this->adresse}','{$this->bearbeiter}','{$this->betrag}','{$this->datum}','{$this->objekt}','{$this->parameter}','{$this->kontoauszuege}','{$this->firma}','{$this->abgeschlossen}')";
|
|
|
|
$this->app->DB->Insert($sql);
|
|
$this->id = $this->app->DB->GetInsertID();
|
|
}
|
|
|
|
public function Update()
|
|
{
|
|
if(!is_numeric($this->id))
|
|
return -1;
|
|
|
|
$sql = "UPDATE kontoauszuege_zahlungsausgang SET
|
|
adresse='{$this->adresse}',
|
|
bearbeiter='{$this->bearbeiter}',
|
|
betrag='{$this->betrag}',
|
|
datum='{$this->datum}',
|
|
objekt='{$this->objekt}',
|
|
parameter='{$this->parameter}',
|
|
kontoauszuege='{$this->kontoauszuege}',
|
|
firma='{$this->firma}',
|
|
abgeschlossen='{$this->abgeschlossen}'
|
|
WHERE (id='{$this->id}')";
|
|
|
|
$this->app->DB->Update($sql);
|
|
}
|
|
|
|
public function Delete($id="")
|
|
{
|
|
if(is_numeric($id))
|
|
{
|
|
$this->id=$id;
|
|
}
|
|
else
|
|
return -1;
|
|
|
|
$sql = "DELETE FROM kontoauszuege_zahlungsausgang WHERE (id='{$this->id}')";
|
|
$this->app->DB->Delete($sql);
|
|
|
|
$this->id="";
|
|
$this->adresse="";
|
|
$this->bearbeiter="";
|
|
$this->betrag="";
|
|
$this->datum="";
|
|
$this->objekt="";
|
|
$this->parameter="";
|
|
$this->kontoauszuege="";
|
|
$this->firma="";
|
|
$this->abgeschlossen="";
|
|
}
|
|
|
|
public function Copy()
|
|
{
|
|
$this->id = "";
|
|
$this->Create();
|
|
}
|
|
|
|
/**
|
|
Mit dieser Funktion kann man einen Datensatz suchen
|
|
dafuer muss man die Attribute setzen nach denen gesucht werden soll
|
|
dann kriegt man als ergebnis den ersten Datensatz der auf die Suche uebereinstimmt
|
|
zurueck. Mit Next() kann man sich alle weiteren Ergebnisse abholen
|
|
**/
|
|
|
|
public function Find()
|
|
{
|
|
//TODO Suche mit den werten machen
|
|
}
|
|
|
|
public function FindNext()
|
|
{
|
|
//TODO Suche mit den alten werten fortsetzen machen
|
|
}
|
|
|
|
/** Funktionen um durch die Tabelle iterieren zu koennen */
|
|
|
|
public function Next()
|
|
{
|
|
//TODO: SQL Statement passt nach meiner Meinung nach noch nicht immer
|
|
}
|
|
|
|
public function First()
|
|
{
|
|
//TODO: SQL Statement passt nach meiner Meinung nach noch nicht immer
|
|
}
|
|
|
|
/** dank dieser funktionen kann man die tatsaechlichen werte einfach
|
|
ueberladen (in einem Objekt das mit seiner klasse ueber dieser steht)**/
|
|
|
|
function SetId($value) { $this->id=$value; }
|
|
function GetId() { return $this->id; }
|
|
function SetAdresse($value) { $this->adresse=$value; }
|
|
function GetAdresse() { return $this->adresse; }
|
|
function SetBearbeiter($value) { $this->bearbeiter=$value; }
|
|
function GetBearbeiter() { return $this->bearbeiter; }
|
|
function SetBetrag($value) { $this->betrag=$value; }
|
|
function GetBetrag() { return $this->betrag; }
|
|
function SetDatum($value) { $this->datum=$value; }
|
|
function GetDatum() { return $this->datum; }
|
|
function SetObjekt($value) { $this->objekt=$value; }
|
|
function GetObjekt() { return $this->objekt; }
|
|
function SetParameter($value) { $this->parameter=$value; }
|
|
function GetParameter() { return $this->parameter; }
|
|
function SetKontoauszuege($value) { $this->kontoauszuege=$value; }
|
|
function GetKontoauszuege() { return $this->kontoauszuege; }
|
|
function SetFirma($value) { $this->firma=$value; }
|
|
function GetFirma() { return $this->firma; }
|
|
function SetAbgeschlossen($value) { $this->abgeschlossen=$value; }
|
|
function GetAbgeschlossen() { return $this->abgeschlossen; }
|
|
|
|
}
|
|
|
|
?>
|