mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
161 lines
4.3 KiB
PHP
161 lines
4.3 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 ObjGenRohstoffe
|
||
|
{
|
||
|
|
||
|
private $id;
|
||
|
private $menge;
|
||
|
private $artikel;
|
||
|
private $referenz;
|
||
|
private $rohstoffvonartikel;
|
||
|
private $sort;
|
||
|
private $lagerwert;
|
||
|
private $art;
|
||
|
|
||
|
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 rohstoffe WHERE (id = '$id')");
|
||
|
else
|
||
|
return -1;
|
||
|
|
||
|
$result = $result[0];
|
||
|
|
||
|
$this->id=$result['id'];
|
||
|
$this->menge=$result['menge'];
|
||
|
$this->artikel=$result['artikel'];
|
||
|
$this->referenz=$result['referenz'];
|
||
|
$this->rohstoffvonartikel=$result['rohstoffvonartikel'];
|
||
|
$this->sort=$result['sort'];
|
||
|
$this->lagerwert=$result['lagerwert'];
|
||
|
$this->art=$result['art'];
|
||
|
}
|
||
|
|
||
|
public function Create()
|
||
|
{
|
||
|
$sql = "INSERT INTO rohstoffe (id,menge,artikel,referenz,rohstoffvonartikel,sort,lagerwert,art)
|
||
|
VALUES('','{$this->menge}','{$this->artikel}','{$this->referenz}','{$this->rohstoffvonartikel}','{$this->sort}','{$this->lagerwert}','{$this->art}')";
|
||
|
|
||
|
$this->app->DB->Insert($sql);
|
||
|
$this->id = $this->app->DB->GetInsertID();
|
||
|
}
|
||
|
|
||
|
public function Update()
|
||
|
{
|
||
|
if(!is_numeric($this->id))
|
||
|
return -1;
|
||
|
|
||
|
$sql = "UPDATE rohstoffe SET
|
||
|
menge='{$this->menge}',
|
||
|
artikel='{$this->artikel}',
|
||
|
referenz='{$this->referenz}',
|
||
|
rohstoffvonartikel='{$this->rohstoffvonartikel}',
|
||
|
sort='{$this->sort}',
|
||
|
lagerwert='{$this->lagerwert}',
|
||
|
art='{$this->art}'
|
||
|
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 rohstoffe WHERE (id='{$this->id}')";
|
||
|
$this->app->DB->Delete($sql);
|
||
|
|
||
|
$this->id="";
|
||
|
$this->menge="";
|
||
|
$this->artikel="";
|
||
|
$this->referenz="";
|
||
|
$this->rohstoffvonartikel="";
|
||
|
$this->sort="";
|
||
|
$this->lagerwert="";
|
||
|
$this->art="";
|
||
|
}
|
||
|
|
||
|
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 SetMenge($value) { $this->menge=$value; }
|
||
|
function GetMenge() { return $this->menge; }
|
||
|
function SetArtikel($value) { $this->artikel=$value; }
|
||
|
function GetArtikel() { return $this->artikel; }
|
||
|
function SetReferenz($value) { $this->referenz=$value; }
|
||
|
function GetReferenz() { return $this->referenz; }
|
||
|
function SetRohstoffvonartikel($value) { $this->rohstoffvonartikel=$value; }
|
||
|
function GetRohstoffvonartikel() { return $this->rohstoffvonartikel; }
|
||
|
function SetSort($value) { $this->sort=$value; }
|
||
|
function GetSort() { return $this->sort; }
|
||
|
function SetLagerwert($value) { $this->lagerwert=$value; }
|
||
|
function GetLagerwert() { return $this->lagerwert; }
|
||
|
function SetArt($value) { $this->art=$value; }
|
||
|
function GetArt() { return $this->art; }
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|